commit e439b6c309dc308395a28adcb70b033ae5ccfaa4 Author: hybris Date: Fri Dec 28 03:27:34 2018 +0100 initial commit diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..f7e54ec Binary files /dev/null and b/.DS_Store differ diff --git a/auth.go b/auth.go new file mode 100644 index 0000000..bd78723 --- /dev/null +++ b/auth.go @@ -0,0 +1,61 @@ +package main + +import ( + "fmt" + "log" + "net/http" + "github.com/zmb3/spotify" +) + +var oauthToken string + +func StartAuthorizationCodeFlow() (authClient *spotify.Client) { + // first start an HTTP server + http.HandleFunc("/callback", completeAuth) + http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + // log.Println("Got request for:", r.URL.String()) + }) + go http.ListenAndServe(":8080", nil) + + url := auth.AuthURL(state) + fmt.Println("Please log in to Spotify by visiting the following page in your browser:\n", url) + + client := <-ch + + oauthToken = extractToken(client) + + // use the client to make calls that require authorization + user, spotify_auth_err := client.CurrentUser() + if spotify_auth_err != nil { + log.Fatal(spotify_auth_err) + } + fmt.Println("You are logged in as:", user.ID) + return client +} + +func completeAuth(w http.ResponseWriter, r *http.Request) { + tok, err := auth.Token(state, r) + if err != nil { + http.Error(w, "Couldn't get token", http.StatusForbidden) + log.Fatal(err) + } + if st := r.FormValue("state"); st != state { + http.NotFound(w, r) + log.Fatalf("State mismatch: %s != %s\n", st, state) + } + // use the token to get an authenticated client + client := auth.NewClient(tok) + status = 2 + + w.Header().Set("Content-Type", "text/html; charset=utf-8") + fmt.Fprint(w, "test ") + ch <- &client +} + +func extractToken(client *spotify.Client) (tokenString string) { + token, err := client.Token() + if err != nil { + log.Fatal(err) + } + return token.AccessToken +} diff --git a/freedom b/freedom new file mode 100755 index 0000000..2d09e53 Binary files /dev/null and b/freedom differ diff --git a/freedom.go b/freedom.go new file mode 100644 index 0000000..c1f089a --- /dev/null +++ b/freedom.go @@ -0,0 +1,68 @@ +package main + +import ( + "fmt" +) + +func DownloadTrack() { + fmt.Print("Please provide a spotify track id: ") + // track_id + var track_id string + _, _ = fmt.Scanln(&track_id) + + // folder + var folder = root_track_folder + var userFolder string + + if check_if_track_is_valid(track_id) { + fmt.Print("Please provide a folder name: "+root_track_folder) + _, _ = fmt.Scanln(&userFolder) + } else { + fmt.Println("Not a valid spotify track id.\nPlease provide a correct one.\n") + waitForInput() + main() + } + + lens := len(userFolder) + var newVal string + if lens > 0 { + newVal = userFolder[lens-1:] + } else { + newVal = folder[len(folder)-1:] + } + if string(newVal) != "/" { + userFolder = userFolder + "/" + } + + folder = folder + userFolder + fmt.Println(folder) + + download_track_to_folder(track_id,folder) + + waitForInput() +} + +func DownloadPlaylist() { + fmt.Print("Please provide a spotify playlist id: ") + // playlist_id + var playlist_id string + _, _ = fmt.Scanln(&playlist_id) + + fmt.Print("Please provide the user id of the playlists owner: ") + // owner_id + var owner_id string + _, _ = fmt.Scanln(&owner_id) + + download_playlist_to_folder(playlist_id,owner_id,root_playlists_folder) + waitForInput() +} + +func DownloadAllPlaylistsOfUser() { + // fmt.Print("Please provide a spotify user id: ") + // user_id + var user_id = "" + // _, _ = fmt.Scanln(&user_id) + + download_all_playlist_of_user(user_id,root_user_folder+user_id+"/") + waitForInput() +} diff --git a/help.go b/help.go new file mode 100644 index 0000000..9907c25 --- /dev/null +++ b/help.go @@ -0,0 +1,20 @@ +package main + +import( + "fmt" +) + +func HowToSetEnvVariables() { + fmt.Println("=> How To: Set Client ID") + fmt.Println("Set the SPOTIFY_ID environment variable") + fmt.Println("Examples:") // YOUTUBE_TOKEN + fmt.Println(" $ export SPOTIFY_ID=\"aebff49ecd9e446ba573989feda8cb05\" && \\") + fmt.Println(" export SPOTIFY_SECRET=\"a43f00a0d8734109aef7c881062eb97b\" && \\") + fmt.Println(" export YOUTUBE_TOKEN=\"AIzaSyBbaWwezUJgCdYAxYyqViGcVsRRpWgTKLw\"") + fmt.Println("") + fmt.Println(" $ setenv SPOTIFY_ID \"aebff49ecd9e446ba573989feda8cb05\" && setenv SPOTIFY_SECRET=\"a43f00a0d8734109aef7c881062eb97b\" && \\") + fmt.Println(" setenv SPOTIFY_SECRET \"a43f00a0d8734109aef7c881062eb97b\" && \\") + fmt.Println(" setenv YOUTUBE_TOKEN \"AIzaSyBbaWwezUJgCdYAxYyqViGcVsRRpWgTKLw\"") + + waitForInput() +} diff --git a/main.go b/main.go new file mode 100644 index 0000000..f58dfeb --- /dev/null +++ b/main.go @@ -0,0 +1,89 @@ +// This example demonstrates how to authenticate with Spotify using the authorization code flow. +// In order to run this example yourself, you'll need to: +// +// 1. Register an application at: https://developer.spotify.com/my-applications/ +// - Use "http://localhost:8080/callback" as the redirect URI +// 2. Set the SPOTIFY_ID environment variable to the client ID you got in step 1. +// 3. Set the SPOTIFY_SECRET environment variable to the client secret from step 1. +package main + +import ( + "fmt" + "log" + + "github.com/dixonwille/wmenu" + + "gopkg.in/dixonwille/wlog.v2" + "github.com/zmb3/spotify" + "github.com/ahmetalpbalkan/go-cursor" +) + +// and enter this value. +const redirectURI = "http://localhost:8080/callback" +const root_track_folder = "music/tracks/" +const root_playlists_folder = "music/playlists/" +const root_user_folder = "music/users/" + +var ( + auth = get_spotify_auth(); + ch = make(chan *spotify.Client) + state = "abc123" + status = 1 + client *spotify.Client +) + +func main() { + + menu := wmenu.NewMenu("Choose your Option (0-9). to get back to menu.") + menu.Action( + func (opts []wmenu.Opt) error { + switch opts[0].Value { + case 1: + HowToSetEnvVariables() + case 2: + fmt.Println("~ starting 'Authorization Code Flow' Sequence ~") + client = StartAuthorizationCodeFlow() + case 3: + fmt.Println("~ starting 'Dowload a Track' Sequence ~") + DownloadTrack() + case 4: + fmt.Println("~ starting 'Download a Playlist' Sequence ~") + DownloadPlaylist() + case 5: + fmt.Println("~ starting 'Download all of my Playlists' Sequence ~") + DownloadAllPlaylistsOfUser() + case 6: + fmt.Println("~ starting 'Go to webapp' Sequence~") + startWebServer() + } + main() + return nil + }) + + fmt.Print(cursor.ClearEntireScreen()) + fmt.Print(cursor.MoveTo(0,0)) + if status > 1 { + fmt.Println("~ status => authenticated ~") + menu.Option(" Download a Track", 3, true, nil) + menu.Option(" Download a Playlist", 4, true, nil) + menu.Option(" Download all of my Playlists", 5, true, nil) + menu.Option(" Go to webapp", 6, true, nil) + } else { + fmt.Println("~ status => not authenticated ~") + menu.Option(" Set Client ID", 1, true, nil) + menu.Option(" Start Authorization Code Flow", 2, false, nil) + } + + optionColor := wlog.None + questionColor := wlog.Color{} + responseColor := wlog.Color{} + errorColor := wlog.Color{} + menu.AddColor(optionColor, questionColor, responseColor, errorColor) + // menu.AddColor("green", "blue", "yellow", "yellow") + + mainMenu := menu.Run() + if mainMenu != nil{ + log.Fatal(mainMenu) + } + +} diff --git a/manual-download.log b/manual-download.log new file mode 100644 index 0000000..98b20a5 --- /dev/null +++ b/manual-download.log @@ -0,0 +1,53 @@ +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Sie nannten ihn Putte - Erdmöbel +L'Exèrcit Que Vindrà - Els Pets +Þar Sem Enginn Fer - Sjálfviljugur - Árstíðir +Morgunn - Svavar Knútur +L'échappée - Barbagallo +La millor flor del balcó - La iaia +Posa'm més gin, David! - Mishima +Univers parallèles - Damien Robitaille +Croisières méditerranéennes - Bernard Lavilliers +Oppure no - Greta Panettieri +L'emmerdeuse - Eskelina +Bättre än så här - Pernilla Andersson +Dråba i sjøen - Tønes +Sommartjej - Josef Park +Arrastarte-Ei - Céu +Nonedaless - Wermonster +Borsch Antistar - Wermonster +Von den Identitäten - Manfred Groove +Gorilla Scapes - Lützenkirchen +Pillenkäfer - Boris Brejcha +Liitäjä - Antti Rasi +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Sie nannten ihn Putte - Erdmöbel +L'Exèrcit Que Vindrà - Els Pets +Þar Sem Enginn Fer - Sjálfviljugur - Árstíðir +Ótta - Sólstafir +Sie nannten ihn Putte - Erdmöbel +Ótta - Sólstafir +Sie nannten ihn Putte - Erdmöbel +L'Exèrcit Que Vindrà - Els Pets +Þar Sem Enginn Fer - Sjálfviljugur - Árstíðir +Morgunn - Svavar Knútur +Ótta - Sólstafir +Sie nannten ihn Putte - Erdmöbel +L'Exèrcit Que Vindrà - Els Pets +Þar Sem Enginn Fer - Sjálfviljugur - Árstíðir +Morgunn - Svavar Knútur +Ótta - Sólstafir +Ótta - Sólstafir +Ótta - Sólstafir +Sie nannten ihn Putte - Erdmöbel +L'Exèrcit Que Vindrà - Els Pets +Þar Sem Enginn Fer - Sjálfviljugur - Árstíðir +Morgunn - Svavar Knútur diff --git a/pages/head.html b/pages/head.html new file mode 100644 index 0000000..e4dd714 --- /dev/null +++ b/pages/head.html @@ -0,0 +1,6 @@ +{{define "head"}} + + freedom - for your music + + +{{end}} diff --git a/pages/playlists.html b/pages/playlists.html new file mode 100644 index 0000000..9cf5be9 --- /dev/null +++ b/pages/playlists.html @@ -0,0 +1,27 @@ +{{define "playlists"}} + +{{template "head"}} + + +
+ + + + + + + + +{{range .Items}} + + + + + + +{{end}} +
IDNameOwner
{{.ID}}{{.Name}}{{.Owner}}
+
+ + +{{end}} diff --git a/playlist.json b/playlist.json new file mode 100644 index 0000000..d4d51bc --- /dev/null +++ b/playlist.json @@ -0,0 +1,7957 @@ +{ + "collaborative" : true, + "description" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/6bLUG95qFf8RRlCRI51Gi3" + }, + "followers" : { + "href" : null, + "total" : 1 + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6bLUG95qFf8RRlCRI51Gi3", + "id" : "6bLUG95qFf8RRlCRI51Gi3", + "images" : [ { + "height" : 640, + "url" : "https://mosaic.scdn.co/640/3a8c6d05473e57567a5ae4ee063cffb809717c3f6c41f2ed62f8e2c527b4173fbff358e4816adef92036b5218bc841b65b841d7e4e279eb8f61979494397c2383bcffbd431e64b56657a7a5487188613", + "width" : 640 + }, { + "height" : 300, + "url" : "https://mosaic.scdn.co/300/3a8c6d05473e57567a5ae4ee063cffb809717c3f6c41f2ed62f8e2c527b4173fbff358e4816adef92036b5218bc841b65b841d7e4e279eb8f61979494397c2383bcffbd431e64b56657a7a5487188613", + "width" : 300 + }, { + "height" : 60, + "url" : "https://mosaic.scdn.co/60/3a8c6d05473e57567a5ae4ee063cffb809717c3f6c41f2ed62f8e2c527b4173fbff358e4816adef92036b5218bc841b65b841d7e4e279eb8f61979494397c2383bcffbd431e64b56657a7a5487188613", + "width" : 60 + } ], + "name" : "music dump", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "WvzbvTNn7gqp1gyWIHZyeuJPqhtgREiDmSXcexqNOUL6WCcemOrYLGjn0aui7FYH", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6bLUG95qFf8RRlCRI51Gi3/tracks?offset=0&limit=100", + "items" : [ { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6JEtYDShXGTkOEUYr4BMID" + }, + "href" : "https://api.spotify.com/v1/artists/6JEtYDShXGTkOEUYr4BMID", + "id" : "6JEtYDShXGTkOEUYr4BMID", + "name" : "Wermonster", + "type" : "artist", + "uri" : "spotify:artist:6JEtYDShXGTkOEUYr4BMID" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6fkewfC1mQq4aRS1IxVsup" + }, + "href" : "https://api.spotify.com/v1/albums/6fkewfC1mQq4aRS1IxVsup", + "id" : "6fkewfC1mQq4aRS1IxVsup", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7f5aee557d839288d7e761abdf7ec6afaa731822", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c3e370eb36bf9a8b966e1f50863f964937388608", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/f634a1932d40eb4c264f4ab145b76545f960eaf3", + "width" : 64 + } ], + "name" : "Katalyst Sessions Vol. 1", + "type" : "album", + "uri" : "spotify:album:6fkewfC1mQq4aRS1IxVsup" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6JEtYDShXGTkOEUYr4BMID" + }, + "href" : "https://api.spotify.com/v1/artists/6JEtYDShXGTkOEUYr4BMID", + "id" : "6JEtYDShXGTkOEUYr4BMID", + "name" : "Wermonster", + "type" : "artist", + "uri" : "spotify:artist:6JEtYDShXGTkOEUYr4BMID" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 51240, + "explicit" : false, + "external_ids" : { + "isrc" : "AUMDB1300059" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4rLS1l4m0ovAH8qOQ9oh1e" + }, + "href" : "https://api.spotify.com/v1/tracks/4rLS1l4m0ovAH8qOQ9oh1e", + "id" : "4rLS1l4m0ovAH8qOQ9oh1e", + "name" : "Higher, Go, Go, Go!", + "popularity" : 0, + "preview_url" : null, + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:4rLS1l4m0ovAH8qOQ9oh1e" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/25c6ClkRdfKIufvnfT6bfh" + }, + "href" : "https://api.spotify.com/v1/albums/25c6ClkRdfKIufvnfT6bfh", + "id" : "25c6ClkRdfKIufvnfT6bfh", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/6c41f2ed62f8e2c527b4173fbff358e4816adef9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/4402177c3cde986aaa0ddb0199a771fc6672eefc", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6e019b9abb75de98dfc52b40f57e72f84e7661fe", + "width" : 64 + } ], + "name" : "Hard Islands", + "type" : "album", + "uri" : "spotify:album:25c6ClkRdfKIufvnfT6bfh" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 380280, + "explicit" : false, + "external_ids" : { + "isrc" : "GBUZD0802501" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6c5k4FhXJEmCyJGQOnKQdn" + }, + "href" : "https://api.spotify.com/v1/tracks/6c5k4FhXJEmCyJGQOnKQdn", + "id" : "6c5k4FhXJEmCyJGQOnKQdn", + "name" : "The Turtle", + "popularity" : 23, + "preview_url" : "https://p.scdn.co/mp3-preview/f94fdf28600a8b6e8f061ab1024fae768ccab9f3?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:6c5k4FhXJEmCyJGQOnKQdn" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3qAt0pasO26XGFf8lSdZ9j" + }, + "href" : "https://api.spotify.com/v1/albums/3qAt0pasO26XGFf8lSdZ9j", + "id" : "3qAt0pasO26XGFf8lSdZ9j", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5f9fb1ac46cfad7cb5bc3ec998692618d3e143cf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/0619df366812c516536b06c842bfc229e9e8a4c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d11e875a44498f696857c2ffa2a4f45ab2a00bef", + "width" : 64 + } ], + "name" : "Sparks EP", + "type" : "album", + "uri" : "spotify:album:3qAt0pasO26XGFf8lSdZ9j" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 181149, + "explicit" : false, + "external_ids" : { + "isrc" : "QMHHY1300002" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5K4ExI2qvE1Ule3u7LxUDT" + }, + "href" : "https://api.spotify.com/v1/tracks/5K4ExI2qvE1Ule3u7LxUDT", + "id" : "5K4ExI2qvE1Ule3u7LxUDT", + "name" : "Marijuana", + "popularity" : 51, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:5K4ExI2qvE1Ule3u7LxUDT" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/55ualHsmcxXF3HL52WrAxg" + }, + "href" : "https://api.spotify.com/v1/albums/55ualHsmcxXF3HL52WrAxg", + "id" : "55ualHsmcxXF3HL52WrAxg", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/00395049f68f584b209aed59f72243aa4a8979fe", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c546b6cdd20794c27e15c53af62c637c4eee00c4", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/9cf1f66697b536cc69cabaaf926e664b4ce66a02", + "width" : 64 + } ], + "name" : "F*>k Dance Let's Art - Sounds from a new American Underground", + "type" : "album", + "uri" : "spotify:album:55ualHsmcxXF3HL52WrAxg" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/49jnSQa0nLfgkSREjJ03Az" + }, + "href" : "https://api.spotify.com/v1/artists/49jnSQa0nLfgkSREjJ03Az", + "id" : "49jnSQa0nLfgkSREjJ03Az", + "name" : "Balam Acab", + "type" : "artist", + "uri" : "spotify:artist:49jnSQa0nLfgkSREjJ03Az" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228923, + "explicit" : false, + "external_ids" : { + "isrc" : "DEG931000186" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4gsRS1JMb2KzVhZWeCdQXu" + }, + "href" : "https://api.spotify.com/v1/tracks/4gsRS1JMb2KzVhZWeCdQXu", + "id" : "4gsRS1JMb2KzVhZWeCdQXu", + "name" : "See Birds (Moon)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:4gsRS1JMb2KzVhZWeCdQXu" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/71atOmlAjqT0QIFbLcRa0a" + }, + "href" : "https://api.spotify.com/v1/albums/71atOmlAjqT0QIFbLcRa0a", + "id" : "71atOmlAjqT0QIFbLcRa0a", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/3409e094598e1465f7d6883c865013264ec53086", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3a963b4ef78148dc6d48976ceeaade0a5bd1e64a", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/32bb2d34c8cbe2fe6e5159bc97a10f420a93cb4c", + "width" : 64 + } ], + "name" : "The Last Resort", + "type" : "album", + "uri" : "spotify:album:71atOmlAjqT0QIFbLcRa0a" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 366239, + "explicit" : false, + "external_ids" : { + "isrc" : "DEL020620041" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1nkpG5W9Vt6jGB1eMW9Jl4" + }, + "href" : "https://api.spotify.com/v1/tracks/1nkpG5W9Vt6jGB1eMW9Jl4", + "id" : "1nkpG5W9Vt6jGB1eMW9Jl4", + "name" : "Evil Dub - Original Mix", + "popularity" : 2, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:1nkpG5W9Vt6jGB1eMW9Jl4" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2w9qrrsJaLRQuZPJeI9acc" + }, + "href" : "https://api.spotify.com/v1/albums/2w9qrrsJaLRQuZPJeI9acc", + "id" : "2w9qrrsJaLRQuZPJeI9acc", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/1ba255afaa6ef90f6ca554b7f673065bc41b1757", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3b4c8dcfb03217cf69216152a8f4f5716253ece1", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/39a9fec78befedda22a8298f109fb1dda08c9ed0", + "width" : 64 + } ], + "name" : "Dub Side Of The Moon", + "type" : "album", + "uri" : "spotify:album:2w9qrrsJaLRQuZPJeI9acc" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 232360, + "explicit" : false, + "external_ids" : { + "isrc" : "US4CL0310014" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5L7QptioCo73sGCTfAj7ln" + }, + "href" : "https://api.spotify.com/v1/tracks/5L7QptioCo73sGCTfAj7ln", + "id" : "5L7QptioCo73sGCTfAj7ln", + "name" : "Speak To Me / Breathe", + "popularity" : 41, + "preview_url" : "https://p.scdn.co/mp3-preview/cda3984ac4f93de9fbe9e7ebfa70f3b23a1aa67e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5L7QptioCo73sGCTfAj7ln" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2w9qrrsJaLRQuZPJeI9acc" + }, + "href" : "https://api.spotify.com/v1/albums/2w9qrrsJaLRQuZPJeI9acc", + "id" : "2w9qrrsJaLRQuZPJeI9acc", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/1ba255afaa6ef90f6ca554b7f673065bc41b1757", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3b4c8dcfb03217cf69216152a8f4f5716253ece1", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/39a9fec78befedda22a8298f109fb1dda08c9ed0", + "width" : 64 + } ], + "name" : "Dub Side Of The Moon", + "type" : "album", + "uri" : "spotify:album:2w9qrrsJaLRQuZPJeI9acc" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 418493, + "explicit" : false, + "external_ids" : { + "isrc" : "US4CL0310016" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1uLBDlBZROhCvLAX5LdKrI" + }, + "href" : "https://api.spotify.com/v1/tracks/1uLBDlBZROhCvLAX5LdKrI", + "id" : "1uLBDlBZROhCvLAX5LdKrI", + "name" : "Time", + "popularity" : 43, + "preview_url" : "https://p.scdn.co/mp3-preview/792384bd068f995a75816a41bf4682674bf8c7e0?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:1uLBDlBZROhCvLAX5LdKrI" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4SQdUpG4f7UbkJG3cJ2Iyj" + }, + "href" : "https://api.spotify.com/v1/artists/4SQdUpG4f7UbkJG3cJ2Iyj", + "id" : "4SQdUpG4f7UbkJG3cJ2Iyj", + "name" : "Arca", + "type" : "artist", + "uri" : "spotify:artist:4SQdUpG4f7UbkJG3cJ2Iyj" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5FLsmazQWaDK9JGqdzHlN4" + }, + "href" : "https://api.spotify.com/v1/albums/5FLsmazQWaDK9JGqdzHlN4", + "id" : "5FLsmazQWaDK9JGqdzHlN4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/23549e3bafcf5c2daa3e08e09e3feffae5ef23c5", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5a50de963bbc9c97d661e0b8afa40b08909865ba", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3160a3620e7083ee4278e5ed9a5222334f0f6c08", + "width" : 64 + } ], + "name" : "Xen", + "type" : "album", + "uri" : "spotify:album:5FLsmazQWaDK9JGqdzHlN4" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4SQdUpG4f7UbkJG3cJ2Iyj" + }, + "href" : "https://api.spotify.com/v1/artists/4SQdUpG4f7UbkJG3cJ2Iyj", + "id" : "4SQdUpG4f7UbkJG3cJ2Iyj", + "name" : "Arca", + "type" : "artist", + "uri" : "spotify:artist:4SQdUpG4f7UbkJG3cJ2Iyj" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 153704, + "explicit" : false, + "external_ids" : { + "isrc" : "GBR8R1301416" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1zAmcM2z58kvlMkca8E7RJ" + }, + "href" : "https://api.spotify.com/v1/tracks/1zAmcM2z58kvlMkca8E7RJ", + "id" : "1zAmcM2z58kvlMkca8E7RJ", + "name" : "Thievery", + "popularity" : 33, + "preview_url" : "https://p.scdn.co/mp3-preview/857ee8b425c7bd76aafc6ce029607fcd5df78882?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:1zAmcM2z58kvlMkca8E7RJ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3Q88Bnf3dgZC1wQtqF6smV" + }, + "href" : "https://api.spotify.com/v1/albums/3Q88Bnf3dgZC1wQtqF6smV", + "id" : "3Q88Bnf3dgZC1wQtqF6smV", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/f8eb0551dde8f6ffc9416a0ad272dd56f494eaf4", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/485f142d1d53826d46ba47391c115d583954d2d3", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/8378025848e5e7ba84f024394410b0dd4ffa671e", + "width" : 64 + } ], + "name" : "You Are Here", + "type" : "album", + "uri" : "spotify:album:3Q88Bnf3dgZC1wQtqF6smV" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 329173, + "explicit" : false, + "external_ids" : { + "isrc" : "GBLBR0500035" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7n5BsnvSFh1QZ4qbedUeDQ" + }, + "href" : "https://api.spotify.com/v1/tracks/7n5BsnvSFh1QZ4qbedUeDQ", + "id" : "7n5BsnvSFh1QZ4qbedUeDQ", + "name" : "You Are Here - Four Tet Remix", + "popularity" : 39, + "preview_url" : "https://p.scdn.co/mp3-preview/2faaa05a1bbb7f827db04977dfc98fa80b41bb8d?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:7n5BsnvSFh1QZ4qbedUeDQ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1mZU5Jcgrz1rUJMtBvREyf" + }, + "href" : "https://api.spotify.com/v1/albums/1mZU5Jcgrz1rUJMtBvREyf", + "id" : "1mZU5Jcgrz1rUJMtBvREyf", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/f64153a96e3b7cfd7a85378ffecc51df1c1f1efb", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/90d3bcfdf32b0246c8faf35a172348624f06fdce", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/746d7d35038463e13dc9ca9e4e0de63ed9a488d4", + "width" : 64 + } ], + "name" : "The Sky Was Pink", + "type" : "album", + "uri" : "spotify:album:1mZU5Jcgrz1rUJMtBvREyf" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 570586, + "explicit" : false, + "external_ids" : { + "isrc" : "GBUZD0800603" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/351LyEn9dxRxgkl28GwQtl" + }, + "href" : "https://api.spotify.com/v1/tracks/351LyEn9dxRxgkl28GwQtl", + "id" : "351LyEn9dxRxgkl28GwQtl", + "name" : "The Sky Was Pink - Holden Remix", + "popularity" : 49, + "preview_url" : "https://p.scdn.co/mp3-preview/88b9e3407707e6b6fddb84429b3fd995b94696a6?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:351LyEn9dxRxgkl28GwQtl" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3qAt0pasO26XGFf8lSdZ9j" + }, + "href" : "https://api.spotify.com/v1/albums/3qAt0pasO26XGFf8lSdZ9j", + "id" : "3qAt0pasO26XGFf8lSdZ9j", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5f9fb1ac46cfad7cb5bc3ec998692618d3e143cf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/0619df366812c516536b06c842bfc229e9e8a4c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d11e875a44498f696857c2ffa2a4f45ab2a00bef", + "width" : 64 + } ], + "name" : "Sparks EP", + "type" : "album", + "uri" : "spotify:album:3qAt0pasO26XGFf8lSdZ9j" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 256341, + "explicit" : false, + "external_ids" : { + "isrc" : "QMHHY1300006" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4Xgk8q4SoFNLSNrNuYpnz6" + }, + "href" : "https://api.spotify.com/v1/tracks/4Xgk8q4SoFNLSNrNuYpnz6", + "id" : "4Xgk8q4SoFNLSNrNuYpnz6", + "name" : "Luna Luxor", + "popularity" : 21, + "preview_url" : null, + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:4Xgk8q4SoFNLSNrNuYpnz6" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7rf78GoGZ2QEt7Utt1M6ca" + }, + "href" : "https://api.spotify.com/v1/albums/7rf78GoGZ2QEt7Utt1M6ca", + "id" : "7rf78GoGZ2QEt7Utt1M6ca", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c142078ae5b4c59ac635d4c2b3e07976891557de", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e7ba6898a23b05dfb537c32d37202f8b9972202d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/5fc3595f39c1a379ff0f79d6ca3228d2107de16f", + "width" : 64 + } ], + "name" : "My <3", + "type" : "album", + "uri" : "spotify:album:7rf78GoGZ2QEt7Utt1M6ca" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 324406, + "explicit" : false, + "external_ids" : { + "isrc" : "TCABK1294018" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1t80ynn4Zml0aeOXzgjK4f" + }, + "href" : "https://api.spotify.com/v1/tracks/1t80ynn4Zml0aeOXzgjK4f", + "id" : "1t80ynn4Zml0aeOXzgjK4f", + "name" : "Show You My Way", + "popularity" : 35, + "preview_url" : "https://p.scdn.co/mp3-preview/8f9f20415b98ff926b8207944ac13b1fede74245?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:1t80ynn4Zml0aeOXzgjK4f" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7rf78GoGZ2QEt7Utt1M6ca" + }, + "href" : "https://api.spotify.com/v1/albums/7rf78GoGZ2QEt7Utt1M6ca", + "id" : "7rf78GoGZ2QEt7Utt1M6ca", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c142078ae5b4c59ac635d4c2b3e07976891557de", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e7ba6898a23b05dfb537c32d37202f8b9972202d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/5fc3595f39c1a379ff0f79d6ca3228d2107de16f", + "width" : 64 + } ], + "name" : "My <3", + "type" : "album", + "uri" : "spotify:album:7rf78GoGZ2QEt7Utt1M6ca" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3bux8mURESsz7iA9yoP3Jf" + }, + "href" : "https://api.spotify.com/v1/artists/3bux8mURESsz7iA9yoP3Jf", + "id" : "3bux8mURESsz7iA9yoP3Jf", + "name" : "Steffaloo", + "type" : "artist", + "uri" : "spotify:artist:3bux8mURESsz7iA9yoP3Jf" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 260294, + "explicit" : false, + "external_ids" : { + "isrc" : "TCABK1294013" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1SARbfnOIcuohWfh4pdLuC" + }, + "href" : "https://api.spotify.com/v1/tracks/1SARbfnOIcuohWfh4pdLuC", + "id" : "1SARbfnOIcuohWfh4pdLuC", + "name" : "All There Is (feat. Steffaloo)", + "popularity" : 47, + "preview_url" : "https://p.scdn.co/mp3-preview/dbcdae4058f0f246c54fe78c9f0da3319a544d0b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:1SARbfnOIcuohWfh4pdLuC" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6ly2Z6h9dOerORbK1l2N8D" + }, + "href" : "https://api.spotify.com/v1/artists/6ly2Z6h9dOerORbK1l2N8D", + "id" : "6ly2Z6h9dOerORbK1l2N8D", + "name" : "Coucheron", + "type" : "artist", + "uri" : "spotify:artist:6ly2Z6h9dOerORbK1l2N8D" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6x5qMgvftyqTQBEmsymZ4i" + }, + "href" : "https://api.spotify.com/v1/albums/6x5qMgvftyqTQBEmsymZ4i", + "id" : "6x5qMgvftyqTQBEmsymZ4i", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/dd181dda614dc7cadc3ced3a2bf3f30b1a9e1e71", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/79e67a8b8fd4d3112eb8bcf4fe322cb375053eca", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/943bacc9ad1f29020960245882a4e30106cb9e70", + "width" : 64 + } ], + "name" : "Deep End (feat. Eastside and Mayer Hawthorne)", + "type" : "album", + "uri" : "spotify:album:6x5qMgvftyqTQBEmsymZ4i" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6ly2Z6h9dOerORbK1l2N8D" + }, + "href" : "https://api.spotify.com/v1/artists/6ly2Z6h9dOerORbK1l2N8D", + "id" : "6ly2Z6h9dOerORbK1l2N8D", + "name" : "Coucheron", + "type" : "artist", + "uri" : "spotify:artist:6ly2Z6h9dOerORbK1l2N8D" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4V0CCS8B5BzCfXICjVfyi5" + }, + "href" : "https://api.spotify.com/v1/artists/4V0CCS8B5BzCfXICjVfyi5", + "id" : "4V0CCS8B5BzCfXICjVfyi5", + "name" : "East Side", + "type" : "artist", + "uri" : "spotify:artist:4V0CCS8B5BzCfXICjVfyi5" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4d53BMrRlQkrQMz5d59f2O" + }, + "href" : "https://api.spotify.com/v1/artists/4d53BMrRlQkrQMz5d59f2O", + "id" : "4d53BMrRlQkrQMz5d59f2O", + "name" : "Mayer Hawthorne", + "type" : "artist", + "uri" : "spotify:artist:4d53BMrRlQkrQMz5d59f2O" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 210421, + "explicit" : false, + "external_ids" : { + "isrc" : "USAT21401781" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6kCxcZRkvSYXYVuBGCkhzx" + }, + "href" : "https://api.spotify.com/v1/tracks/6kCxcZRkvSYXYVuBGCkhzx", + "id" : "6kCxcZRkvSYXYVuBGCkhzx", + "name" : "Deep End (feat. Eastside and Mayer Hawthorne)", + "popularity" : 34, + "preview_url" : "https://p.scdn.co/mp3-preview/d356e9e6f511a5fd436a818abe2c0a6fb6f90610?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:6kCxcZRkvSYXYVuBGCkhzx" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1p3J6laThbGvAuz642q1O6" + }, + "href" : "https://api.spotify.com/v1/artists/1p3J6laThbGvAuz642q1O6", + "id" : "1p3J6laThbGvAuz642q1O6", + "name" : "Britta Persson", + "type" : "artist", + "uri" : "spotify:artist:1p3J6laThbGvAuz642q1O6" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/262cPLTeWxmx2PkYJ9XAYu" + }, + "href" : "https://api.spotify.com/v1/albums/262cPLTeWxmx2PkYJ9XAYu", + "id" : "262cPLTeWxmx2PkYJ9XAYu", + "images" : [ { + "height" : 635, + "url" : "https://i.scdn.co/image/c329723c3dc6f142c63b376472d093c214a9c3a5", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/2870db01cecb6c0e0c1da106658f1f60c854039d", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/6a6ee1a094de657638b71c86bf819d668ac0e100", + "width" : 64 + } ], + "name" : "If I Was a Band My Name Would Be Forevers", + "type" : "album", + "uri" : "spotify:album:262cPLTeWxmx2PkYJ9XAYu" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1p3J6laThbGvAuz642q1O6" + }, + "href" : "https://api.spotify.com/v1/artists/1p3J6laThbGvAuz642q1O6", + "id" : "1p3J6laThbGvAuz642q1O6", + "name" : "Britta Persson", + "type" : "artist", + "uri" : "spotify:artist:1p3J6laThbGvAuz642q1O6" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 197866, + "explicit" : false, + "external_ids" : { + "isrc" : "SEWBD1304703" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5oYCY3xAQl7rBWEfqJf2Ly" + }, + "href" : "https://api.spotify.com/v1/tracks/5oYCY3xAQl7rBWEfqJf2Ly", + "id" : "5oYCY3xAQl7rBWEfqJf2Ly", + "name" : "Baby No Name", + "popularity" : 25, + "preview_url" : "https://p.scdn.co/mp3-preview/d12a84ba2ff88b1453cce75e26079faaeb02762a?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:5oYCY3xAQl7rBWEfqJf2Ly" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E" + }, + "href" : "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E", + "id" : "1SQRv42e4PjEYfPhS0Tk9E", + "name" : "The Kinks", + "type" : "artist", + "uri" : "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2R0lR3exaV33RnKob1WebK" + }, + "href" : "https://api.spotify.com/v1/albums/2R0lR3exaV33RnKob1WebK", + "id" : "2R0lR3exaV33RnKob1WebK", + "images" : [ { + "height" : 633, + "url" : "https://i.scdn.co/image/01486f9ab20fabdd3f171fe83ebc63e6a45c122d", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/d9f86260572719100a361f8c58da447df75309ce", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/471a1eea51239262d5e44559562a2a33a8b9c290", + "width" : 64 + } ], + "name" : "Lola Versus Powerman and the Moneygoround / Percy", + "type" : "album", + "uri" : "spotify:album:2R0lR3exaV33RnKob1WebK" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E" + }, + "href" : "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E", + "id" : "1SQRv42e4PjEYfPhS0Tk9E", + "name" : "The Kinks", + "type" : "artist", + "uri" : "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 198786, + "explicit" : false, + "external_ids" : { + "isrc" : "GB5KW1499813" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6DmRxql5V6AyMj90qM8j22" + }, + "href" : "https://api.spotify.com/v1/tracks/6DmRxql5V6AyMj90qM8j22", + "id" : "6DmRxql5V6AyMj90qM8j22", + "name" : "Strangers (Remastered)", + "popularity" : 1, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:6DmRxql5V6AyMj90qM8j22" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2h8TFu6gGks8knK9DgdKvH" + }, + "href" : "https://api.spotify.com/v1/albums/2h8TFu6gGks8knK9DgdKvH", + "id" : "2h8TFu6gGks8knK9DgdKvH", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/60053b3f105ad0eeaff750eb0ea24f006b96cf2d", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6d125fc8186effeb46ab692b5b452a9bc7554546", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/f126d70753c4311d91b665be791fb856beb170a5", + "width" : 64 + } ], + "name" : "Chance", + "type" : "album", + "uri" : "spotify:album:2h8TFu6gGks8knK9DgdKvH" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 349253, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBXM8010006" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/52iKwpwgxhC7Xcb1BNLSTo" + }, + "href" : "https://api.spotify.com/v1/tracks/52iKwpwgxhC7Xcb1BNLSTo", + "id" : "52iKwpwgxhC7Xcb1BNLSTo", + "name" : "Stranded", + "popularity" : 0, + "preview_url" : null, + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:52iKwpwgxhC7Xcb1BNLSTo" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4he7R24eqd1EbF9kegiAK8" + }, + "href" : "https://api.spotify.com/v1/albums/4he7R24eqd1EbF9kegiAK8", + "id" : "4he7R24eqd1EbF9kegiAK8", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/964e87f80e22f2cd1545c23ee9cde663fadf049d", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/73ec8855bae5e835a281355708d5c1bbc2368e31", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/492ca27bce61df6e267b066638f22b9136fc7130", + "width" : 64 + } ], + "name" : "R&B: From Doo-Wop To Hip-Hop", + "type" : "album", + "uri" : "spotify:album:4he7R24eqd1EbF9kegiAK8" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3VBpsrUi2vV7Uj87ONHu7Z" + }, + "href" : "https://api.spotify.com/v1/artists/3VBpsrUi2vV7Uj87ONHu7Z", + "id" : "3VBpsrUi2vV7Uj87ONHu7Z", + "name" : "Screamin' Jay Hawkins", + "type" : "artist", + "uri" : "spotify:artist:3VBpsrUi2vV7Uj87ONHu7Z" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 144360, + "explicit" : false, + "external_ids" : { + "isrc" : "USSM15600404" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1YwoYPfhuZlLDbJUH1cKSi" + }, + "href" : "https://api.spotify.com/v1/tracks/1YwoYPfhuZlLDbJUH1cKSi", + "id" : "1YwoYPfhuZlLDbJUH1cKSi", + "name" : "I Put a Spell on You", + "popularity" : 50, + "preview_url" : null, + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:1YwoYPfhuZlLDbJUH1cKSi" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/78gL6j8IridZeSo4ZSRErN" + }, + "href" : "https://api.spotify.com/v1/artists/78gL6j8IridZeSo4ZSRErN", + "id" : "78gL6j8IridZeSo4ZSRErN", + "name" : "Erobique & Jacques Palminger", + "type" : "artist", + "uri" : "spotify:artist:78gL6j8IridZeSo4ZSRErN" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/49TSZRZQUni1mNsKTLfJ9l" + }, + "href" : "https://api.spotify.com/v1/albums/49TSZRZQUni1mNsKTLfJ9l", + "id" : "49TSZRZQUni1mNsKTLfJ9l", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5622c316dcdf97b89cb8c12644dec7726a52b171", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/721f579bb33c21f6c684390018a1ad474542d654", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/70d3181af958b3db2a5f7613cb5f67c3d3ceb467", + "width" : 64 + } ], + "name" : "Songs For Joy", + "type" : "album", + "uri" : "spotify:album:49TSZRZQUni1mNsKTLfJ9l" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2q5k03p4Hub2VWiiWYj02d" + }, + "href" : "https://api.spotify.com/v1/artists/2q5k03p4Hub2VWiiWYj02d", + "id" : "2q5k03p4Hub2VWiiWYj02d", + "name" : "Jacques Palminger", + "type" : "artist", + "uri" : "spotify:artist:2q5k03p4Hub2VWiiWYj02d" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2Gde0DBcgb2YE6AV1lqLxH" + }, + "href" : "https://api.spotify.com/v1/artists/2Gde0DBcgb2YE6AV1lqLxH", + "id" : "2Gde0DBcgb2YE6AV1lqLxH", + "name" : "Erobique", + "type" : "artist", + "uri" : "spotify:artist:2Gde0DBcgb2YE6AV1lqLxH" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 215120, + "explicit" : false, + "external_ids" : { + "isrc" : "DEEH60900200" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6md2CABkr8nWRehibuWqBU" + }, + "href" : "https://api.spotify.com/v1/tracks/6md2CABkr8nWRehibuWqBU", + "id" : "6md2CABkr8nWRehibuWqBU", + "name" : "Wann strahlst Du?", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:6md2CABkr8nWRehibuWqBU" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1pP9NCI4oFVEEFmywg2l7l" + }, + "href" : "https://api.spotify.com/v1/albums/1pP9NCI4oFVEEFmywg2l7l", + "id" : "1pP9NCI4oFVEEFmywg2l7l", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a17e21304113ca3b8c691a35e2ba1c171d4efff2", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/da647c96acf9621fc8cdeed1ceecf96a4b16986d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/db1a60a257f16fa4609e3d7a2dd5838929aabc8d", + "width" : 64 + } ], + "name" : "Lookin At Me", + "type" : "album", + "uri" : "spotify:album:1pP9NCI4oFVEEFmywg2l7l" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 229067, + "explicit" : false, + "external_ids" : { + "isrc" : "AUFF01300498" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/29vGLdslqzVI03uzOvubIu" + }, + "href" : "https://api.spotify.com/v1/tracks/29vGLdslqzVI03uzOvubIu", + "id" : "29vGLdslqzVI03uzOvubIu", + "name" : "Lookin At Me", + "popularity" : 14, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:29vGLdslqzVI03uzOvubIu" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/19hdPMPxqnCrJyy6H0b6Uk" + }, + "href" : "https://api.spotify.com/v1/albums/19hdPMPxqnCrJyy6H0b6Uk", + "id" : "19hdPMPxqnCrJyy6H0b6Uk", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ed6c6b1e76532ecb23c588673633cae5cbe55b4f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6d0e210b98bd1f4478cbb16ad073837d10ef237d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6611cde3b45cbcb38171b1f78c6710355eb7395e", + "width" : 64 + } ], + "name" : "Glaive", + "type" : "album", + "uri" : "spotify:album:19hdPMPxqnCrJyy6H0b6Uk" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 460791, + "explicit" : false, + "external_ids" : { + "isrc" : "UK8E41500201" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2PM835gy6YfVGNF4BnmRr4" + }, + "href" : "https://api.spotify.com/v1/tracks/2PM835gy6YfVGNF4BnmRr4", + "id" : "2PM835gy6YfVGNF4BnmRr4", + "name" : "Fortune Bru", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:2PM835gy6YfVGNF4BnmRr4" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/19hdPMPxqnCrJyy6H0b6Uk" + }, + "href" : "https://api.spotify.com/v1/albums/19hdPMPxqnCrJyy6H0b6Uk", + "id" : "19hdPMPxqnCrJyy6H0b6Uk", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ed6c6b1e76532ecb23c588673633cae5cbe55b4f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6d0e210b98bd1f4478cbb16ad073837d10ef237d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6611cde3b45cbcb38171b1f78c6710355eb7395e", + "width" : 64 + } ], + "name" : "Glaive", + "type" : "album", + "uri" : "spotify:album:19hdPMPxqnCrJyy6H0b6Uk" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 302465, + "explicit" : false, + "external_ids" : { + "isrc" : "UK8E41500203" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3XyAmICqdDcrI7NjGXuPze" + }, + "href" : "https://api.spotify.com/v1/tracks/3XyAmICqdDcrI7NjGXuPze", + "id" : "3XyAmICqdDcrI7NjGXuPze", + "name" : "Audio Gold", + "popularity" : 0, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:3XyAmICqdDcrI7NjGXuPze" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5hE6NCoobhyEu6TRSbjOJY" + }, + "href" : "https://api.spotify.com/v1/artists/5hE6NCoobhyEu6TRSbjOJY", + "id" : "5hE6NCoobhyEu6TRSbjOJY", + "name" : "Fever Ray", + "type" : "artist", + "uri" : "spotify:artist:5hE6NCoobhyEu6TRSbjOJY" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/56pR0SwZfVQFSIVWzM1eow" + }, + "href" : "https://api.spotify.com/v1/albums/56pR0SwZfVQFSIVWzM1eow", + "id" : "56pR0SwZfVQFSIVWzM1eow", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/36cf4c430153d48a2816d2cc3c90b1d03898087f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/2a494d65e66ee04f3aa691d329e9d1ee753c0525", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/cb2491696501f4b549f36ab3a82482b4652b8451", + "width" : 64 + } ], + "name" : "Fever Ray (Deluxe Edition)", + "type" : "album", + "uri" : "spotify:album:56pR0SwZfVQFSIVWzM1eow" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5hE6NCoobhyEu6TRSbjOJY" + }, + "href" : "https://api.spotify.com/v1/artists/5hE6NCoobhyEu6TRSbjOJY", + "id" : "5hE6NCoobhyEu6TRSbjOJY", + "name" : "Fever Ray", + "type" : "artist", + "uri" : "spotify:artist:5hE6NCoobhyEu6TRSbjOJY" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 227866, + "explicit" : true, + "external_ids" : { + "isrc" : "SEWCE0900201" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2CsyBDeoseWK98FOGbSiZR" + }, + "href" : "https://api.spotify.com/v1/tracks/2CsyBDeoseWK98FOGbSiZR", + "id" : "2CsyBDeoseWK98FOGbSiZR", + "name" : "If I Had a Heart", + "popularity" : 50, + "preview_url" : "https://p.scdn.co/mp3-preview/4cd239c45fb0ce3a8110018aee3415272683c006?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:2CsyBDeoseWK98FOGbSiZR" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "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" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1TY8JzETLheB4vm5QblKsF" + }, + "href" : "https://api.spotify.com/v1/artists/1TY8JzETLheB4vm5QblKsF", + "id" : "1TY8JzETLheB4vm5QblKsF", + "name" : "Daniele Luppi", + "type" : "artist", + "uri" : "spotify:artist:1TY8JzETLheB4vm5QblKsF" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2nBo5nFoszkjuY0bxv1y0A" + }, + "href" : "https://api.spotify.com/v1/albums/2nBo5nFoszkjuY0bxv1y0A", + "id" : "2nBo5nFoszkjuY0bxv1y0A", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5abc17281a0890ccfb304ff233526028613a64e8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/a319407de8ac16046989a529ed546706da365d8c", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/daa6ff8370adc0f019d402c90080ed310f1d5cef", + "width" : 64 + } ], + "name" : "Rome", + "type" : "album", + "uri" : "spotify:album:2nBo5nFoszkjuY0bxv1y0A" + }, + "artists" : [ { + "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" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1TY8JzETLheB4vm5QblKsF" + }, + "href" : "https://api.spotify.com/v1/artists/1TY8JzETLheB4vm5QblKsF", + "id" : "1TY8JzETLheB4vm5QblKsF", + "name" : "Daniele Luppi", + "type" : "artist", + "uri" : "spotify:artist:1TY8JzETLheB4vm5QblKsF" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2Kx7MNY7cI1ENniW7vT30N" + }, + "href" : "https://api.spotify.com/v1/artists/2Kx7MNY7cI1ENniW7vT30N", + "id" : "2Kx7MNY7cI1ENniW7vT30N", + "name" : "Norah Jones", + "type" : "artist", + "uri" : "spotify:artist:2Kx7MNY7cI1ENniW7vT30N" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 211506, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAYE1001387" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5H43dazn2x2O9dkDVvaiDS" + }, + "href" : "https://api.spotify.com/v1/tracks/5H43dazn2x2O9dkDVvaiDS", + "id" : "5H43dazn2x2O9dkDVvaiDS", + "name" : "Black (feat. Norah Jones)", + "popularity" : 52, + "preview_url" : "https://p.scdn.co/mp3-preview/9e08c5d87e1b9cc23334ce3cd9d8f2bfed37f756?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:5H43dazn2x2O9dkDVvaiDS" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3evTEdMpLTXkvA6GfmvpGB" + }, + "href" : "https://api.spotify.com/v1/artists/3evTEdMpLTXkvA6GfmvpGB", + "id" : "3evTEdMpLTXkvA6GfmvpGB", + "name" : "Ital Skurk", + "type" : "artist", + "uri" : "spotify:artist:3evTEdMpLTXkvA6GfmvpGB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/28p9F6GZYkhoBIF7Sotkwm" + }, + "href" : "https://api.spotify.com/v1/albums/28p9F6GZYkhoBIF7Sotkwm", + "id" : "28p9F6GZYkhoBIF7Sotkwm", + "images" : [ { + "height" : 350, + "url" : "https://i.scdn.co/image/effe47e069894b8b29ad290d83b6b25d6ae19d5e", + "width" : 350 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/cdf5b170f8c734c08cb87d830c03b282272ae0e5", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/7a3d1ffc1a40d64ad386bb9a90b91cd5310e22f7", + "width" : 64 + } ], + "name" : "Låt Solen Skina", + "type" : "album", + "uri" : "spotify:album:28p9F6GZYkhoBIF7Sotkwm" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3evTEdMpLTXkvA6GfmvpGB" + }, + "href" : "https://api.spotify.com/v1/artists/3evTEdMpLTXkvA6GfmvpGB", + "id" : "3evTEdMpLTXkvA6GfmvpGB", + "name" : "Ital Skurk", + "type" : "artist", + "uri" : "spotify:artist:3evTEdMpLTXkvA6GfmvpGB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 177586, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXUM0600207" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1aAbS1SRbBKyGCjvn2FuaJ" + }, + "href" : "https://api.spotify.com/v1/tracks/1aAbS1SRbBKyGCjvn2FuaJ", + "id" : "1aAbS1SRbBKyGCjvn2FuaJ", + "name" : "Mycket Av Allt", + "popularity" : 0, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:1aAbS1SRbBKyGCjvn2FuaJ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5vioaoaWvgWq6zR52iTXda" + }, + "href" : "https://api.spotify.com/v1/albums/5vioaoaWvgWq6zR52iTXda", + "id" : "5vioaoaWvgWq6zR52iTXda", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5c53e60c3267ed0c1cc92654e442cf00f3d03431", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/13c378b872fb5a657ce5a5190cb53954ab895338", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/85b5ceb86cd7c6e5222d38aae6207b817687061b", + "width" : 64 + } ], + "name" : "Brazilian Beats 4", + "type" : "album", + "uri" : "spotify:album:5vioaoaWvgWq6zR52iTXda" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6sm4fipYpmeCJLmAWc820F" + }, + "href" : "https://api.spotify.com/v1/artists/6sm4fipYpmeCJLmAWc820F", + "id" : "6sm4fipYpmeCJLmAWc820F", + "name" : "Juca Chaves", + "type" : "artist", + "uri" : "spotify:artist:6sm4fipYpmeCJLmAWc820F" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 199640, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCLQ0000439" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0UTrHHQkRIydTzKRGkxrkg" + }, + "href" : "https://api.spotify.com/v1/tracks/0UTrHHQkRIydTzKRGkxrkg", + "id" : "0UTrHHQkRIydTzKRGkxrkg", + "name" : "Take Me Back To Piaui", + "popularity" : 0, + "preview_url" : null, + "track_number" : 8, + "type" : "track", + "uri" : "spotify:track:0UTrHHQkRIydTzKRGkxrkg" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC" + }, + "href" : "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC", + "id" : "1nJvji2KIlWSseXRSlNYsC", + "name" : "The Velvet Underground", + "type" : "artist", + "uri" : "spotify:artist:1nJvji2KIlWSseXRSlNYsC" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2pO8y15ojMgXRZaxuYF8cq" + }, + "href" : "https://api.spotify.com/v1/albums/2pO8y15ojMgXRZaxuYF8cq", + "id" : "2pO8y15ojMgXRZaxuYF8cq", + "images" : [ { + "height" : 568, + "url" : "https://i.scdn.co/image/82c6dcc2da80dc60dc42ef991975ded85a79a301", + "width" : 640 + }, { + "height" : 266, + "url" : "https://i.scdn.co/image/df22e7225321f969476a16fac06278a440de6d60", + "width" : 300 + }, { + "height" : 57, + "url" : "https://i.scdn.co/image/63306fdfe8a6ef48ef0325574bbeccd83e0e3d24", + "width" : 64 + } ], + "name" : "3Cd", + "type" : "album", + "uri" : "spotify:album:2pO8y15ojMgXRZaxuYF8cq" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC" + }, + "href" : "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC", + "id" : "1nJvji2KIlWSseXRSlNYsC", + "name" : "The Velvet Underground", + "type" : "artist", + "uri" : "spotify:artist:1nJvji2KIlWSseXRSlNYsC" + } ], + "available_markets" : [ ], + "disc_number" : 3, + "duration_ms" : 164493, + "explicit" : false, + "external_ids" : { + "isrc" : "USPR36805191" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2YsGGqbtUfedDA2CGKrxZb" + }, + "href" : "https://api.spotify.com/v1/tracks/2YsGGqbtUfedDA2CGKrxZb", + "id" : "2YsGGqbtUfedDA2CGKrxZb", + "name" : "White Light/White Heat", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:2YsGGqbtUfedDA2CGKrxZb" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4JQMOE19ue9Fc6TtFylxnf" + }, + "href" : "https://api.spotify.com/v1/artists/4JQMOE19ue9Fc6TtFylxnf", + "id" : "4JQMOE19ue9Fc6TtFylxnf", + "name" : "Bob Blank", + "type" : "artist", + "uri" : "spotify:artist:4JQMOE19ue9Fc6TtFylxnf" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1GbV6IEiNpqFqtr0YLIwc7" + }, + "href" : "https://api.spotify.com/v1/albums/1GbV6IEiNpqFqtr0YLIwc7", + "id" : "1GbV6IEiNpqFqtr0YLIwc7", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/86e029d4eaa9b8d869b2c7c333945a0bda06d7cb", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/8d2ddc0e97039709ec1a19b66c99ac9a4880b8ff", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0ae50cecb18f13779c4a6f9f601312f78ef58f4d", + "width" : 64 + } ], + "name" : "The Blank Generation - Blank Tapes NYC 1971 - 1985", + "type" : "album", + "uri" : "spotify:album:1GbV6IEiNpqFqtr0YLIwc7" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2aXiJJHJei5BmCykxI37y0" + }, + "href" : "https://api.spotify.com/v1/artists/2aXiJJHJei5BmCykxI37y0", + "id" : "2aXiJJHJei5BmCykxI37y0", + "name" : "Gladys Knight", + "type" : "artist", + "uri" : "spotify:artist:2aXiJJHJei5BmCykxI37y0" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 410850, + "explicit" : false, + "external_ids" : { + "isrc" : "DEG930941107" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7ueWZ2uGeBindzNE92HLu8" + }, + "href" : "https://api.spotify.com/v1/tracks/7ueWZ2uGeBindzNE92HLu8", + "id" : "7ueWZ2uGeBindzNE92HLu8", + "name" : "It's A Better Than Good Time - Walter Gibbons Mix", + "popularity" : 0, + "preview_url" : null, + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:7ueWZ2uGeBindzNE92HLu8" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6pf0wfjjnNBa3obNhYZ3u2" + }, + "href" : "https://api.spotify.com/v1/artists/6pf0wfjjnNBa3obNhYZ3u2", + "id" : "6pf0wfjjnNBa3obNhYZ3u2", + "name" : "New Found Land", + "type" : "artist", + "uri" : "spotify:artist:6pf0wfjjnNBa3obNhYZ3u2" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7eZMmncmStjUIG5D3lf0M2" + }, + "href" : "https://api.spotify.com/v1/albums/7eZMmncmStjUIG5D3lf0M2", + "id" : "7eZMmncmStjUIG5D3lf0M2", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d9e65d91efbfe701961f7d07bd2a9ffb26d76357", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5f84261701fec34c7cd8d167d45381f7eaaaff9f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/69f7d9770b8661e7f4fb80bd950406b1f0363753", + "width" : 64 + } ], + "name" : "We All Die", + "type" : "album", + "uri" : "spotify:album:7eZMmncmStjUIG5D3lf0M2" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6pf0wfjjnNBa3obNhYZ3u2" + }, + "href" : "https://api.spotify.com/v1/artists/6pf0wfjjnNBa3obNhYZ3u2", + "id" : "6pf0wfjjnNBa3obNhYZ3u2", + "name" : "New Found Land", + "type" : "artist", + "uri" : "spotify:artist:6pf0wfjjnNBa3obNhYZ3u2" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 247680, + "explicit" : false, + "external_ids" : { + "isrc" : "SEYQ60900105" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2gKicXFQDIVumZYeGpP6ju" + }, + "href" : "https://api.spotify.com/v1/tracks/2gKicXFQDIVumZYeGpP6ju", + "id" : "2gKicXFQDIVumZYeGpP6ju", + "name" : "Come To Me", + "popularity" : 2, + "preview_url" : "https://p.scdn.co/mp3-preview/5a7d64247a34933e846384f141ac7cd22fc7f37c?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:2gKicXFQDIVumZYeGpP6ju" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5xfJLyvC5UElVSiMuLt1ss" + }, + "href" : "https://api.spotify.com/v1/artists/5xfJLyvC5UElVSiMuLt1ss", + "id" : "5xfJLyvC5UElVSiMuLt1ss", + "name" : "Young Galaxy", + "type" : "artist", + "uri" : "spotify:artist:5xfJLyvC5UElVSiMuLt1ss" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3DyIAjq1iOl07Z1IV39Py6" + }, + "href" : "https://api.spotify.com/v1/albums/3DyIAjq1iOl07Z1IV39Py6", + "id" : "3DyIAjq1iOl07Z1IV39Py6", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/963018a293f424fcadcf4d8f7152b82c981f028a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c998b6789e256d8da0401c778a18af8f7fdc372e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/27c0cb7a39a59268e45fbebddd07a7e74bbbfbfb", + "width" : 64 + } ], + "name" : "Shapeshifting", + "type" : "album", + "uri" : "spotify:album:3DyIAjq1iOl07Z1IV39Py6" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5xfJLyvC5UElVSiMuLt1ss" + }, + "href" : "https://api.spotify.com/v1/artists/5xfJLyvC5UElVSiMuLt1ss", + "id" : "5xfJLyvC5UElVSiMuLt1ss", + "name" : "Young Galaxy", + "type" : "artist", + "uri" : "spotify:artist:5xfJLyvC5UElVSiMuLt1ss" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 227560, + "explicit" : false, + "external_ids" : { + "isrc" : "NOSTS1105090" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0RJpCkAg481Cbn4TWSzHG5" + }, + "href" : "https://api.spotify.com/v1/tracks/0RJpCkAg481Cbn4TWSzHG5", + "id" : "0RJpCkAg481Cbn4TWSzHG5", + "name" : "COVER YOUR TRACKS", + "popularity" : 30, + "preview_url" : "https://p.scdn.co/mp3-preview/40954fa851587c214697e65e1b3f85d284e486a3?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:0RJpCkAg481Cbn4TWSzHG5" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2s0438sn0pYL2OuukcFqPN" + }, + "href" : "https://api.spotify.com/v1/artists/2s0438sn0pYL2OuukcFqPN", + "id" : "2s0438sn0pYL2OuukcFqPN", + "name" : "Kid Koala", + "type" : "artist", + "uri" : "spotify:artist:2s0438sn0pYL2OuukcFqPN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6iLB8sBlEGmOwS2uxkNCiL" + }, + "href" : "https://api.spotify.com/v1/albums/6iLB8sBlEGmOwS2uxkNCiL", + "id" : "6iLB8sBlEGmOwS2uxkNCiL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f94b13d38ce5f49353e52643dc3990283a023a9e", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/bb0e66874063a400888486ff30567d2ab7ff0659", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/46b668f0ab5e104df589f725074a955a5bb298d7", + "width" : 64 + } ], + "name" : "Some Of My Best Friends Are DJs", + "type" : "album", + "uri" : "spotify:album:6iLB8sBlEGmOwS2uxkNCiL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2s0438sn0pYL2OuukcFqPN" + }, + "href" : "https://api.spotify.com/v1/artists/2s0438sn0pYL2OuukcFqPN", + "id" : "2s0438sn0pYL2OuukcFqPN", + "name" : "Kid Koala", + "type" : "artist", + "uri" : "spotify:artist:2s0438sn0pYL2OuukcFqPN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 203840, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0300236" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/58M2A8KjUuyMUgTcbSohWw" + }, + "href" : "https://api.spotify.com/v1/tracks/58M2A8KjUuyMUgTcbSohWw", + "id" : "58M2A8KjUuyMUgTcbSohWw", + "name" : "Skanky Panky", + "popularity" : 43, + "preview_url" : "https://p.scdn.co/mp3-preview/293ffc0547b7bd487e2826fdd2817d5ca00b030e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:58M2A8KjUuyMUgTcbSohWw" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4cJKxS7uOPhwb5UQ70sYpN" + }, + "href" : "https://api.spotify.com/v1/artists/4cJKxS7uOPhwb5UQ70sYpN", + "id" : "4cJKxS7uOPhwb5UQ70sYpN", + "name" : "Amason", + "type" : "artist", + "uri" : "spotify:artist:4cJKxS7uOPhwb5UQ70sYpN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6m7LQEVqbiH4b9yzZHNTN9" + }, + "href" : "https://api.spotify.com/v1/albums/6m7LQEVqbiH4b9yzZHNTN9", + "id" : "6m7LQEVqbiH4b9yzZHNTN9", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0993210ce5b8c22a1cc702dfc007e0dcacfbe0d1", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/b3e4e0495daf18a3fb0b821b837eacb7f5b1f501", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/8536a05c5197dd0553282d48ef5e0a6960d0c4ea", + "width" : 64 + } ], + "name" : "Ålen", + "type" : "album", + "uri" : "spotify:album:6m7LQEVqbiH4b9yzZHNTN9" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4cJKxS7uOPhwb5UQ70sYpN" + }, + "href" : "https://api.spotify.com/v1/artists/4cJKxS7uOPhwb5UQ70sYpN", + "id" : "4cJKxS7uOPhwb5UQ70sYpN", + "name" : "Amason", + "type" : "artist", + "uri" : "spotify:artist:4cJKxS7uOPhwb5UQ70sYpN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 230753, + "explicit" : false, + "external_ids" : { + "isrc" : "SE3EM1400101" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/29VkJ1UHrhjKaSlPRnSsK6" + }, + "href" : "https://api.spotify.com/v1/tracks/29VkJ1UHrhjKaSlPRnSsK6", + "id" : "29VkJ1UHrhjKaSlPRnSsK6", + "name" : "Ålen", + "popularity" : 47, + "preview_url" : "https://p.scdn.co/mp3-preview/110c016e094dc1a6e25b5d30e80629b433198e7e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:29VkJ1UHrhjKaSlPRnSsK6" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/738wLrAtLtCtFOLvQBXOXp" + }, + "href" : "https://api.spotify.com/v1/artists/738wLrAtLtCtFOLvQBXOXp", + "id" : "738wLrAtLtCtFOLvQBXOXp", + "name" : "Major Lazer", + "type" : "artist", + "uri" : "spotify:artist:738wLrAtLtCtFOLvQBXOXp" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0DCGcBBjnEmRYpuVRqGqT4" + }, + "href" : "https://api.spotify.com/v1/albums/0DCGcBBjnEmRYpuVRqGqT4", + "id" : "0DCGcBBjnEmRYpuVRqGqT4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ba31287cb46f315d1b5979d1aacb7ef42620a814", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c7b5c10a561347101777883075748d2eca990d67", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/74908710522308af73edad6ce1b6956acce2a6cf", + "width" : 64 + } ], + "name" : "Free The Universe", + "type" : "album", + "uri" : "spotify:album:0DCGcBBjnEmRYpuVRqGqT4" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/738wLrAtLtCtFOLvQBXOXp" + }, + "href" : "https://api.spotify.com/v1/artists/738wLrAtLtCtFOLvQBXOXp", + "id" : "738wLrAtLtCtFOLvQBXOXp", + "name" : "Major Lazer", + "type" : "artist", + "uri" : "spotify:artist:738wLrAtLtCtFOLvQBXOXp" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2nkAu4P6EVeQpXxiEhPTH6" + }, + "href" : "https://api.spotify.com/v1/artists/2nkAu4P6EVeQpXxiEhPTH6", + "id" : "2nkAu4P6EVeQpXxiEhPTH6", + "name" : "Ezra Koenig", + "type" : "artist", + "uri" : "spotify:artist:2nkAu4P6EVeQpXxiEhPTH6" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 253693, + "explicit" : false, + "external_ids" : { + "isrc" : "US38W1229207" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4i4T1zgm3EAktbpivZoUDC" + }, + "href" : "https://api.spotify.com/v1/tracks/4i4T1zgm3EAktbpivZoUDC", + "id" : "4i4T1zgm3EAktbpivZoUDC", + "name" : "Jessica [feat. Ezra Koenig]", + "popularity" : 0, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:4i4T1zgm3EAktbpivZoUDC" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "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" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1YwnzOoFiexSqIOTCRPWOG" + }, + "href" : "https://api.spotify.com/v1/albums/1YwnzOoFiexSqIOTCRPWOG", + "id" : "1YwnzOoFiexSqIOTCRPWOG", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5866482cfa5b7c2f86e2312742753b7e3ac57de3", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d5d011b0dbce9aa53afbbc3e6781cbc12b20bfb6", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/56e0441e94ecd4257896a0ca6b168f0027634f94", + "width" : 64 + } ], + "name" : "Making up a Changing Mind", + "type" : "album", + "uri" : "spotify:album:1YwnzOoFiexSqIOTCRPWOG" + }, + "artists" : [ { + "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" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 330666, + "explicit" : false, + "external_ids" : { + "isrc" : "USTCD1080521" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5fH9OgcqKO6a1Ccd9uEUmQ" + }, + "href" : "https://api.spotify.com/v1/tracks/5fH9OgcqKO6a1Ccd9uEUmQ", + "id" : "5fH9OgcqKO6a1Ccd9uEUmQ", + "name" : "Future Blind", + "popularity" : 36, + "preview_url" : "https://p.scdn.co/mp3-preview/9cfd0275ccc7d9e1e7b2582af95f6c60a5f5ce42?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:5fH9OgcqKO6a1Ccd9uEUmQ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0PuOTaQilwmrn6xRCKVsFo" + }, + "href" : "https://api.spotify.com/v1/artists/0PuOTaQilwmrn6xRCKVsFo", + "id" : "0PuOTaQilwmrn6xRCKVsFo", + "name" : "Ishi", + "type" : "artist", + "uri" : "spotify:artist:0PuOTaQilwmrn6xRCKVsFo" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/41uK7QPjXJWDf9Xqu5gY8G" + }, + "href" : "https://api.spotify.com/v1/albums/41uK7QPjXJWDf9Xqu5gY8G", + "id" : "41uK7QPjXJWDf9Xqu5gY8G", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/cef955285bc267a827543a8105e0e9a04a31081a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d638a3f4f0cdf682e4ecde436b050bcf54e8ce95", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2dc9e44c6c652a8a581cf9118a4f9654b5ffb361", + "width" : 64 + } ], + "name" : "Digital Wounds", + "type" : "album", + "uri" : "spotify:album:41uK7QPjXJWDf9Xqu5gY8G" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0PuOTaQilwmrn6xRCKVsFo" + }, + "href" : "https://api.spotify.com/v1/artists/0PuOTaQilwmrn6xRCKVsFo", + "id" : "0PuOTaQilwmrn6xRCKVsFo", + "name" : "Ishi", + "type" : "artist", + "uri" : "spotify:artist:0PuOTaQilwmrn6xRCKVsFo" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 409040, + "explicit" : false, + "external_ids" : { + "isrc" : "USPVB1314928" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7CtIedWpglrK0eiC2Z4cwb" + }, + "href" : "https://api.spotify.com/v1/tracks/7CtIedWpglrK0eiC2Z4cwb", + "id" : "7CtIedWpglrK0eiC2Z4cwb", + "name" : "Mother Prism", + "popularity" : 18, + "preview_url" : "https://p.scdn.co/mp3-preview/2448fca2dc8ab209d3cb3d0aa47aebeb0bad1df9?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:7CtIedWpglrK0eiC2Z4cwb" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7vFpNLbCXbBFs4kFBUlkSl" + }, + "href" : "https://api.spotify.com/v1/artists/7vFpNLbCXbBFs4kFBUlkSl", + "id" : "7vFpNLbCXbBFs4kFBUlkSl", + "name" : "Zombie Nation", + "type" : "artist", + "uri" : "spotify:artist:7vFpNLbCXbBFs4kFBUlkSl" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2qHeKpxpLR6TcAlIKXhvpi" + }, + "href" : "https://api.spotify.com/v1/albums/2qHeKpxpLR6TcAlIKXhvpi", + "id" : "2qHeKpxpLR6TcAlIKXhvpi", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/91a71a956e926b278e7bcbe1d80a06aabb024ce9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/07bbdd8dc540ef6a59778dc685c3b75f6480b893", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/12e442b7af091cf12c8dffa765b55eaea78750c2", + "width" : 64 + } ], + "name" : "RGB", + "type" : "album", + "uri" : "spotify:album:2qHeKpxpLR6TcAlIKXhvpi" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7vFpNLbCXbBFs4kFBUlkSl" + }, + "href" : "https://api.spotify.com/v1/artists/7vFpNLbCXbBFs4kFBUlkSl", + "id" : "7vFpNLbCXbBFs4kFBUlkSl", + "name" : "Zombie Nation", + "type" : "artist", + "uri" : "spotify:artist:7vFpNLbCXbBFs4kFBUlkSl" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 239795, + "explicit" : false, + "external_ids" : { + "isrc" : "CAT391200180" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1A32Buk8Riy3perwSzC4To" + }, + "href" : "https://api.spotify.com/v1/tracks/1A32Buk8Riy3perwSzC4To", + "id" : "1A32Buk8Riy3perwSzC4To", + "name" : "Tryouts", + "popularity" : 32, + "preview_url" : "https://p.scdn.co/mp3-preview/2053c250def7d054b4e4c46b580cbf24723fc159?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:1A32Buk8Riy3perwSzC4To" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7be3s9KeG3Ia1jnBzFtXOX" + }, + "href" : "https://api.spotify.com/v1/albums/7be3s9KeG3Ia1jnBzFtXOX", + "id" : "7be3s9KeG3Ia1jnBzFtXOX", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/77256e1584bc6fb2348a0d4631e850b74b663b28", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d11b4cf819dff37c7301b5ec35941fc9b5c4656a", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3e934d2021d29ed07d993d6a9fd19a9ec43b3dac", + "width" : 64 + } ], + "name" : "Best Of Vol 1", + "type" : "album", + "uri" : "spotify:album:7be3s9KeG3Ia1jnBzFtXOX" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 228866, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBXM7610001" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/39OPZvxdhToddt29z55Ukv" + }, + "href" : "https://api.spotify.com/v1/tracks/39OPZvxdhToddt29z55Ukv", + "id" : "39OPZvxdhToddt29z55Ukv", + "name" : "Blinded By The Light", + "popularity" : 55, + "preview_url" : "https://p.scdn.co/mp3-preview/d9238c41d7d85fd8192ed5b116187eec7924bfde?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:39OPZvxdhToddt29z55Ukv" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/14H7ag1wpQOsPPQJOD6Dqr" + }, + "href" : "https://api.spotify.com/v1/artists/14H7ag1wpQOsPPQJOD6Dqr", + "id" : "14H7ag1wpQOsPPQJOD6Dqr", + "name" : "Zero 7", + "type" : "artist", + "uri" : "spotify:artist:14H7ag1wpQOsPPQJOD6Dqr" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2AOnLMRgQJVF98NxmxxI45" + }, + "href" : "https://api.spotify.com/v1/albums/2AOnLMRgQJVF98NxmxxI45", + "id" : "2AOnLMRgQJVF98NxmxxI45", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5b295b15bf342039339d392ec1c22c10fa682995", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3aaaf92a81c37c869812f43368f147cd2e83922b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/75e978d4823cfeca1daa3643fa4654653a24f5ba", + "width" : 64 + } ], + "name" : "Simple Science (Todd Osborn Remix)", + "type" : "album", + "uri" : "spotify:album:2AOnLMRgQJVF98NxmxxI45" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/14H7ag1wpQOsPPQJOD6Dqr" + }, + "href" : "https://api.spotify.com/v1/artists/14H7ag1wpQOsPPQJOD6Dqr", + "id" : "14H7ag1wpQOsPPQJOD6Dqr", + "name" : "Zero 7", + "type" : "artist", + "uri" : "spotify:artist:14H7ag1wpQOsPPQJOD6Dqr" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 492016, + "explicit" : false, + "external_ids" : { + "isrc" : "UK46T1402003" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3L7DfGIpG0MaWoToJztxqf" + }, + "href" : "https://api.spotify.com/v1/tracks/3L7DfGIpG0MaWoToJztxqf", + "id" : "3L7DfGIpG0MaWoToJztxqf", + "name" : "Simple Science Remix - Instrumental", + "popularity" : 12, + "preview_url" : "https://p.scdn.co/mp3-preview/f24eb437c9687a7d78e7f99ac087713a19a70d8e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3L7DfGIpG0MaWoToJztxqf" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1rnogXkMBXDVzDPFSq4dDe" + }, + "href" : "https://api.spotify.com/v1/albums/1rnogXkMBXDVzDPFSq4dDe", + "id" : "1rnogXkMBXDVzDPFSq4dDe", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2d70decc3c9e0fab3d565b57366a083143e729d8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/8be8ebe6a8e236fe5a432d3f4d86461233e2613e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3ea629f47ae31a16bb156dab663ab8b348870c2d", + "width" : 64 + } ], + "name" : "Psychic", + "type" : "album", + "uri" : "spotify:album:1rnogXkMBXDVzDPFSq4dDe" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 289840, + "explicit" : false, + "external_ids" : { + "isrc" : "USMTD1303939" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4mhfCJJiCJoe1ZPLjvY7TX" + }, + "href" : "https://api.spotify.com/v1/tracks/4mhfCJJiCJoe1ZPLjvY7TX", + "id" : "4mhfCJJiCJoe1ZPLjvY7TX", + "name" : "Paper Trails", + "popularity" : 38, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4mhfCJJiCJoe1ZPLjvY7TX" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0cmWgDlu9CwTgxPhf403hb" + }, + "href" : "https://api.spotify.com/v1/artists/0cmWgDlu9CwTgxPhf403hb", + "id" : "0cmWgDlu9CwTgxPhf403hb", + "name" : "Bonobo", + "type" : "artist", + "uri" : "spotify:artist:0cmWgDlu9CwTgxPhf403hb" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5m1RkwKeU7MV0Ni6PH2lPy" + }, + "href" : "https://api.spotify.com/v1/albums/5m1RkwKeU7MV0Ni6PH2lPy", + "id" : "5m1RkwKeU7MV0Ni6PH2lPy", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/3268ab4f15d8ee71d49706eebe0e0c629e0a4c98", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/9aeed9ef73911bbd3f55c69d240a291020ee1a9b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0830c560daa9e721882589d693c199784fe805fe", + "width" : 64 + } ], + "name" : "Black Sands", + "type" : "album", + "uri" : "spotify:album:5m1RkwKeU7MV0Ni6PH2lPy" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0cmWgDlu9CwTgxPhf403hb" + }, + "href" : "https://api.spotify.com/v1/artists/0cmWgDlu9CwTgxPhf403hb", + "id" : "0cmWgDlu9CwTgxPhf403hb", + "name" : "Bonobo", + "type" : "artist", + "uri" : "spotify:artist:0cmWgDlu9CwTgxPhf403hb" + }, { + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 288933, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0902402" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5hmf3hRQMaDIWuZT1zX3ue" + }, + "href" : "https://api.spotify.com/v1/tracks/5hmf3hRQMaDIWuZT1zX3ue", + "id" : "5hmf3hRQMaDIWuZT1zX3ue", + "name" : "The Keeper", + "popularity" : 52, + "preview_url" : "https://p.scdn.co/mp3-preview/2e3e092f82a802266d86516e58a96eb81a3abf7b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:5hmf3hRQMaDIWuZT1zX3ue" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3VRvi42U8SsiT4YKP5LNCB" + }, + "href" : "https://api.spotify.com/v1/artists/3VRvi42U8SsiT4YKP5LNCB", + "id" : "3VRvi42U8SsiT4YKP5LNCB", + "name" : "Extrawelt", + "type" : "artist", + "uri" : "spotify:artist:3VRvi42U8SsiT4YKP5LNCB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0qbIh7SrRC9iTHhNaAxZRU" + }, + "href" : "https://api.spotify.com/v1/albums/0qbIh7SrRC9iTHhNaAxZRU", + "id" : "0qbIh7SrRC9iTHhNaAxZRU", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/4e03568484e50594bbbfcc73d05de05b11480d9a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/ffd7156d3350184aae4510d815fd606c319741c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/7e438895ffba60f6cc0aa4b4d01cc4b3b9302fd6", + "width" : 64 + } ], + "name" : "Neuland EP", + "type" : "album", + "uri" : "spotify:album:0qbIh7SrRC9iTHhNaAxZRU" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3VRvi42U8SsiT4YKP5LNCB" + }, + "href" : "https://api.spotify.com/v1/artists/3VRvi42U8SsiT4YKP5LNCB", + "id" : "3VRvi42U8SsiT4YKP5LNCB", + "name" : "Extrawelt", + "type" : "artist", + "uri" : "spotify:artist:3VRvi42U8SsiT4YKP5LNCB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 365365, + "explicit" : false, + "external_ids" : { + "isrc" : "GB-4PD-09-00023" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7CnzVEMFbKhGPWLIjrHBlP" + }, + "href" : "https://api.spotify.com/v1/tracks/7CnzVEMFbKhGPWLIjrHBlP", + "id" : "7CnzVEMFbKhGPWLIjrHBlP", + "name" : "Neuland", + "popularity" : 31, + "preview_url" : "https://p.scdn.co/mp3-preview/3548cbcb44eb73189d8dcc7eddd690670262fd9f?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:7CnzVEMFbKhGPWLIjrHBlP" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3wWZpCNkn5AZAZT0Eu7zIs" + }, + "href" : "https://api.spotify.com/v1/albums/3wWZpCNkn5AZAZT0Eu7zIs", + "id" : "3wWZpCNkn5AZAZT0Eu7zIs", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/55a11f84a57f91866d2336043f71b72232c57ddf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/41f45b440e29abed3559d0cc8b3fad597aa38d60", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/151309a5bd5617dedd75d977240e468a90254d31", + "width" : 64 + } ], + "name" : "Into The Great Wide Yonder", + "type" : "album", + "uri" : "spotify:album:3wWZpCNkn5AZAZT0Eu7zIs" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 365706, + "explicit" : false, + "external_ids" : { + "isrc" : "DEL021070002" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3rDdnNq970pocRLPQ3nJIa" + }, + "href" : "https://api.spotify.com/v1/tracks/3rDdnNq970pocRLPQ3nJIa", + "id" : "3rDdnNq970pocRLPQ3nJIa", + "name" : "Sycamore Feeling", + "popularity" : 0, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3rDdnNq970pocRLPQ3nJIa" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6caPJFLv1wesmM7gwK1ACy" + }, + "href" : "https://api.spotify.com/v1/artists/6caPJFLv1wesmM7gwK1ACy", + "id" : "6caPJFLv1wesmM7gwK1ACy", + "name" : "Boris Brejcha", + "type" : "artist", + "uri" : "spotify:artist:6caPJFLv1wesmM7gwK1ACy" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0E807CRBmdfGNRcnXVymp3" + }, + "href" : "https://api.spotify.com/v1/albums/0E807CRBmdfGNRcnXVymp3", + "id" : "0E807CRBmdfGNRcnXVymp3", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/005f6d275cf497c7848a7d337518763d17a17395", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/b3e06bf57be5b0f8086a2ed78017ef421e822da7", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/fdf832be5b02d97b2d84024cfd77328b973ec3eb", + "width" : 64 + } ], + "name" : "Feuerfalter Special Edition", + "type" : "album", + "uri" : "spotify:album:0E807CRBmdfGNRcnXVymp3" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6caPJFLv1wesmM7gwK1ACy" + }, + "href" : "https://api.spotify.com/v1/artists/6caPJFLv1wesmM7gwK1ACy", + "id" : "6caPJFLv1wesmM7gwK1ACy", + "name" : "Boris Brejcha", + "type" : "artist", + "uri" : "spotify:artist:6caPJFLv1wesmM7gwK1ACy" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 539520, + "explicit" : false, + "external_ids" : { + "isrc" : "DEAZ31405756" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6BA2JM59JObFjHNvLK2KOg" + }, + "href" : "https://api.spotify.com/v1/tracks/6BA2JM59JObFjHNvLK2KOg", + "id" : "6BA2JM59JObFjHNvLK2KOg", + "name" : "Purple Noise", + "popularity" : 60, + "preview_url" : "https://p.scdn.co/mp3-preview/5597760dc9c14d0b0d9753d531872b4cb0487235?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 17, + "type" : "track", + "uri" : "spotify:track:6BA2JM59JObFjHNvLK2KOg" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/64kN9EkSTHYhda2FupL0KI" + }, + "href" : "https://api.spotify.com/v1/artists/64kN9EkSTHYhda2FupL0KI", + "id" : "64kN9EkSTHYhda2FupL0KI", + "name" : "Blawan", + "type" : "artist", + "uri" : "spotify:artist:64kN9EkSTHYhda2FupL0KI" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5nvCYyZiz05YgttQIBcOCq" + }, + "href" : "https://api.spotify.com/v1/albums/5nvCYyZiz05YgttQIBcOCq", + "id" : "5nvCYyZiz05YgttQIBcOCq", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a39ad12d10ac26184f83dbe1a45462ef8dc87e80", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/30bc689c3ac3a6cac4a4e8ac6a389b653e24ef96", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/ec40790104743b6851ed5fb50931bc815e974138", + "width" : 64 + } ], + "name" : "What You Do With What You Have", + "type" : "album", + "uri" : "spotify:album:5nvCYyZiz05YgttQIBcOCq" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/64kN9EkSTHYhda2FupL0KI" + }, + "href" : "https://api.spotify.com/v1/artists/64kN9EkSTHYhda2FupL0KI", + "id" : "64kN9EkSTHYhda2FupL0KI", + "name" : "Blawan", + "type" : "artist", + "uri" : "spotify:artist:64kN9EkSTHYhda2FupL0KI" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 392506, + "explicit" : false, + "external_ids" : { + "isrc" : "BEZ351100024" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0t3oUBYOToed4zgaIM74oY" + }, + "href" : "https://api.spotify.com/v1/tracks/0t3oUBYOToed4zgaIM74oY", + "id" : "0t3oUBYOToed4zgaIM74oY", + "name" : "What You Do With What You Have", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:0t3oUBYOToed4zgaIM74oY" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6PShODJkc5NEad8Bl6QWCG" + }, + "href" : "https://api.spotify.com/v1/artists/6PShODJkc5NEad8Bl6QWCG", + "id" : "6PShODJkc5NEad8Bl6QWCG", + "name" : "Liquid Hits", + "type" : "artist", + "uri" : "spotify:artist:6PShODJkc5NEad8Bl6QWCG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3vVidnh7A2e7GtoZ8DA2yP" + }, + "href" : "https://api.spotify.com/v1/albums/3vVidnh7A2e7GtoZ8DA2yP", + "id" : "3vVidnh7A2e7GtoZ8DA2yP", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/cae18f9ddd4996b0105c990194e54f686df65cba", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/bfa4281cc6a3ecc840dc092f09d3781b9e25eb65", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3c157711a7d3d908769b1f1da5d39604aa0bea71", + "width" : 64 + } ], + "name" : "Harder Than You Think (A Tribute to Public Enemy)", + "type" : "album", + "uri" : "spotify:album:3vVidnh7A2e7GtoZ8DA2yP" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6PShODJkc5NEad8Bl6QWCG" + }, + "href" : "https://api.spotify.com/v1/artists/6PShODJkc5NEad8Bl6QWCG", + "id" : "6PShODJkc5NEad8Bl6QWCG", + "name" : "Liquid Hits", + "type" : "artist", + "uri" : "spotify:artist:6PShODJkc5NEad8Bl6QWCG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 259317, + "explicit" : false, + "external_ids" : { + "isrc" : "FR6V80099528" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7I9a6FWSzF564KjOMZCOMT" + }, + "href" : "https://api.spotify.com/v1/tracks/7I9a6FWSzF564KjOMZCOMT", + "id" : "7I9a6FWSzF564KjOMZCOMT", + "name" : "Harder Than You Think - Instrumental Version", + "popularity" : 3, + "preview_url" : "https://p.scdn.co/mp3-preview/5e8ee50b9f6d54095434792660f9a3d98ab336dd?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:7I9a6FWSzF564KjOMZCOMT" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/43RyO0OROtB16n37UJtjSB" + }, + "href" : "https://api.spotify.com/v1/artists/43RyO0OROtB16n37UJtjSB", + "id" : "43RyO0OROtB16n37UJtjSB", + "name" : "Hermigervill", + "type" : "artist", + "uri" : "spotify:artist:43RyO0OROtB16n37UJtjSB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4ce7QXr37RhGixlK19a0AL" + }, + "href" : "https://api.spotify.com/v1/albums/4ce7QXr37RhGixlK19a0AL", + "id" : "4ce7QXr37RhGixlK19a0AL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2c856187d37bb10372116eabb47fc4088bdfe1a7", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/2e95a1ae063a9e9a62cdec39dd1949ccb2d16aa1", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/418a323d622aecf83013d2b4904b425ed4ddfe61", + "width" : 64 + } ], + "name" : "Plays More Icelandic Pop Classics", + "type" : "album", + "uri" : "spotify:album:4ce7QXr37RhGixlK19a0AL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/43RyO0OROtB16n37UJtjSB" + }, + "href" : "https://api.spotify.com/v1/artists/43RyO0OROtB16n37UJtjSB", + "id" : "43RyO0OROtB16n37UJtjSB", + "name" : "Hermigervill", + "type" : "artist", + "uri" : "spotify:artist:43RyO0OROtB16n37UJtjSB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 276000, + "explicit" : false, + "external_ids" : { + "isrc" : "ISV341100601" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5AAVYp7JCB3WrY0D6qjSJG" + }, + "href" : "https://api.spotify.com/v1/tracks/5AAVYp7JCB3WrY0D6qjSJG", + "id" : "5AAVYp7JCB3WrY0D6qjSJG", + "name" : "I Reykjavikurborg", + "popularity" : 16, + "preview_url" : "https://p.scdn.co/mp3-preview/a84204baaf2c41c1106ad9e1a24a247ce668ea5e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5AAVYp7JCB3WrY0D6qjSJG" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "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" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/74vgQmQX8dVxpw9zcPEFxE" + }, + "href" : "https://api.spotify.com/v1/albums/74vgQmQX8dVxpw9zcPEFxE", + "id" : "74vgQmQX8dVxpw9zcPEFxE", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d1895c23699cee906a915ccad4f29c6a31734f4b", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/874061620fb40d47a78c34b506b3521c0c4ff430", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/bcde36d2e12ae2f1fd5dd9995bfb9a744689154a", + "width" : 64 + } ], + "name" : "Swim", + "type" : "album", + "uri" : "spotify:album:74vgQmQX8dVxpw9zcPEFxE" + }, + "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" : [ ], + "disc_number" : 1, + "duration_ms" : 315506, + "explicit" : false, + "external_ids" : { + "isrc" : "DED621000414" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7xCIpKMNNbrWeIILyHTH1u" + }, + "href" : "https://api.spotify.com/v1/tracks/7xCIpKMNNbrWeIILyHTH1u", + "id" : "7xCIpKMNNbrWeIILyHTH1u", + "name" : "Odessa", + "popularity" : 7, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:7xCIpKMNNbrWeIILyHTH1u" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/66KBDVJnA6c0DjHeSZYaHb" + }, + "href" : "https://api.spotify.com/v1/albums/66KBDVJnA6c0DjHeSZYaHb", + "id" : "66KBDVJnA6c0DjHeSZYaHb", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/41e56c2d7de86b3015301ca0b7f0fb31244789eb", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/05df95aa7d44c91379eacea35e0f18ba2294cf5b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2a102de968c4ab67d8606e3b4bd1993b4d9931ca", + "width" : 64 + } ], + "name" : "Boss For Leader", + "type" : "album", + "uri" : "spotify:album:66KBDVJnA6c0DjHeSZYaHb" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 362586, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXKD0700202" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0I00u1IwnGQVguICUiCsAf" + }, + "href" : "https://api.spotify.com/v1/tracks/0I00u1IwnGQVguICUiCsAf", + "id" : "0I00u1IwnGQVguICUiCsAf", + "name" : "Sponsored By Destiny", + "popularity" : 38, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:0I00u1IwnGQVguICUiCsAf" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4ucW1LE5T7y7X4jlaKCeVo" + }, + "href" : "https://api.spotify.com/v1/artists/4ucW1LE5T7y7X4jlaKCeVo", + "id" : "4ucW1LE5T7y7X4jlaKCeVo", + "name" : "Dub FX", + "type" : "artist", + "uri" : "spotify:artist:4ucW1LE5T7y7X4jlaKCeVo" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3sgyFe5if8qDsnVhqI40XB" + }, + "href" : "https://api.spotify.com/v1/albums/3sgyFe5if8qDsnVhqI40XB", + "id" : "3sgyFe5if8qDsnVhqI40XB", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/dd9cd6cf8a3c50d319c8833ce4cada9fdbfd0a03", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/f92b5f60f53c466bcddb799bb29ab1a874ea79ac", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6eb7f1e58886b240669e3a9a5eb2e4b1489725b3", + "width" : 64 + } ], + "name" : "Everythinks a Ripple", + "type" : "album", + "uri" : "spotify:album:3sgyFe5if8qDsnVhqI40XB" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4ucW1LE5T7y7X4jlaKCeVo" + }, + "href" : "https://api.spotify.com/v1/artists/4ucW1LE5T7y7X4jlaKCeVo", + "id" : "4ucW1LE5T7y7X4jlaKCeVo", + "name" : "Dub FX", + "type" : "artist", + "uri" : "spotify:artist:4ucW1LE5T7y7X4jlaKCeVo" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 268000, + "explicit" : false, + "external_ids" : { + "isrc" : "TCABX1445029" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2iNc1WDSSQNjt2IkwVIfdV" + }, + "href" : "https://api.spotify.com/v1/tracks/2iNc1WDSSQNjt2IkwVIfdV", + "id" : "2iNc1WDSSQNjt2IkwVIfdV", + "name" : "Love Someone", + "popularity" : 0, + "preview_url" : null, + "track_number" : 8, + "type" : "track", + "uri" : "spotify:track:2iNc1WDSSQNjt2IkwVIfdV" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1xU878Z1QtBldR7ru9owdU" + }, + "href" : "https://api.spotify.com/v1/artists/1xU878Z1QtBldR7ru9owdU", + "id" : "1xU878Z1QtBldR7ru9owdU", + "name" : "Phoenix", + "type" : "artist", + "uri" : "spotify:artist:1xU878Z1QtBldR7ru9owdU" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6YXmQrXOjJoMheJ2IA5NqK" + }, + "href" : "https://api.spotify.com/v1/albums/6YXmQrXOjJoMheJ2IA5NqK", + "id" : "6YXmQrXOjJoMheJ2IA5NqK", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/dd50cf172806b09c1596579d8e921eb868c4d17c", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/554ac4de36701c9d9d1b0f75f2624f12e7086b72", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/181863c547a34cfe2d90f487b20e4902f5daad92", + "width" : 64 + } ], + "name" : "Wolfgang Amadeus Phoenix", + "type" : "album", + "uri" : "spotify:album:6YXmQrXOjJoMheJ2IA5NqK" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1xU878Z1QtBldR7ru9owdU" + }, + "href" : "https://api.spotify.com/v1/artists/1xU878Z1QtBldR7ru9owdU", + "id" : "1xU878Z1QtBldR7ru9owdU", + "name" : "Phoenix", + "type" : "artist", + "uri" : "spotify:artist:1xU878Z1QtBldR7ru9owdU" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 193106, + "explicit" : false, + "external_ids" : { + "isrc" : "FR31Q0900002" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5JtPGzRgrWxkXX9LoROq3d" + }, + "href" : "https://api.spotify.com/v1/tracks/5JtPGzRgrWxkXX9LoROq3d", + "id" : "5JtPGzRgrWxkXX9LoROq3d", + "name" : "1901", + "popularity" : 69, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:5JtPGzRgrWxkXX9LoROq3d" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3YRLUjgMJ1xg1TIcknIxlv" + }, + "href" : "https://api.spotify.com/v1/artists/3YRLUjgMJ1xg1TIcknIxlv", + "id" : "3YRLUjgMJ1xg1TIcknIxlv", + "name" : "Rampue", + "type" : "artist", + "uri" : "spotify:artist:3YRLUjgMJ1xg1TIcknIxlv" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6ptfe9eGrxnbp4QHrOQcRc" + }, + "href" : "https://api.spotify.com/v1/albums/6ptfe9eGrxnbp4QHrOQcRc", + "id" : "6ptfe9eGrxnbp4QHrOQcRc", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0e54f3799adfe56df590cf7e09c8d9c011b93b6f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/17cdb547a8dd4b6b2e1134ade8ee7ed8d8002977", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/314b5880f003e3393f3634cde97244ada75ac88a", + "width" : 64 + } ], + "name" : "Sonne Park und Sterni", + "type" : "album", + "uri" : "spotify:album:6ptfe9eGrxnbp4QHrOQcRc" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3YRLUjgMJ1xg1TIcknIxlv" + }, + "href" : "https://api.spotify.com/v1/artists/3YRLUjgMJ1xg1TIcknIxlv", + "id" : "3YRLUjgMJ1xg1TIcknIxlv", + "name" : "Rampue", + "type" : "artist", + "uri" : "spotify:artist:3YRLUjgMJ1xg1TIcknIxlv" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 326110, + "explicit" : false, + "external_ids" : { + "isrc" : "DEBT91200234" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4Jkr2JeE7ParkcvWSz4GkK" + }, + "href" : "https://api.spotify.com/v1/tracks/4Jkr2JeE7ParkcvWSz4GkK", + "id" : "4Jkr2JeE7ParkcvWSz4GkK", + "name" : "Sonne Park und Sterni", + "popularity" : 55, + "preview_url" : "https://p.scdn.co/mp3-preview/72dfb8686c445c7ed40c59bb267fbddeb50fba00?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:4Jkr2JeE7ParkcvWSz4GkK" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6yixHaosAl3aQfTRAQyPK5" + }, + "href" : "https://api.spotify.com/v1/albums/6yixHaosAl3aQfTRAQyPK5", + "id" : "6yixHaosAl3aQfTRAQyPK5", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2638e595d88ac068251879695aa00dd4a9ab948f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c55e612da0750dedcbc081fbe52d7c8d8590ff6e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/343f9325cebc2a6b78476b00ab219d4a9e8cbadc", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 16: The Sweet Sixteen Issue (Deluxe Edition)", + "type" : "album", + "uri" : "spotify:album:6yixHaosAl3aQfTRAQyPK5" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/76MojWoWNPzzKdrEspy5sl" + }, + "href" : "https://api.spotify.com/v1/artists/76MojWoWNPzzKdrEspy5sl", + "id" : "76MojWoWNPzzKdrEspy5sl", + "name" : "Nimmo", + "type" : "artist", + "uri" : "spotify:artist:76MojWoWNPzzKdrEspy5sl" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 212613, + "explicit" : false, + "external_ids" : { + "isrc" : "GBARL1400797" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5jVaI6lNuQnSxU7pAlAIVX" + }, + "href" : "https://api.spotify.com/v1/tracks/5jVaI6lNuQnSxU7pAlAIVX", + "id" : "5jVaI6lNuQnSxU7pAlAIVX", + "name" : "Others (Original)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 13, + "type" : "track", + "uri" : "spotify:track:5jVaI6lNuQnSxU7pAlAIVX" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/36myF90V1AoFHdTgOmSw2I" + }, + "href" : "https://api.spotify.com/v1/artists/36myF90V1AoFHdTgOmSw2I", + "id" : "36myF90V1AoFHdTgOmSw2I", + "name" : "Harouki Zombi", + "type" : "artist", + "uri" : "spotify:artist:36myF90V1AoFHdTgOmSw2I" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6mMmNUONllLIP3kbIMdfAp" + }, + "href" : "https://api.spotify.com/v1/albums/6mMmNUONllLIP3kbIMdfAp", + "id" : "6mMmNUONllLIP3kbIMdfAp", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/e53477311bddaa6d8157ae71b84626203e777842", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/10ae953cbe56ba278b46267a34ee3a478365054e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/a945e1afe886a387d33c3f5db82c0b2fed483fdb", + "width" : 64 + } ], + "name" : "Objet Petit A", + "type" : "album", + "uri" : "spotify:album:6mMmNUONllLIP3kbIMdfAp" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/36myF90V1AoFHdTgOmSw2I" + }, + "href" : "https://api.spotify.com/v1/artists/36myF90V1AoFHdTgOmSw2I", + "id" : "36myF90V1AoFHdTgOmSw2I", + "name" : "Harouki Zombi", + "type" : "artist", + "uri" : "spotify:artist:36myF90V1AoFHdTgOmSw2I" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 177720, + "explicit" : false, + "external_ids" : { + "isrc" : "US3R41224901" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5dVN8V1uVpe0oxmc0RtIX0" + }, + "href" : "https://api.spotify.com/v1/tracks/5dVN8V1uVpe0oxmc0RtIX0", + "id" : "5dVN8V1uVpe0oxmc0RtIX0", + "name" : "Objet Petit A", + "popularity" : 8, + "preview_url" : "https://p.scdn.co/mp3-preview/ce3ab0a72927cf14afd85ad6723322f0f283883c?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5dVN8V1uVpe0oxmc0RtIX0" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2L3kwZFd16zjHz9a5kEPAm" + }, + "href" : "https://api.spotify.com/v1/artists/2L3kwZFd16zjHz9a5kEPAm", + "id" : "2L3kwZFd16zjHz9a5kEPAm", + "name" : "Ane Brun", + "type" : "artist", + "uri" : "spotify:artist:2L3kwZFd16zjHz9a5kEPAm" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4oeWnJQBB1vbi7bGvHBRFt" + }, + "href" : "https://api.spotify.com/v1/albums/4oeWnJQBB1vbi7bGvHBRFt", + "id" : "4oeWnJQBB1vbi7bGvHBRFt", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7d692a72b9eec22613f3e18b4535ccc4bf32d9e6", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/63ee0bf68a7bca10eeaa52f6022d29ff8d492f35", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/8be48852677285ac67aed618ac59447d98ee9654", + "width" : 64 + } ], + "name" : "It All Starts With One", + "type" : "album", + "uri" : "spotify:album:4oeWnJQBB1vbi7bGvHBRFt" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2L3kwZFd16zjHz9a5kEPAm" + }, + "href" : "https://api.spotify.com/v1/artists/2L3kwZFd16zjHz9a5kEPAm", + "id" : "2L3kwZFd16zjHz9a5kEPAm", + "name" : "Ane Brun", + "type" : "artist", + "uri" : "spotify:artist:2L3kwZFd16zjHz9a5kEPAm" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 192133, + "explicit" : false, + "external_ids" : { + "isrc" : "SEVVQ1100104" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5CwGF9xlJAA3CPcGpHcwRp" + }, + "href" : "https://api.spotify.com/v1/tracks/5CwGF9xlJAA3CPcGpHcwRp", + "id" : "5CwGF9xlJAA3CPcGpHcwRp", + "name" : "Do You Remember", + "popularity" : 18, + "preview_url" : "https://p.scdn.co/mp3-preview/565a2091563b082b7f4906e458706692500acd92?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:5CwGF9xlJAA3CPcGpHcwRp" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Obxlsc4O0Q2Q36ugS7fbN" + }, + "href" : "https://api.spotify.com/v1/artists/4Obxlsc4O0Q2Q36ugS7fbN", + "id" : "4Obxlsc4O0Q2Q36ugS7fbN", + "name" : "Manfred Mann Chapter Three", + "type" : "artist", + "uri" : "spotify:artist:4Obxlsc4O0Q2Q36ugS7fbN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5hqZavK8YnObFMumo6Tmwz" + }, + "href" : "https://api.spotify.com/v1/albums/5hqZavK8YnObFMumo6Tmwz", + "id" : "5hqZavK8YnObFMumo6Tmwz", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ead35d652e63aece28d9f2f6f71127a71a7d17db", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/ea07f863b4c31ef3fb834c23896d94dfe1e42b42", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/eb8fac9417287b01fa749b381b484497f9c21009", + "width" : 64 + } ], + "name" : "Chapter III Vol 1", + "type" : "album", + "uri" : "spotify:album:5hqZavK8YnObFMumo6Tmwz" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Obxlsc4O0Q2Q36ugS7fbN" + }, + "href" : "https://api.spotify.com/v1/artists/4Obxlsc4O0Q2Q36ugS7fbN", + "id" : "4Obxlsc4O0Q2Q36ugS7fbN", + "name" : "Manfred Mann Chapter Three", + "type" : "artist", + "uri" : "spotify:artist:4Obxlsc4O0Q2Q36ugS7fbN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 214933, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBXM6910007" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2E0tlDzvMmszn2DGNmFZDF" + }, + "href" : "https://api.spotify.com/v1/tracks/2E0tlDzvMmszn2DGNmFZDF", + "id" : "2E0tlDzvMmszn2DGNmFZDF", + "name" : "One Way Glass", + "popularity" : 21, + "preview_url" : "https://p.scdn.co/mp3-preview/e45baefd71a9b8124d42eb8021b68a6f4bce452b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:2E0tlDzvMmszn2DGNmFZDF" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1rnogXkMBXDVzDPFSq4dDe" + }, + "href" : "https://api.spotify.com/v1/albums/1rnogXkMBXDVzDPFSq4dDe", + "id" : "1rnogXkMBXDVzDPFSq4dDe", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2d70decc3c9e0fab3d565b57366a083143e729d8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/8be8ebe6a8e236fe5a432d3f4d86461233e2613e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3ea629f47ae31a16bb156dab663ab8b348870c2d", + "width" : 64 + } ], + "name" : "Psychic", + "type" : "album", + "uri" : "spotify:album:1rnogXkMBXDVzDPFSq4dDe" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 289840, + "explicit" : false, + "external_ids" : { + "isrc" : "USMTD1303939" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4mhfCJJiCJoe1ZPLjvY7TX" + }, + "href" : "https://api.spotify.com/v1/tracks/4mhfCJJiCJoe1ZPLjvY7TX", + "id" : "4mhfCJJiCJoe1ZPLjvY7TX", + "name" : "Paper Trails", + "popularity" : 38, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4mhfCJJiCJoe1ZPLjvY7TX" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2CKaDZ1Yo8YnWega9IeUzB" + }, + "href" : "https://api.spotify.com/v1/artists/2CKaDZ1Yo8YnWega9IeUzB", + "id" : "2CKaDZ1Yo8YnWega9IeUzB", + "name" : "Booka Shade", + "type" : "artist", + "uri" : "spotify:artist:2CKaDZ1Yo8YnWega9IeUzB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0HC9kNPpDZucPwKXK0Kxcn" + }, + "href" : "https://api.spotify.com/v1/albums/0HC9kNPpDZucPwKXK0Kxcn", + "id" : "0HC9kNPpDZucPwKXK0Kxcn", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/108621c32f357262c2a35e4f497be892259b91c7", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/af92f779ec525a5d535d4e7318a0b48de8d20cf8", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/cc9d1aed7510678813be18edab5d38161cc637b9", + "width" : 64 + } ], + "name" : "Movements", + "type" : "album", + "uri" : "spotify:album:0HC9kNPpDZucPwKXK0Kxcn" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2CKaDZ1Yo8YnWega9IeUzB" + }, + "href" : "https://api.spotify.com/v1/artists/2CKaDZ1Yo8YnWega9IeUzB", + "id" : "2CKaDZ1Yo8YnWega9IeUzB", + "name" : "Booka Shade", + "type" : "artist", + "uri" : "spotify:artist:2CKaDZ1Yo8YnWega9IeUzB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 300266, + "explicit" : false, + "external_ids" : { + "isrc" : "DEBE70500175" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/26fwlVGkISUr5P91hAeTW8" + }, + "href" : "https://api.spotify.com/v1/tracks/26fwlVGkISUr5P91hAeTW8", + "id" : "26fwlVGkISUr5P91hAeTW8", + "name" : "Body Language - Interpretation", + "popularity" : 8, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:26fwlVGkISUr5P91hAeTW8" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5Hsw2iSwkn9LWgWGruK4Xx" + }, + "href" : "https://api.spotify.com/v1/albums/5Hsw2iSwkn9LWgWGruK4Xx", + "id" : "5Hsw2iSwkn9LWgWGruK4Xx", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/e7d29534a44102cf8720816960ecc39bcaa5dd10", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/f4c33566b079538ffc721c5671860f89a32b247f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/bcfd03129b23fc33255b416fcf09360ac7784c20", + "width" : 64 + } ], + "name" : "The Last Resort", + "type" : "album", + "uri" : "spotify:album:5Hsw2iSwkn9LWgWGruK4Xx" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 477043, + "explicit" : false, + "external_ids" : { + "isrc" : "DEL020520022" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2AA4SYAbnlhst15h2hwVzo" + }, + "href" : "https://api.spotify.com/v1/tracks/2AA4SYAbnlhst15h2hwVzo", + "id" : "2AA4SYAbnlhst15h2hwVzo", + "name" : "Chameleon", + "popularity" : 6, + "preview_url" : null, + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:2AA4SYAbnlhst15h2hwVzo" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0Ro37CuTGSat7ly803Ls2C" + }, + "href" : "https://api.spotify.com/v1/albums/0Ro37CuTGSat7ly803Ls2C", + "id" : "0Ro37CuTGSat7ly803Ls2C", + "images" : [ { + "height" : 631, + "url" : "https://i.scdn.co/image/c85c7f090f9d172c35695be09edd8d29856fe744", + "width" : 640 + }, { + "height" : 296, + "url" : "https://i.scdn.co/image/887a7baf74a2b3e25083834f7ce8bb11b0bf9bd4", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/5f51f42fc8492c25f3199f5000b39cb8d59a6676", + "width" : 64 + } ], + "name" : "Rocknrolla - Original Soundtrack (OST)", + "type" : "album", + "uri" : "spotify:album:0Ro37CuTGSat7ly803Ls2C" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2g3PKH7Z1Ofn5oGR6oDjLy" + }, + "href" : "https://api.spotify.com/v1/artists/2g3PKH7Z1Ofn5oGR6oDjLy", + "id" : "2g3PKH7Z1Ofn5oGR6oDjLy", + "name" : "The Sonics", + "type" : "artist", + "uri" : "spotify:artist:2g3PKH7Z1Ofn5oGR6oDjLy" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 156920, + "explicit" : false, + "external_ids" : { + "isrc" : "GB03A0700019" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5HPXoKxc1Dx44KgC7oNxtB" + }, + "href" : "https://api.spotify.com/v1/tracks/5HPXoKxc1Dx44KgC7oNxtB", + "id" : "5HPXoKxc1Dx44KgC7oNxtB", + "name" : "Have Love Will Travel", + "popularity" : 4, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:5HPXoKxc1Dx44KgC7oNxtB" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3hyGGjxu73JuzBa757H6R5" + }, + "href" : "https://api.spotify.com/v1/artists/3hyGGjxu73JuzBa757H6R5", + "id" : "3hyGGjxu73JuzBa757H6R5", + "name" : "The Mountain Goats", + "type" : "artist", + "uri" : "spotify:artist:3hyGGjxu73JuzBa757H6R5" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6umsQ5NWNpCqxGYA80a9V0" + }, + "href" : "https://api.spotify.com/v1/albums/6umsQ5NWNpCqxGYA80a9V0", + "id" : "6umsQ5NWNpCqxGYA80a9V0", + "images" : [ { + "height" : 546, + "url" : "https://i.scdn.co/image/1ee8b892442eeb0dcb166e77295dad2b43a89c78", + "width" : 640 + }, { + "height" : 256, + "url" : "https://i.scdn.co/image/3899c131bdc827decb9111e8ad714178afd5677d", + "width" : 300 + }, { + "height" : 55, + "url" : "https://i.scdn.co/image/f3a390151ba586591d2863a3e710161f294f3ee9", + "width" : 64 + } ], + "name" : "Tallahassee", + "type" : "album", + "uri" : "spotify:album:6umsQ5NWNpCqxGYA80a9V0" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3hyGGjxu73JuzBa757H6R5" + }, + "href" : "https://api.spotify.com/v1/artists/3hyGGjxu73JuzBa757H6R5", + "id" : "3hyGGjxu73JuzBa757H6R5", + "name" : "The Mountain Goats", + "type" : "artist", + "uri" : "spotify:artist:3hyGGjxu73JuzBa757H6R5" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 168306, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAFL0101077" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6KyyTheVmJZsNdqwOj0MR3" + }, + "href" : "https://api.spotify.com/v1/tracks/6KyyTheVmJZsNdqwOj0MR3", + "id" : "6KyyTheVmJZsNdqwOj0MR3", + "name" : "No Children", + "popularity" : 1, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:6KyyTheVmJZsNdqwOj0MR3" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2IBF8tLME76MIe1HwRL42X" + }, + "href" : "https://api.spotify.com/v1/artists/2IBF8tLME76MIe1HwRL42X", + "id" : "2IBF8tLME76MIe1HwRL42X", + "name" : "Forest Fire", + "type" : "artist", + "uri" : "spotify:artist:2IBF8tLME76MIe1HwRL42X" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1SKLJR68CkKGKd0lGo7ZjZ" + }, + "href" : "https://api.spotify.com/v1/albums/1SKLJR68CkKGKd0lGo7ZjZ", + "id" : "1SKLJR68CkKGKd0lGo7ZjZ", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a49607e1d764492aeff31205bb1c1520219dda36", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/af6e3e5de67f258338f47fcb5544d3cfc819677d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/9df7695a8cdba82bafce59955f104151d9ca4088", + "width" : 64 + } ], + "name" : "Staring At the X", + "type" : "album", + "uri" : "spotify:album:1SKLJR68CkKGKd0lGo7ZjZ" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2IBF8tLME76MIe1HwRL42X" + }, + "href" : "https://api.spotify.com/v1/artists/2IBF8tLME76MIe1HwRL42X", + "id" : "2IBF8tLME76MIe1HwRL42X", + "name" : "Forest Fire", + "type" : "artist", + "uri" : "spotify:artist:2IBF8tLME76MIe1HwRL42X" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 250360, + "explicit" : false, + "external_ids" : { + "isrc" : "GBDCA1101885" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0Uw4Olkd7fP4nVMCNjAPRI" + }, + "href" : "https://api.spotify.com/v1/tracks/0Uw4Olkd7fP4nVMCNjAPRI", + "id" : "0Uw4Olkd7fP4nVMCNjAPRI", + "name" : "Future Shadows", + "popularity" : 9, + "preview_url" : "https://p.scdn.co/mp3-preview/bcd165517c1b180dacc9f1e6141b59ca0952f29a?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:0Uw4Olkd7fP4nVMCNjAPRI" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT" + }, + "href" : "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT", + "id" : "3eqjTLE0HfPfh78zjh6TqT", + "name" : "Bruce Springsteen", + "type" : "artist", + "uri" : "spotify:artist:3eqjTLE0HfPfh78zjh6TqT" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4yIwwX5ldkzAG2nZvbBGZ0" + }, + "href" : "https://api.spotify.com/v1/albums/4yIwwX5ldkzAG2nZvbBGZ0", + "id" : "4yIwwX5ldkzAG2nZvbBGZ0", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a7b691b9f7080778b60a6542bfacc06683bef0d8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/51b6c5309fdc260491327138135824f06d28cb3b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0907ff02f98092f0004575a6843efe71f9aaf191", + "width" : 64 + } ], + "name" : "The Ghost Of Tom Joad", + "type" : "album", + "uri" : "spotify:album:4yIwwX5ldkzAG2nZvbBGZ0" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT" + }, + "href" : "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT", + "id" : "3eqjTLE0HfPfh78zjh6TqT", + "name" : "Bruce Springsteen", + "type" : "artist", + "uri" : "spotify:artist:3eqjTLE0HfPfh78zjh6TqT" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 263466, + "explicit" : false, + "external_ids" : { + "isrc" : "USSM19501784" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4DvKPM3hBAyVOpuQOrIA2D" + }, + "href" : "https://api.spotify.com/v1/tracks/4DvKPM3hBAyVOpuQOrIA2D", + "id" : "4DvKPM3hBAyVOpuQOrIA2D", + "name" : "The Ghost of Tom Joad", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:4DvKPM3hBAyVOpuQOrIA2D" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6Ej7FjLCm6jnolLCBmyRo6" + }, + "href" : "https://api.spotify.com/v1/artists/6Ej7FjLCm6jnolLCBmyRo6", + "id" : "6Ej7FjLCm6jnolLCBmyRo6", + "name" : "Alec Ounsworth", + "type" : "artist", + "uri" : "spotify:artist:6Ej7FjLCm6jnolLCBmyRo6" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/55PQiaDoUJWr8SkSszjiYs" + }, + "href" : "https://api.spotify.com/v1/albums/55PQiaDoUJWr8SkSszjiYs", + "id" : "55PQiaDoUJWr8SkSszjiYs", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/b21b83dd63aa6fd26b550cdfe6cac1c88bb9672f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/f68b163e31d76257561a448b1425730dd5355d22", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/639d7170ef6bb955aca908c40c14f4720a699be5", + "width" : 64 + } ], + "name" : "Mo Beauty", + "type" : "album", + "uri" : "spotify:album:55PQiaDoUJWr8SkSszjiYs" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6Ej7FjLCm6jnolLCBmyRo6" + }, + "href" : "https://api.spotify.com/v1/artists/6Ej7FjLCm6jnolLCBmyRo6", + "id" : "6Ej7FjLCm6jnolLCBmyRo6", + "name" : "Alec Ounsworth", + "type" : "artist", + "uri" : "spotify:artist:6Ej7FjLCm6jnolLCBmyRo6" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 237293, + "explicit" : false, + "external_ids" : { + "isrc" : "USEP40924004" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4iCkntewBG6lHDlBaNhcUc" + }, + "href" : "https://api.spotify.com/v1/tracks/4iCkntewBG6lHDlBaNhcUc", + "id" : "4iCkntewBG6lHDlBaNhcUc", + "name" : "That is not my Home (after Bruegel)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4iCkntewBG6lHDlBaNhcUc" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6QtGlUje9TIkLrgPZrESuk" + }, + "href" : "https://api.spotify.com/v1/artists/6QtGlUje9TIkLrgPZrESuk", + "id" : "6QtGlUje9TIkLrgPZrESuk", + "name" : "Steve Miller Band", + "type" : "artist", + "uri" : "spotify:artist:6QtGlUje9TIkLrgPZrESuk" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7xiJjYVjV7YaPyBBxCqstQ" + }, + "href" : "https://api.spotify.com/v1/albums/7xiJjYVjV7YaPyBBxCqstQ", + "id" : "7xiJjYVjV7YaPyBBxCqstQ", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f2ff5d2a72b688ea16147566391eca732c77c612", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/02dba4d29414b869420b00445390b3b9d804df63", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0a56d3d34a6a1702fdaf39c09fdecbf5eba567df", + "width" : 64 + } ], + "name" : "Fly Like An Eagle", + "type" : "album", + "uri" : "spotify:album:7xiJjYVjV7YaPyBBxCqstQ" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6QtGlUje9TIkLrgPZrESuk" + }, + "href" : "https://api.spotify.com/v1/artists/6QtGlUje9TIkLrgPZrESuk", + "id" : "6QtGlUje9TIkLrgPZrESuk", + "name" : "Steve Miller Band", + "type" : "artist", + "uri" : "spotify:artist:6QtGlUje9TIkLrgPZrESuk" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 194400, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBLG7600321" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4Dm5q3TTxAUvy4wW6zFPHU" + }, + "href" : "https://api.spotify.com/v1/tracks/4Dm5q3TTxAUvy4wW6zFPHU", + "id" : "4Dm5q3TTxAUvy4wW6zFPHU", + "name" : "Serenade", + "popularity" : 0, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4Dm5q3TTxAUvy4wW6zFPHU" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0vJmThhnQJqHVDMkQtYhF5" + }, + "href" : "https://api.spotify.com/v1/artists/0vJmThhnQJqHVDMkQtYhF5", + "id" : "0vJmThhnQJqHVDMkQtYhF5", + "name" : "Electric Blanket", + "type" : "artist", + "uri" : "spotify:artist:0vJmThhnQJqHVDMkQtYhF5" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2Uy0d8sjDCqfJyTRX0nA6A" + }, + "href" : "https://api.spotify.com/v1/albums/2Uy0d8sjDCqfJyTRX0nA6A", + "id" : "2Uy0d8sjDCqfJyTRX0nA6A", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/12cbe6ba996755f869bc44367a80f4c63686fefe", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/85c5c8153a7cbf23a6166e1308a0fb094b6d776b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/543af2d5aca1877a45667195451e1d0f90cf6dde", + "width" : 64 + } ], + "name" : "Wuthering Heights", + "type" : "album", + "uri" : "spotify:album:2Uy0d8sjDCqfJyTRX0nA6A" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0vJmThhnQJqHVDMkQtYhF5" + }, + "href" : "https://api.spotify.com/v1/artists/0vJmThhnQJqHVDMkQtYhF5", + "id" : "0vJmThhnQJqHVDMkQtYhF5", + "name" : "Electric Blanket", + "type" : "artist", + "uri" : "spotify:artist:0vJmThhnQJqHVDMkQtYhF5" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 229893, + "explicit" : false, + "external_ids" : { + "isrc" : "CH4131100507" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4ccbxEaaedll3qiOHZL1uP" + }, + "href" : "https://api.spotify.com/v1/tracks/4ccbxEaaedll3qiOHZL1uP", + "id" : "4ccbxEaaedll3qiOHZL1uP", + "name" : "Wuthering Heights", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:4ccbxEaaedll3qiOHZL1uP" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3yEnArbNHyTCwMRvD9SBy4" + }, + "href" : "https://api.spotify.com/v1/artists/3yEnArbNHyTCwMRvD9SBy4", + "id" : "3yEnArbNHyTCwMRvD9SBy4", + "name" : "Wolfmother", + "type" : "artist", + "uri" : "spotify:artist:3yEnArbNHyTCwMRvD9SBy4" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0jjNb79VYqLY21IjyWKsWe" + }, + "href" : "https://api.spotify.com/v1/albums/0jjNb79VYqLY21IjyWKsWe", + "id" : "0jjNb79VYqLY21IjyWKsWe", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/41d7e97a1ff198c76e3753897c3063f71211ecb4", + "width" : 638 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/54a1ebbe7ae6208acf19f5169dd9c9ac2490665f", + "width" : 299 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d371ad31864ec990afd95ee23e7ab72666f7d07c", + "width" : 64 + } ], + "name" : "Wolfmother", + "type" : "album", + "uri" : "spotify:album:0jjNb79VYqLY21IjyWKsWe" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3yEnArbNHyTCwMRvD9SBy4" + }, + "href" : "https://api.spotify.com/v1/artists/3yEnArbNHyTCwMRvD9SBy4", + "id" : "3yEnArbNHyTCwMRvD9SBy4", + "name" : "Wolfmother", + "type" : "artist", + "uri" : "spotify:artist:3yEnArbNHyTCwMRvD9SBy4" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 280466, + "explicit" : false, + "external_ids" : { + "isrc" : "AUUM70500115" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4juq76lIar8YWOLpYMXUAG" + }, + "href" : "https://api.spotify.com/v1/tracks/4juq76lIar8YWOLpYMXUAG", + "id" : "4juq76lIar8YWOLpYMXUAG", + "name" : "Joker And The Thief", + "popularity" : 63, + "preview_url" : "https://p.scdn.co/mp3-preview/b47ebb3dc946f03c445e7a554ba15c11fd477bee?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:4juq76lIar8YWOLpYMXUAG" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/47JQuzfAluqS3qvTo4jqsG" + }, + "href" : "https://api.spotify.com/v1/artists/47JQuzfAluqS3qvTo4jqsG", + "id" : "47JQuzfAluqS3qvTo4jqsG", + "name" : "Reefer Decree", + "type" : "artist", + "uri" : "spotify:artist:47JQuzfAluqS3qvTo4jqsG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5cXObqjNjq3c6KVGKoz4fK" + }, + "href" : "https://api.spotify.com/v1/albums/5cXObqjNjq3c6KVGKoz4fK", + "id" : "5cXObqjNjq3c6KVGKoz4fK", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/76b2a059b0d16734aca154882b1875e3eab7b180", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3632438e99aff83bcd00e01aee1efc3ac48bffa3", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/ad1b46b423a2133489bc8dd0ca94ec19662d564a", + "width" : 64 + } ], + "name" : "Ice Age", + "type" : "album", + "uri" : "spotify:album:5cXObqjNjq3c6KVGKoz4fK" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/47JQuzfAluqS3qvTo4jqsG" + }, + "href" : "https://api.spotify.com/v1/artists/47JQuzfAluqS3qvTo4jqsG", + "id" : "47JQuzfAluqS3qvTo4jqsG", + "name" : "Reefer Decree", + "type" : "artist", + "uri" : "spotify:artist:47JQuzfAluqS3qvTo4jqsG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 412593, + "explicit" : false, + "external_ids" : { + "isrc" : "DKZVA1052302" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4xIga716AAWTBVCrWtuWpQ" + }, + "href" : "https://api.spotify.com/v1/tracks/4xIga716AAWTBVCrWtuWpQ", + "id" : "4xIga716AAWTBVCrWtuWpQ", + "name" : "Kongasm - Original", + "popularity" : 3, + "preview_url" : "https://p.scdn.co/mp3-preview/3c92d3350d945d4626f01db32896c71d14c8b5c3?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:4xIga716AAWTBVCrWtuWpQ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/775nfRVFPVu7WSsIju6ipJ" + }, + "href" : "https://api.spotify.com/v1/albums/775nfRVFPVu7WSsIju6ipJ", + "id" : "775nfRVFPVu7WSsIju6ipJ", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/11d3dbdb882769e81b04b5a135f545789f616037", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/27a020a51239c5317e90af820f08c9a616643bff", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/f8d0eb87d8e4a9aaee7e788f18d825ff50e0e65e", + "width" : 64 + } ], + "name" : "Radiodread", + "type" : "album", + "uri" : "spotify:album:775nfRVFPVu7WSsIju6ipJ" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7enBrBojgBJuPPdqTq4Z5F" + }, + "href" : "https://api.spotify.com/v1/artists/7enBrBojgBJuPPdqTq4Z5F", + "id" : "7enBrBojgBJuPPdqTq4Z5F", + "name" : "Citizen Cope", + "type" : "artist", + "uri" : "spotify:artist:7enBrBojgBJuPPdqTq4Z5F" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 288080, + "explicit" : false, + "external_ids" : { + "isrc" : "US4CL0610006" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2nTcHYwkqK6NM54OExjDEi" + }, + "href" : "https://api.spotify.com/v1/tracks/2nTcHYwkqK6NM54OExjDEi", + "id" : "2nTcHYwkqK6NM54OExjDEi", + "name" : "Karma Police", + "popularity" : 53, + "preview_url" : "https://p.scdn.co/mp3-preview/7ce925daf25cb78617518114ba535c73430a46bf?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:2nTcHYwkqK6NM54OExjDEi" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/04XfL2RkXRmQa2KEyAM0RF" + }, + "href" : "https://api.spotify.com/v1/artists/04XfL2RkXRmQa2KEyAM0RF", + "id" : "04XfL2RkXRmQa2KEyAM0RF", + "name" : "Alexander", + "type" : "artist", + "uri" : "spotify:artist:04XfL2RkXRmQa2KEyAM0RF" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/77e5pOg4N7jT3tjhBkA6Op" + }, + "href" : "https://api.spotify.com/v1/albums/77e5pOg4N7jT3tjhBkA6Op", + "id" : "77e5pOg4N7jT3tjhBkA6Op", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/8b3947a3a52dc59d3a6b9b7bc82ec0ecaa1d1758", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/ff834474f3e4e2845cbf469fd4e99c6c071b79bf", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/a50f0077ab6f776a0a79185e026d08fc92f1648d", + "width" : 64 + } ], + "name" : "Alexander", + "type" : "album", + "uri" : "spotify:album:77e5pOg4N7jT3tjhBkA6Op" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/04XfL2RkXRmQa2KEyAM0RF" + }, + "href" : "https://api.spotify.com/v1/artists/04XfL2RkXRmQa2KEyAM0RF", + "id" : "04XfL2RkXRmQa2KEyAM0RF", + "name" : "Alexander", + "type" : "artist", + "uri" : "spotify:artist:04XfL2RkXRmQa2KEyAM0RF" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 260923, + "explicit" : false, + "external_ids" : { + "isrc" : "USVR91165603" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4R8rN5XAQSAhzunX84Gr1k" + }, + "href" : "https://api.spotify.com/v1/tracks/4R8rN5XAQSAhzunX84Gr1k", + "id" : "4R8rN5XAQSAhzunX84Gr1k", + "name" : "Truth", + "popularity" : 56, + "preview_url" : "https://p.scdn.co/mp3-preview/c56b398eb502c95f01f780d47b7b8fbced41ac62?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:4R8rN5XAQSAhzunX84Gr1k" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/78xUyw6FkVZrRAtziFdtdu" + }, + "href" : "https://api.spotify.com/v1/artists/78xUyw6FkVZrRAtziFdtdu", + "id" : "78xUyw6FkVZrRAtziFdtdu", + "name" : "The Roots", + "type" : "artist", + "uri" : "spotify:artist:78xUyw6FkVZrRAtziFdtdu" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0cwlEeMEkvdoiPNJxlzHtI" + }, + "href" : "https://api.spotify.com/v1/albums/0cwlEeMEkvdoiPNJxlzHtI", + "id" : "0cwlEeMEkvdoiPNJxlzHtI", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f5d864dcad5254b2eb158573e7750027dc385ab5", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5535e08a4013b074f4d2ad3f1442bb88eee943c9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/ee6c7cd1170fa977a0fdb630c285517c919b48cb", + "width" : 64 + } ], + "name" : "Undun", + "type" : "album", + "uri" : "spotify:album:0cwlEeMEkvdoiPNJxlzHtI" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/78xUyw6FkVZrRAtziFdtdu" + }, + "href" : "https://api.spotify.com/v1/artists/78xUyw6FkVZrRAtziFdtdu", + "id" : "78xUyw6FkVZrRAtziFdtdu", + "name" : "The Roots", + "type" : "artist", + "uri" : "spotify:artist:78xUyw6FkVZrRAtziFdtdu" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5SyCTZ8X8YQCI0J1VRp4iC" + }, + "href" : "https://api.spotify.com/v1/artists/5SyCTZ8X8YQCI0J1VRp4iC", + "id" : "5SyCTZ8X8YQCI0J1VRp4iC", + "name" : "Phonte", + "type" : "artist", + "uri" : "spotify:artist:5SyCTZ8X8YQCI0J1VRp4iC" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7df4aW2MDoNsEhmJ2NRoro" + }, + "href" : "https://api.spotify.com/v1/artists/7df4aW2MDoNsEhmJ2NRoro", + "id" : "7df4aW2MDoNsEhmJ2NRoro", + "name" : "Dice Raw", + "type" : "artist", + "uri" : "spotify:artist:7df4aW2MDoNsEhmJ2NRoro" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 235706, + "explicit" : true, + "external_ids" : { + "isrc" : "USUM71117858" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2vxwhAsRRVDhVybz3lzD0c" + }, + "href" : "https://api.spotify.com/v1/tracks/2vxwhAsRRVDhVybz3lzD0c", + "id" : "2vxwhAsRRVDhVybz3lzD0c", + "name" : "One Time", + "popularity" : 34, + "preview_url" : "https://p.scdn.co/mp3-preview/daa683a36ff00553577078b2b418903e443c6d8b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:2vxwhAsRRVDhVybz3lzD0c" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6xSTQT32ZxLQPe37QIC308" + }, + "href" : "https://api.spotify.com/v1/artists/6xSTQT32ZxLQPe37QIC308", + "id" : "6xSTQT32ZxLQPe37QIC308", + "name" : "Anna Ternheim", + "type" : "artist", + "uri" : "spotify:artist:6xSTQT32ZxLQPe37QIC308" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2uRdTrtChn1rvFkDmAtL8N" + }, + "href" : "https://api.spotify.com/v1/albums/2uRdTrtChn1rvFkDmAtL8N", + "id" : "2uRdTrtChn1rvFkDmAtL8N", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a957e7287dca4a9df9e80c72a0155cda317a559b", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e9c86259ef3fa41becb0779729446ef991c4e131", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d01394c7bd459e520d778ee12617a29207ec3b88", + "width" : 64 + } ], + "name" : "The Night Visitor", + "type" : "album", + "uri" : "spotify:album:2uRdTrtChn1rvFkDmAtL8N" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6xSTQT32ZxLQPe37QIC308" + }, + "href" : "https://api.spotify.com/v1/artists/6xSTQT32ZxLQPe37QIC308", + "id" : "6xSTQT32ZxLQPe37QIC308", + "name" : "Anna Ternheim", + "type" : "artist", + "uri" : "spotify:artist:6xSTQT32ZxLQPe37QIC308" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4MHz2XUNNGuttl6Yj9OHeA" + }, + "href" : "https://api.spotify.com/v1/artists/4MHz2XUNNGuttl6Yj9OHeA", + "id" : "4MHz2XUNNGuttl6Yj9OHeA", + "name" : "David Ferguson", + "type" : "artist", + "uri" : "spotify:artist:4MHz2XUNNGuttl6Yj9OHeA" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 229026, + "explicit" : false, + "external_ids" : { + "isrc" : "SEWKN1100102" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1ErKzGtRz3WhZgsXsP7RJy" + }, + "href" : "https://api.spotify.com/v1/tracks/1ErKzGtRz3WhZgsXsP7RJy", + "id" : "1ErKzGtRz3WhZgsXsP7RJy", + "name" : "The Longer The Waiting (The Sweeter The Kiss)", + "popularity" : 51, + "preview_url" : "https://p.scdn.co/mp3-preview/6213d071c0b32fe5448b676a567a71b160881660?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:1ErKzGtRz3WhZgsXsP7RJy" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1fhvwCr1HKEZgZYOrfsHyk" + }, + "href" : "https://api.spotify.com/v1/artists/1fhvwCr1HKEZgZYOrfsHyk", + "id" : "1fhvwCr1HKEZgZYOrfsHyk", + "name" : "Ison & Fille", + "type" : "artist", + "uri" : "spotify:artist:1fhvwCr1HKEZgZYOrfsHyk" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4vWudqijsW2xTwCVtB6FH4" + }, + "href" : "https://api.spotify.com/v1/albums/4vWudqijsW2xTwCVtB6FH4", + "id" : "4vWudqijsW2xTwCVtB6FH4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/72a6e3fbcacf034a500b54d15a03b6d3b1cce4c6", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/32ca042ff6e0a58b5c9bc8d073963bd6b371253a", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6ec6661d23b070ceee9b8ea509b2a111234171ae", + "width" : 64 + } ], + "name" : "För Evigt", + "type" : "album", + "uri" : "spotify:album:4vWudqijsW2xTwCVtB6FH4" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1fhvwCr1HKEZgZYOrfsHyk" + }, + "href" : "https://api.spotify.com/v1/artists/1fhvwCr1HKEZgZYOrfsHyk", + "id" : "1fhvwCr1HKEZgZYOrfsHyk", + "name" : "Ison & Fille", + "type" : "artist", + "uri" : "spotify:artist:1fhvwCr1HKEZgZYOrfsHyk" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5V4dYAavPYxUjwVjZm45RZ" + }, + "href" : "https://api.spotify.com/v1/artists/5V4dYAavPYxUjwVjZm45RZ", + "id" : "5V4dYAavPYxUjwVjZm45RZ", + "name" : "Hoosam", + "type" : "artist", + "uri" : "spotify:artist:5V4dYAavPYxUjwVjZm45RZ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0zKX6nlK1A4ZmztnFPOKGs" + }, + "href" : "https://api.spotify.com/v1/artists/0zKX6nlK1A4ZmztnFPOKGs", + "id" : "0zKX6nlK1A4ZmztnFPOKGs", + "name" : "Aleks", + "type" : "artist", + "uri" : "spotify:artist:0zKX6nlK1A4ZmztnFPOKGs" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2efiY9RRTfchAvXGHkVzMv" + }, + "href" : "https://api.spotify.com/v1/artists/2efiY9RRTfchAvXGHkVzMv", + "id" : "2efiY9RRTfchAvXGHkVzMv", + "name" : "Sabo", + "type" : "artist", + "uri" : "spotify:artist:2efiY9RRTfchAvXGHkVzMv" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 287280, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXZC1100313" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0BNLcGViPb6b9JHXYxickW" + }, + "href" : "https://api.spotify.com/v1/tracks/0BNLcGViPb6b9JHXYxickW", + "id" : "0BNLcGViPb6b9JHXYxickW", + "name" : "Från Hjärtat (feat. Sabo, Hoosam & Aleks)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 13, + "type" : "track", + "uri" : "spotify:track:0BNLcGViPb6b9JHXYxickW" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb" + }, + "href" : "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb", + "id" : "4Z8W4fKeB5YxbusRsdQVPb", + "name" : "Radiohead", + "type" : "artist", + "uri" : "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4wciNwfgbL74SJG9BFlf2R" + }, + "href" : "https://api.spotify.com/v1/albums/4wciNwfgbL74SJG9BFlf2R", + "id" : "4wciNwfgbL74SJG9BFlf2R", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/8c0c7f1e0a7f0ee130d139252eb985052373a5ce", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/0ae0028d28e88142d990d68b5f9f5e8c2005d2fa", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2b12613409395b17b2794c2fbda60983fff6e92b", + "width" : 64 + } ], + "name" : "The Best Of", + "type" : "album", + "uri" : "spotify:album:4wciNwfgbL74SJG9BFlf2R" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb" + }, + "href" : "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb", + "id" : "4Z8W4fKeB5YxbusRsdQVPb", + "name" : "Radiohead", + "type" : "artist", + "uri" : "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228533, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAYE9700386" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7wCMgJTMt1mQg2l7P9apqE" + }, + "href" : "https://api.spotify.com/v1/tracks/7wCMgJTMt1mQg2l7P9apqE", + "id" : "7wCMgJTMt1mQg2l7P9apqE", + "name" : "No Surprises", + "popularity" : 2, + "preview_url" : null, + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:7wCMgJTMt1mQg2l7P9apqE" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3csPCeXsj2wezyvkRFzvmV" + }, + "href" : "https://api.spotify.com/v1/artists/3csPCeXsj2wezyvkRFzvmV", + "id" : "3csPCeXsj2wezyvkRFzvmV", + "name" : "Orbital", + "type" : "artist", + "uri" : "spotify:artist:3csPCeXsj2wezyvkRFzvmV" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4CrbvKBDZEC277ERbinNjW" + }, + "href" : "https://api.spotify.com/v1/albums/4CrbvKBDZEC277ERbinNjW", + "id" : "4CrbvKBDZEC277ERbinNjW", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0c82d62c81f90ecb0a4861f37794bd8e647f5cc2", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e5d011bfff979a2714c1cb215a0d6628a6c0a5a8", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/35e4ce42cefb34d222965591778bcf28b35eaa25", + "width" : 64 + } ], + "name" : "The Altogether", + "type" : "album", + "uri" : "spotify:album:4CrbvKBDZEC277ERbinNjW" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3csPCeXsj2wezyvkRFzvmV" + }, + "href" : "https://api.spotify.com/v1/artists/3csPCeXsj2wezyvkRFzvmV", + "id" : "3csPCeXsj2wezyvkRFzvmV", + "name" : "Orbital", + "type" : "artist", + "uri" : "spotify:artist:3csPCeXsj2wezyvkRFzvmV" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 330906, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAAP0100287" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/73TOWab7oyBhxJSfSypeLB" + }, + "href" : "https://api.spotify.com/v1/tracks/73TOWab7oyBhxJSfSypeLB", + "id" : "73TOWab7oyBhxJSfSypeLB", + "name" : "Doctor?", + "popularity" : 20, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:73TOWab7oyBhxJSfSypeLB" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6PCQFjklDvRWq1iW7SW7ja" + }, + "href" : "https://api.spotify.com/v1/albums/6PCQFjklDvRWq1iW7SW7ja", + "id" : "6PCQFjklDvRWq1iW7SW7ja", + "images" : [ { + "height" : 636, + "url" : "https://i.scdn.co/image/c9f070201be0b50c4eafe2f496c0cf9918a42015", + "width" : 640 + }, { + "height" : 298, + "url" : "https://i.scdn.co/image/3db214b80667981e10899277689ba6c3fe9e524e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/e829a85fd53d1404d2d8d33af3824574a7c9f865", + "width" : 64 + } ], + "name" : "Relax", + "type" : "album", + "uri" : "spotify:album:6PCQFjklDvRWq1iW7SW7ja" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC" + }, + "href" : "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC", + "id" : "1nJvji2KIlWSseXRSlNYsC", + "name" : "The Velvet Underground", + "type" : "artist", + "uri" : "spotify:artist:1nJvji2KIlWSseXRSlNYsC" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0IwlY33zbBXN7zlS9DP2Cj" + }, + "href" : "https://api.spotify.com/v1/artists/0IwlY33zbBXN7zlS9DP2Cj", + "id" : "0IwlY33zbBXN7zlS9DP2Cj", + "name" : "Nico", + "type" : "artist", + "uri" : "spotify:artist:0IwlY33zbBXN7zlS9DP2Cj" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 173493, + "explicit" : false, + "external_ids" : { + "isrc" : "USPR36702759" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4J8mzasN2ZOE1xXoR3ZtOi" + }, + "href" : "https://api.spotify.com/v1/tracks/4J8mzasN2ZOE1xXoR3ZtOi", + "id" : "4J8mzasN2ZOE1xXoR3ZtOi", + "name" : "Sunday Morning", + "popularity" : 15, + "preview_url" : "https://p.scdn.co/mp3-preview/b522aca3cc8efbe6d99725339a28b67a4bcce94e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:4J8mzasN2ZOE1xXoR3ZtOi" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4Bmvl2tQsA7hY7Y4dK5P43" + }, + "href" : "https://api.spotify.com/v1/albums/4Bmvl2tQsA7hY7Y4dK5P43", + "id" : "4Bmvl2tQsA7hY7Y4dK5P43", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/e72e8cdd1c53c2f8db9a1ff6fa54d0d1e8ba732b", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5d085f6680a1a57425d846a4798272dffb3f333f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/735a3e7a8340e8343c04ca652b42c3f1410ac288", + "width" : 64 + } ], + "name" : "The Best Year Of My Life: 1983", + "type" : "album", + "uri" : "spotify:album:4Bmvl2tQsA7hY7Y4dK5P43" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4etuCZVdP8yiNPn4xf0ie5" + }, + "href" : "https://api.spotify.com/v1/artists/4etuCZVdP8yiNPn4xf0ie5", + "id" : "4etuCZVdP8yiNPn4xf0ie5", + "name" : "Julio Iglesias", + "type" : "artist", + "uri" : "spotify:artist:4etuCZVdP8yiNPn4xf0ie5" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228173, + "explicit" : false, + "external_ids" : { + "isrc" : "NLB639999968" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2hqymiIYhnWxtGJB3A94w9" + }, + "href" : "https://api.spotify.com/v1/tracks/2hqymiIYhnWxtGJB3A94w9", + "id" : "2hqymiIYhnWxtGJB3A94w9", + "name" : "Hey", + "popularity" : 0, + "preview_url" : null, + "track_number" : 17, + "type" : "track", + "uri" : "spotify:track:2hqymiIYhnWxtGJB3A94w9" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1DDvPtrcgjYwhtsREhaLaf" + }, + "href" : "https://api.spotify.com/v1/albums/1DDvPtrcgjYwhtsREhaLaf", + "id" : "1DDvPtrcgjYwhtsREhaLaf", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7ebc964bbf2c8634d3274dd235ae118b37119793", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6122a0bb3c6bdd64977eff58d6b6deded0204fe7", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d322eff7cf0029347e397508e7df9ce79658f49a", + "width" : 64 + } ], + "name" : "Tres Tres Fort", + "type" : "album", + "uri" : "spotify:album:1DDvPtrcgjYwhtsREhaLaf" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 348080, + "explicit" : false, + "external_ids" : { + "isrc" : "BE6F50802330" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7xSHl8okDDcq1jhKWG6zHy" + }, + "href" : "https://api.spotify.com/v1/tracks/7xSHl8okDDcq1jhKWG6zHy", + "id" : "7xSHl8okDDcq1jhKWG6zHy", + "name" : "Moto Moindo", + "popularity" : 18, + "preview_url" : "https://p.scdn.co/mp3-preview/21ebdf5d836b2255f9df6ff90150dea5824f7ede?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:7xSHl8okDDcq1jhKWG6zHy" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1DDvPtrcgjYwhtsREhaLaf" + }, + "href" : "https://api.spotify.com/v1/albums/1DDvPtrcgjYwhtsREhaLaf", + "id" : "1DDvPtrcgjYwhtsREhaLaf", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7ebc964bbf2c8634d3274dd235ae118b37119793", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6122a0bb3c6bdd64977eff58d6b6deded0204fe7", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d322eff7cf0029347e397508e7df9ce79658f49a", + "width" : 64 + } ], + "name" : "Tres Tres Fort", + "type" : "album", + "uri" : "spotify:album:1DDvPtrcgjYwhtsREhaLaf" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 354480, + "explicit" : false, + "external_ids" : { + "isrc" : "BE6F50802390" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7FJMdtMJaSn9FFXTNY8sIh" + }, + "href" : "https://api.spotify.com/v1/tracks/7FJMdtMJaSn9FFXTNY8sIh", + "id" : "7FJMdtMJaSn9FFXTNY8sIh", + "name" : "Staff Benda Bilili", + "popularity" : 13, + "preview_url" : "https://p.scdn.co/mp3-preview/2a87dc3b44e3da24f95f70e94bfcab97f732c90d?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:7FJMdtMJaSn9FFXTNY8sIh" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3rJ3m1tM6vUgiWLjfV8sRf" + }, + "href" : "https://api.spotify.com/v1/artists/3rJ3m1tM6vUgiWLjfV8sRf", + "id" : "3rJ3m1tM6vUgiWLjfV8sRf", + "name" : "Jimmy Cliff", + "type" : "artist", + "uri" : "spotify:artist:3rJ3m1tM6vUgiWLjfV8sRf" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3L6BeuI5Du0b7sl2AmYVGA" + }, + "href" : "https://api.spotify.com/v1/albums/3L6BeuI5Du0b7sl2AmYVGA", + "id" : "3L6BeuI5Du0b7sl2AmYVGA", + "images" : [ { + "height" : 634, + "url" : "https://i.scdn.co/image/14a2816c1cb09be876fa5b3420eb58fa62cb7dc1", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/9eba0eab898b7c55cca967fbe0d685329d3d3efa", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/aefaaf417849c27fddeb2ddc0d36e8c03cfe5dd0", + "width" : 64 + } ], + "name" : "The Harder They Come (Remastered)", + "type" : "album", + "uri" : "spotify:album:3L6BeuI5Du0b7sl2AmYVGA" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4gYhCmAiXZvNxC92ODseS4" + }, + "href" : "https://api.spotify.com/v1/artists/4gYhCmAiXZvNxC92ODseS4", + "id" : "4gYhCmAiXZvNxC92ODseS4", + "name" : "The Slickers", + "type" : "artist", + "uri" : "spotify:artist:4gYhCmAiXZvNxC92ODseS4" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 183200, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAAN7200046" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/631Lp7kv8Ku7rQJ8tfvvuz" + }, + "href" : "https://api.spotify.com/v1/tracks/631Lp7kv8Ku7rQJ8tfvvuz", + "id" : "631Lp7kv8Ku7rQJ8tfvvuz", + "name" : "Johnny Too Bad", + "popularity" : 40, + "preview_url" : "https://p.scdn.co/mp3-preview/1c6a84cd825240f7176e6ae45ae63b5d5df0af44?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:631Lp7kv8Ku7rQJ8tfvvuz" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3rxIQc9kWT6Ueg4BhnOwRK" + }, + "href" : "https://api.spotify.com/v1/artists/3rxIQc9kWT6Ueg4BhnOwRK", + "id" : "3rxIQc9kWT6Ueg4BhnOwRK", + "name" : "Quincy Jones", + "type" : "artist", + "uri" : "spotify:artist:3rxIQc9kWT6Ueg4BhnOwRK" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3rxdjOpfK1jie9ARFM4zLS" + }, + "href" : "https://api.spotify.com/v1/albums/3rxdjOpfK1jie9ARFM4zLS", + "id" : "3rxdjOpfK1jie9ARFM4zLS", + "images" : [ { + "height" : 634, + "url" : "https://i.scdn.co/image/f770c646187ced768a32d6d5ecaf4835b7b7701c", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/d1a60fe2ec47638a8c19a6aa7eec9a8b74ee31bc", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/5c478ce9215474ea24ab003fcd833258236e793e", + "width" : 64 + } ], + "name" : "Big Band Bossa Nova (Originals International Version)", + "type" : "album", + "uri" : "spotify:album:3rxdjOpfK1jie9ARFM4zLS" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3rxIQc9kWT6Ueg4BhnOwRK" + }, + "href" : "https://api.spotify.com/v1/artists/3rxIQc9kWT6Ueg4BhnOwRK", + "id" : "3rxIQc9kWT6Ueg4BhnOwRK", + "name" : "Quincy Jones", + "type" : "artist", + "uri" : "spotify:artist:3rxIQc9kWT6Ueg4BhnOwRK" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 164211, + "explicit" : false, + "external_ids" : { + "isrc" : "USPR36270200" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0GrCQKtss5KErFHWfwUKwD" + }, + "href" : "https://api.spotify.com/v1/tracks/0GrCQKtss5KErFHWfwUKwD", + "id" : "0GrCQKtss5KErFHWfwUKwD", + "name" : "Soul Bossa Nova", + "popularity" : 8, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:0GrCQKtss5KErFHWfwUKwD" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6w6z8m4WXX7Tub4Rb6Lu7R" + }, + "href" : "https://api.spotify.com/v1/artists/6w6z8m4WXX7Tub4Rb6Lu7R", + "id" : "6w6z8m4WXX7Tub4Rb6Lu7R", + "name" : "Jethro Tull", + "type" : "artist", + "uri" : "spotify:artist:6w6z8m4WXX7Tub4Rb6Lu7R" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0NGM3Ftwjw0dLNpAowmz3x" + }, + "href" : "https://api.spotify.com/v1/albums/0NGM3Ftwjw0dLNpAowmz3x", + "id" : "0NGM3Ftwjw0dLNpAowmz3x", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0d70b39a0577a8a5dbacf2129bbe173421bf55a4", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/dbe5bd170bd842d27cd15eebaee06cafd9f46efd", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/06eb8f5e9614046bd90f80ed862081bb13bfa33d", + "width" : 64 + } ], + "name" : "Aqualung", + "type" : "album", + "uri" : "spotify:album:0NGM3Ftwjw0dLNpAowmz3x" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6w6z8m4WXX7Tub4Rb6Lu7R" + }, + "href" : "https://api.spotify.com/v1/artists/6w6z8m4WXX7Tub4Rb6Lu7R", + "id" : "6w6z8m4WXX7Tub4Rb6Lu7R", + "name" : "Jethro Tull", + "type" : "artist", + "uri" : "spotify:artist:6w6z8m4WXX7Tub4Rb6Lu7R" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 395293, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAYK7100012" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5UuikgHTxSRFRnC0zXx10i" + }, + "href" : "https://api.spotify.com/v1/tracks/5UuikgHTxSRFRnC0zXx10i", + "id" : "5UuikgHTxSRFRnC0zXx10i", + "name" : "Aqualung", + "popularity" : 67, + "preview_url" : "https://p.scdn.co/mp3-preview/22bb34d36eb44c0343fe12836e2a80b0e784890f?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5UuikgHTxSRFRnC0zXx10i" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2TwepUY7feaTuipStcyzLZ" + }, + "href" : "https://api.spotify.com/v1/artists/2TwepUY7feaTuipStcyzLZ", + "id" : "2TwepUY7feaTuipStcyzLZ", + "name" : "Asaf Avidan & the Mojos", + "type" : "artist", + "uri" : "spotify:artist:2TwepUY7feaTuipStcyzLZ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1HskEZDIhBHkpg5AzAL127" + }, + "href" : "https://api.spotify.com/v1/albums/1HskEZDIhBHkpg5AzAL127", + "id" : "1HskEZDIhBHkpg5AzAL127", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5b28daa83c74ef4c92ae527819c8a1cc5a8baf9a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/2955a4c20c03efe89a59b7808a2c598e70a515d0", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/49be81fa625afe389ac51efe5ab08ff9c6cfae6f", + "width" : 64 + } ], + "name" : "One Day / Reckoning Song (Wankelmut Remix) [Radio Edit]", + "type" : "album", + "uri" : "spotify:album:1HskEZDIhBHkpg5AzAL127" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2TwepUY7feaTuipStcyzLZ" + }, + "href" : "https://api.spotify.com/v1/artists/2TwepUY7feaTuipStcyzLZ", + "id" : "2TwepUY7feaTuipStcyzLZ", + "name" : "Asaf Avidan & the Mojos", + "type" : "artist", + "uri" : "spotify:artist:2TwepUY7feaTuipStcyzLZ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/01e2lCvLZ4fLUIRy68nptH" + }, + "href" : "https://api.spotify.com/v1/artists/01e2lCvLZ4fLUIRy68nptH", + "id" : "01e2lCvLZ4fLUIRy68nptH", + "name" : "Wankelmut", + "type" : "artist", + "uri" : "spotify:artist:01e2lCvLZ4fLUIRy68nptH" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 213186, + "explicit" : false, + "external_ids" : { + "isrc" : "DEQ321200132" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3gNNXc7GUgKRPR15W77eDR" + }, + "href" : "https://api.spotify.com/v1/tracks/3gNNXc7GUgKRPR15W77eDR", + "id" : "3gNNXc7GUgKRPR15W77eDR", + "name" : "One Day / Reckoning Song (Wankelmut Remix) [Radio Edit]", + "popularity" : 61, + "preview_url" : "https://p.scdn.co/mp3-preview/527a9d43fa6edcf5042d2179a07ea568687d9f0d?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:3gNNXc7GUgKRPR15W77eDR" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3i0VvjFfLzfX8TgDhgNWfe" + }, + "href" : "https://api.spotify.com/v1/artists/3i0VvjFfLzfX8TgDhgNWfe", + "id" : "3i0VvjFfLzfX8TgDhgNWfe", + "name" : "Jonathan Johansson", + "type" : "artist", + "uri" : "spotify:artist:3i0VvjFfLzfX8TgDhgNWfe" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6xossOP5btjQQaciEJd4AG" + }, + "href" : "https://api.spotify.com/v1/albums/6xossOP5btjQQaciEJd4AG", + "id" : "6xossOP5btjQQaciEJd4AG", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0cfab2134eb6c3594b2583d431f9bd1d281430e4", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/4cd2115360c8dc0eb0b5b3f4e8331cbc2c895b08", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/c59e6616202b8689186a6280f5631ebb414515d4", + "width" : 64 + } ], + "name" : "En hand i himlen", + "type" : "album", + "uri" : "spotify:album:6xossOP5btjQQaciEJd4AG" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3i0VvjFfLzfX8TgDhgNWfe" + }, + "href" : "https://api.spotify.com/v1/artists/3i0VvjFfLzfX8TgDhgNWfe", + "id" : "3i0VvjFfLzfX8TgDhgNWfe", + "name" : "Jonathan Johansson", + "type" : "artist", + "uri" : "spotify:artist:3i0VvjFfLzfX8TgDhgNWfe" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 287213, + "explicit" : false, + "external_ids" : { + "isrc" : "SEWGI0801905" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0430F6pa9ricA4wUXWOsNn" + }, + "href" : "https://api.spotify.com/v1/tracks/0430F6pa9ricA4wUXWOsNn", + "id" : "0430F6pa9ricA4wUXWOsNn", + "name" : "Aldrig ensam", + "popularity" : 4, + "preview_url" : null, + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:0430F6pa9ricA4wUXWOsNn" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/66KBDVJnA6c0DjHeSZYaHb" + }, + "href" : "https://api.spotify.com/v1/albums/66KBDVJnA6c0DjHeSZYaHb", + "id" : "66KBDVJnA6c0DjHeSZYaHb", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/41e56c2d7de86b3015301ca0b7f0fb31244789eb", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/05df95aa7d44c91379eacea35e0f18ba2294cf5b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2a102de968c4ab67d8606e3b4bd1993b4d9931ca", + "width" : 64 + } ], + "name" : "Boss For Leader", + "type" : "album", + "uri" : "spotify:album:66KBDVJnA6c0DjHeSZYaHb" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 362586, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXKD0700202" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0I00u1IwnGQVguICUiCsAf" + }, + "href" : "https://api.spotify.com/v1/tracks/0I00u1IwnGQVguICUiCsAf", + "id" : "0I00u1IwnGQVguICUiCsAf", + "name" : "Sponsored By Destiny", + "popularity" : 38, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:0I00u1IwnGQVguICUiCsAf" + } + }, { + "added_at" : "2015-10-10T00:49:08Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1LeVJ5GPeYDOVUjxx1y7Rp" + }, + "href" : "https://api.spotify.com/v1/artists/1LeVJ5GPeYDOVUjxx1y7Rp", + "id" : "1LeVJ5GPeYDOVUjxx1y7Rp", + "name" : "Unknown Mortal Orchestra", + "type" : "artist", + "uri" : "spotify:artist:1LeVJ5GPeYDOVUjxx1y7Rp" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/587Clxxo1i5flgjvS52bEC" + }, + "href" : "https://api.spotify.com/v1/albums/587Clxxo1i5flgjvS52bEC", + "id" : "587Clxxo1i5flgjvS52bEC", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/879df86e1d1c7652be108979817c5ec60025cf07", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6398329a565132bdf9468a7e0aa14f86ef0d3256", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/b8c796313b68af190030a33402e6c5f7ba9057b7", + "width" : 64 + } ], + "name" : "Multi-Love", + "type" : "album", + "uri" : "spotify:album:587Clxxo1i5flgjvS52bEC" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1LeVJ5GPeYDOVUjxx1y7Rp" + }, + "href" : "https://api.spotify.com/v1/artists/1LeVJ5GPeYDOVUjxx1y7Rp", + "id" : "1LeVJ5GPeYDOVUjxx1y7Rp", + "name" : "Unknown Mortal Orchestra", + "type" : "artist", + "uri" : "spotify:artist:1LeVJ5GPeYDOVUjxx1y7Rp" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 250800, + "explicit" : false, + "external_ids" : { + "isrc" : "US38Y1526201" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0PEXp5yk0sx9dJ8JzwvjJb" + }, + "href" : "https://api.spotify.com/v1/tracks/0PEXp5yk0sx9dJ8JzwvjJb", + "id" : "0PEXp5yk0sx9dJ8JzwvjJb", + "name" : "Multi-Love", + "popularity" : 68, + "preview_url" : "https://p.scdn.co/mp3-preview/be4fb5d07c991cb3e39c3727e59d4f9dcde32dc1?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:0PEXp5yk0sx9dJ8JzwvjJb" + } + }, { + "added_at" : "2015-10-11T16:27:30Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/16Kp9T6MHoSXKJYiSWnyFL" + }, + "href" : "https://api.spotify.com/v1/albums/16Kp9T6MHoSXKJYiSWnyFL", + "id" : "16Kp9T6MHoSXKJYiSWnyFL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/6eddc1be1a7e77be580b8bfdb1dba07afc2ca0b9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3dab1091d0c6c0639e34cb53b005006ee1fb5ec9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/fc2cabdd4f91b39a2e7cce6f32ebaa3c14b13ba6", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 8", + "type" : "album", + "uri" : "spotify:album:16Kp9T6MHoSXKJYiSWnyFL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/22680B8sUdq6bL6nQaJfwg" + }, + "href" : "https://api.spotify.com/v1/artists/22680B8sUdq6bL6nQaJfwg", + "id" : "22680B8sUdq6bL6nQaJfwg", + "name" : "Siriusmo", + "type" : "artist", + "uri" : "spotify:artist:22680B8sUdq6bL6nQaJfwg" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228240, + "explicit" : false, + "external_ids" : { + "isrc" : "DEAF70900363" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0FubbOyFuWp0hAq6V8a1AI" + }, + "href" : "https://api.spotify.com/v1/tracks/0FubbOyFuWp0hAq6V8a1AI", + "id" : "0FubbOyFuWp0hAq6V8a1AI", + "name" : "High Together", + "popularity" : 0, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:0FubbOyFuWp0hAq6V8a1AI" + } + }, { + "added_at" : "2015-10-11T16:27:35Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/16Kp9T6MHoSXKJYiSWnyFL" + }, + "href" : "https://api.spotify.com/v1/albums/16Kp9T6MHoSXKJYiSWnyFL", + "id" : "16Kp9T6MHoSXKJYiSWnyFL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/6eddc1be1a7e77be580b8bfdb1dba07afc2ca0b9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3dab1091d0c6c0639e34cb53b005006ee1fb5ec9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/fc2cabdd4f91b39a2e7cce6f32ebaa3c14b13ba6", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 8", + "type" : "album", + "uri" : "spotify:album:16Kp9T6MHoSXKJYiSWnyFL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0p5axeJsbtTCXBrRVoKjwu" + }, + "href" : "https://api.spotify.com/v1/artists/0p5axeJsbtTCXBrRVoKjwu", + "id" : "0p5axeJsbtTCXBrRVoKjwu", + "name" : "The Drums", + "type" : "artist", + "uri" : "spotify:artist:0p5axeJsbtTCXBrRVoKjwu" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 177120, + "explicit" : false, + "external_ids" : { + "isrc" : "GBGEY0900107" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2TOoPCW05TjfwMqpVTThVZ" + }, + "href" : "https://api.spotify.com/v1/tracks/2TOoPCW05TjfwMqpVTThVZ", + "id" : "2TOoPCW05TjfwMqpVTThVZ", + "name" : "Let's Go Surfing", + "popularity" : 7, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:2TOoPCW05TjfwMqpVTThVZ" + } + }, { + "added_at" : "2015-10-11T16:27:38Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5L59UhTBOeIRPxF5umwC9p" + }, + "href" : "https://api.spotify.com/v1/artists/5L59UhTBOeIRPxF5umwC9p", + "id" : "5L59UhTBOeIRPxF5umwC9p", + "name" : "Groundation", + "type" : "artist", + "uri" : "spotify:artist:5L59UhTBOeIRPxF5umwC9p" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5IEhl4fBSMohKlF5mievi2" + }, + "href" : "https://api.spotify.com/v1/albums/5IEhl4fBSMohKlF5mievi2", + "id" : "5IEhl4fBSMohKlF5mievi2", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d462c5092aa355c402bdb4560d97e8f04b6a6471", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/7c97d1e92470f9954e2bc956211f17390f1864e9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/9430a72c169e425b055287987d738eb7f8945d76", + "width" : 64 + } ], + "name" : "Building an Ark", + "type" : "album", + "uri" : "spotify:album:5IEhl4fBSMohKlF5mievi2" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5L59UhTBOeIRPxF5umwC9p" + }, + "href" : "https://api.spotify.com/v1/artists/5L59UhTBOeIRPxF5umwC9p", + "id" : "5L59UhTBOeIRPxF5umwC9p", + "name" : "Groundation", + "type" : "artist", + "uri" : "spotify:artist:5L59UhTBOeIRPxF5umwC9p" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 407066, + "explicit" : false, + "external_ids" : { + "isrc" : "USLF11101609" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7fIyPQUM6BKGjUEZqNUXZm" + }, + "href" : "https://api.spotify.com/v1/tracks/7fIyPQUM6BKGjUEZqNUXZm", + "id" : "7fIyPQUM6BKGjUEZqNUXZm", + "name" : "Daniel", + "popularity" : 11, + "preview_url" : "https://p.scdn.co/mp3-preview/51c69a6bd9cb8ace90a48dada2489c8cd45299f6?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:7fIyPQUM6BKGjUEZqNUXZm" + } + }, { + "added_at" : "2015-10-12T21:56:45Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4lu50np3LdTkRL09T7x8UP" + }, + "href" : "https://api.spotify.com/v1/artists/4lu50np3LdTkRL09T7x8UP", + "id" : "4lu50np3LdTkRL09T7x8UP", + "name" : "Agoria", + "type" : "artist", + "uri" : "spotify:artist:4lu50np3LdTkRL09T7x8UP" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/09Ld3LzKk1eycCRasteDve" + }, + "href" : "https://api.spotify.com/v1/albums/09Ld3LzKk1eycCRasteDve", + "id" : "09Ld3LzKk1eycCRasteDve", + "images" : [ { + "height" : 598, + "url" : "https://i.scdn.co/image/450c799e86ae7c1e6a4967438e0e0763d4a83115", + "width" : 640 + }, { + "height" : 280, + "url" : "https://i.scdn.co/image/39ea17cbc424537c203c0d3259ed6dd9556551ec", + "width" : 300 + }, { + "height" : 60, + "url" : "https://i.scdn.co/image/b931362a0516e63db74c71195d1d834901603688", + "width" : 64 + } ], + "name" : "Blossom", + "type" : "album", + "uri" : "spotify:album:09Ld3LzKk1eycCRasteDve" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4lu50np3LdTkRL09T7x8UP" + }, + "href" : "https://api.spotify.com/v1/artists/4lu50np3LdTkRL09T7x8UP", + "id" : "4lu50np3LdTkRL09T7x8UP", + "name" : "Agoria", + "type" : "artist", + "uri" : "spotify:artist:4lu50np3LdTkRL09T7x8UP" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 302560, + "explicit" : false, + "external_ids" : { + "isrc" : "BEP010310047" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5fLsimbF9cyWH6TYRA3vCS" + }, + "href" : "https://api.spotify.com/v1/tracks/5fLsimbF9cyWH6TYRA3vCS", + "id" : "5fLsimbF9cyWH6TYRA3vCS", + "name" : "Stereolove", + "popularity" : 0, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:5fLsimbF9cyWH6TYRA3vCS" + } + }, { + "added_at" : "2015-10-12T22:32:28Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3upWDUZL9GwmHXC3y2vHUy" + }, + "href" : "https://api.spotify.com/v1/albums/3upWDUZL9GwmHXC3y2vHUy", + "id" : "3upWDUZL9GwmHXC3y2vHUy", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/fe21058b751e56b8488135d3656f3e60c7d40f80", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d93df3798c2038ced7aac25572df70ef5989f00f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/4f7ec53f64a47ba22c65bd6b50b07df6d9a167fa", + "width" : 64 + } ], + "name" : "Berlin Afterhour 2 - From Minimal to Techno - From Electro to House", + "type" : "album", + "uri" : "spotify:album:3upWDUZL9GwmHXC3y2vHUy" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3ZKUeqiV2UX5sKhOipqw1h" + }, + "href" : "https://api.spotify.com/v1/artists/3ZKUeqiV2UX5sKhOipqw1h", + "id" : "3ZKUeqiV2UX5sKhOipqw1h", + "name" : "Blake Baxter", + "type" : "artist", + "uri" : "spotify:artist:3ZKUeqiV2UX5sKhOipqw1h" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/623ecFS6T9xsx9Rb98eii5" + }, + "href" : "https://api.spotify.com/v1/artists/623ecFS6T9xsx9Rb98eii5", + "id" : "623ecFS6T9xsx9Rb98eii5", + "name" : "Marc Romboy", + "type" : "artist", + "uri" : "spotify:artist:623ecFS6T9xsx9Rb98eii5" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 407392, + "explicit" : false, + "external_ids" : { + "isrc" : "DEDL81001304" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7K8pWsUUagxZVfdS81DmTC" + }, + "href" : "https://api.spotify.com/v1/tracks/7K8pWsUUagxZVfdS81DmTC", + "id" : "7K8pWsUUagxZVfdS81DmTC", + "name" : "Muzik (Kink Remix) - Kink Remix", + "popularity" : 25, + "preview_url" : "https://p.scdn.co/mp3-preview/eb1a315f6888d601ceab30849f6c0c2d4f27410e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 14, + "type" : "track", + "uri" : "spotify:track:7K8pWsUUagxZVfdS81DmTC" + } + }, { + "added_at" : "2015-10-14T20:28:10Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6NxcE1vZdlUZCnuitqIuHS" + }, + "href" : "https://api.spotify.com/v1/artists/6NxcE1vZdlUZCnuitqIuHS", + "id" : "6NxcE1vZdlUZCnuitqIuHS", + "name" : "Hedwig & The Angry Inch", + "type" : "artist", + "uri" : "spotify:artist:6NxcE1vZdlUZCnuitqIuHS" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1nDUzE7LFkfVBRAf5ZSfbr" + }, + "href" : "https://api.spotify.com/v1/albums/1nDUzE7LFkfVBRAf5ZSfbr", + "id" : "1nDUzE7LFkfVBRAf5ZSfbr", + "images" : [ { + "height" : 637, + "url" : "https://i.scdn.co/image/28de05390c02add08f7e6ba847011b45edc12769", + "width" : 640 + }, { + "height" : 299, + "url" : "https://i.scdn.co/image/f02b198f0468801c351758ffa392b2967add5872", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/03c50023ad8326520ae56ba9a9c71d2adeb7b1c7", + "width" : 64 + } ], + "name" : "Hedwig And The Angry Inch (Original Cast Recording)", + "type" : "album", + "uri" : "spotify:album:1nDUzE7LFkfVBRAf5ZSfbr" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6NxcE1vZdlUZCnuitqIuHS" + }, + "href" : "https://api.spotify.com/v1/artists/6NxcE1vZdlUZCnuitqIuHS", + "id" : "6NxcE1vZdlUZCnuitqIuHS", + "name" : "Hedwig & The Angry Inch", + "type" : "artist", + "uri" : "spotify:artist:6NxcE1vZdlUZCnuitqIuHS" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 325906, + "explicit" : false, + "external_ids" : { + "isrc" : "USAT29900076" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0YHMLFYBLOEVVQ1ns2pnw5" + }, + "href" : "https://api.spotify.com/v1/tracks/0YHMLFYBLOEVVQ1ns2pnw5", + "id" : "0YHMLFYBLOEVVQ1ns2pnw5", + "name" : "Wig In A Box", + "popularity" : 30, + "preview_url" : "https://p.scdn.co/mp3-preview/9758cb601fb700da7182e8294538d344bc6b6c4c?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:0YHMLFYBLOEVVQ1ns2pnw5" + } + }, { + "added_at" : "2015-10-14T20:29:01Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4M5nCE77Qaxayuhp3fVn4V" + }, + "href" : "https://api.spotify.com/v1/artists/4M5nCE77Qaxayuhp3fVn4V", + "id" : "4M5nCE77Qaxayuhp3fVn4V", + "name" : "Iron & Wine", + "type" : "artist", + "uri" : "spotify:artist:4M5nCE77Qaxayuhp3fVn4V" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7ahfhOy5HmGlQ8k8AW9LgV" + }, + "href" : "https://api.spotify.com/v1/albums/7ahfhOy5HmGlQ8k8AW9LgV", + "id" : "7ahfhOy5HmGlQ8k8AW9LgV", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c292d23ac0a570bf2336737ad8f250da7b698ea5", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/b5962cb54d97cf4ba27a4e11b9dee38b69a339c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/32c417402a13c705a80a32894a3ea3abcc403bf1", + "width" : 64 + } ], + "name" : "Lovesong Of The Buzzard", + "type" : "album", + "uri" : "spotify:album:7ahfhOy5HmGlQ8k8AW9LgV" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4M5nCE77Qaxayuhp3fVn4V" + }, + "href" : "https://api.spotify.com/v1/artists/4M5nCE77Qaxayuhp3fVn4V", + "id" : "4M5nCE77Qaxayuhp3fVn4V", + "name" : "Iron & Wine", + "type" : "artist", + "uri" : "spotify:artist:4M5nCE77Qaxayuhp3fVn4V" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 266573, + "explicit" : false, + "external_ids" : { + "isrc" : "USSUB0771003" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3G8bPXzIGPbf680AFjUyuI" + }, + "href" : "https://api.spotify.com/v1/tracks/3G8bPXzIGPbf680AFjUyuI", + "id" : "3G8bPXzIGPbf680AFjUyuI", + "name" : "Lovesong of the Buzzard", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:3G8bPXzIGPbf680AFjUyuI" + } + }, { + "added_at" : "2015-10-14T20:29:22Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/06nsZ3qSOYZ2hPVIMcr1IN" + }, + "href" : "https://api.spotify.com/v1/artists/06nsZ3qSOYZ2hPVIMcr1IN", + "id" : "06nsZ3qSOYZ2hPVIMcr1IN", + "name" : "J.J. Cale", + "type" : "artist", + "uri" : "spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6iy69KARpFarcwTlPnIAHo" + }, + "href" : "https://api.spotify.com/v1/albums/6iy69KARpFarcwTlPnIAHo", + "id" : "6iy69KARpFarcwTlPnIAHo", + "images" : [ { + "height" : 637, + "url" : "https://i.scdn.co/image/d944986bd031735c00f7bf800b7c7f1199eda02e", + "width" : 640 + }, { + "height" : 299, + "url" : "https://i.scdn.co/image/a8cdba8eea0f15ee6c9ecc1715ac0dabe615a546", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/b41e671d8a55ab2c537391df1078ec1d8b80e8bc", + "width" : 64 + } ], + "name" : "Naturally", + "type" : "album", + "uri" : "spotify:album:6iy69KARpFarcwTlPnIAHo" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/06nsZ3qSOYZ2hPVIMcr1IN" + }, + "href" : "https://api.spotify.com/v1/artists/06nsZ3qSOYZ2hPVIMcr1IN", + "id" : "06nsZ3qSOYZ2hPVIMcr1IN", + "name" : "J.J. Cale", + "type" : "artist", + "uri" : "spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 148333, + "explicit" : false, + "external_ids" : { + "isrc" : "NLF050190021" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3WzPaEBISpEvPhIbN3TREc" + }, + "href" : "https://api.spotify.com/v1/tracks/3WzPaEBISpEvPhIbN3TREc", + "id" : "3WzPaEBISpEvPhIbN3TREc", + "linked_from" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4MfHvkY5AFT2lWuwCfzoHK" + }, + "href" : "https://api.spotify.com/v1/tracks/4MfHvkY5AFT2lWuwCfzoHK", + "id" : "4MfHvkY5AFT2lWuwCfzoHK", + "type" : "track", + "uri" : "spotify:track:4MfHvkY5AFT2lWuwCfzoHK" + }, + "name" : "Call The Doctor", + "popularity" : 47, + "preview_url" : "https://p.scdn.co/mp3-preview/bebd1223282e9cdd07fb35920d81b56a8b2d9c21?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3WzPaEBISpEvPhIbN3TREc" + } + }, { + "added_at" : "2015-10-14T20:33:07Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0AVPusXNzK1jWwefBiPJ5I" + }, + "href" : "https://api.spotify.com/v1/albums/0AVPusXNzK1jWwefBiPJ5I", + "id" : "0AVPusXNzK1jWwefBiPJ5I", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a7830294681bce03d5d1033b4a98c38bc9dcaedc", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5020a71a285a2063573d388167471c84678e3e71", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0ad96403a6f2638d894359f70a84706b530c26c1", + "width" : 64 + } ], + "name" : "In Colour", + "type" : "album", + "uri" : "spotify:album:0AVPusXNzK1jWwefBiPJ5I" + }, + "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" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 291018, + "explicit" : false, + "external_ids" : { + "isrc" : "UK7MC1500001" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5wN0Qf0iHLcWbCugUtQLNp" + }, + "href" : "https://api.spotify.com/v1/tracks/5wN0Qf0iHLcWbCugUtQLNp", + "id" : "5wN0Qf0iHLcWbCugUtQLNp", + "name" : "Gosh", + "popularity" : 60, + "preview_url" : "https://p.scdn.co/mp3-preview/e4406efca189366a840a0f9cbea10100d47d36d2?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5wN0Qf0iHLcWbCugUtQLNp" + } + }, { + "added_at" : "2015-10-14T20:39:00Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/09V9eXkh1lzMgF5I2ERpYo" + }, + "href" : "https://api.spotify.com/v1/albums/09V9eXkh1lzMgF5I2ERpYo", + "id" : "09V9eXkh1lzMgF5I2ERpYo", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/3c6d49967b88465cfec77afc2add473de0f74c90", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/815cb8f1a07f8cda78e94c4f50783c1e16504568", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d4e40ae285919edae396c9527e554682f10939f6", + "width" : 64 + } ], + "name" : "Ninja Tune Retrospect (No. 2)", + "type" : "album", + "uri" : "spotify:album:09V9eXkh1lzMgF5I2ERpYo" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2s0438sn0pYL2OuukcFqPN" + }, + "href" : "https://api.spotify.com/v1/artists/2s0438sn0pYL2OuukcFqPN", + "id" : "2s0438sn0pYL2OuukcFqPN", + "name" : "Kid Koala", + "type" : "artist", + "uri" : "spotify:artist:2s0438sn0pYL2OuukcFqPN" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 181053, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0800600" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/63vqh4WbKhqM8fjSr5kKnm" + }, + "href" : "https://api.spotify.com/v1/tracks/63vqh4WbKhqM8fjSr5kKnm", + "id" : "63vqh4WbKhqM8fjSr5kKnm", + "name" : "Slew Test 2", + "popularity" : 0, + "preview_url" : null, + "track_number" : 22, + "type" : "track", + "uri" : "spotify:track:63vqh4WbKhqM8fjSr5kKnm" + } + }, { + "added_at" : "2015-10-12T22:40:09Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0hljn4caZCf6xPILpLDJkB" + }, + "href" : "https://api.spotify.com/v1/albums/0hljn4caZCf6xPILpLDJkB", + "id" : "0hljn4caZCf6xPILpLDJkB", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/cb151c76d11d6908ef4bf7e5f5a5fd6b6de24b80", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/55797c7865f38ed3bbd440745e07f35f68b108e2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/a86afd4de8e9c38c8c670811223205fe7fd2a929", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 7", + "type" : "album", + "uri" : "spotify:album:0hljn4caZCf6xPILpLDJkB" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4IQ782VL9bK0q2Judy9mIF" + }, + "href" : "https://api.spotify.com/v1/artists/4IQ782VL9bK0q2Judy9mIF", + "id" : "4IQ782VL9bK0q2Judy9mIF", + "name" : "Chateau Marmont", + "type" : "artist", + "uri" : "spotify:artist:4IQ782VL9bK0q2Judy9mIF" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 249093, + "explicit" : false, + "external_ids" : { + "isrc" : "FRU700900035" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6DvoV9W5QYjCcQuS0P0NkX" + }, + "href" : "https://api.spotify.com/v1/tracks/6DvoV9W5QYjCcQuS0P0NkX", + "id" : "6DvoV9W5QYjCcQuS0P0NkX", + "name" : "Beagle", + "popularity" : 0, + "preview_url" : null, + "track_number" : 13, + "type" : "track", + "uri" : "spotify:track:6DvoV9W5QYjCcQuS0P0NkX" + } + }, { + "added_at" : "2015-10-12T23:51:08Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2xl0yOa30v06meA1AfgBOz" + }, + "href" : "https://api.spotify.com/v1/albums/2xl0yOa30v06meA1AfgBOz", + "id" : "2xl0yOa30v06meA1AfgBOz", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/68783a100dc226f9dc32df0811d8769050899790", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/373dfa317eb833f9dbefce3dd139ab55e0e51445", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/4a6f294dea59625739400b424c68e8f4adb316ec", + "width" : 64 + } ], + "name" : "Ninja Tune Retrospect (No. 1)", + "type" : "album", + "uri" : "spotify:album:2xl0yOa30v06meA1AfgBOz" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3Gaqw2nGyE7yM3rcRSzE3U" + }, + "href" : "https://api.spotify.com/v1/artists/3Gaqw2nGyE7yM3rcRSzE3U", + "id" : "3Gaqw2nGyE7yM3rcRSzE3U", + "name" : "Yppah", + "type" : "artist", + "uri" : "spotify:artist:3Gaqw2nGyE7yM3rcRSzE3U" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 169173, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0601100" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3MTE6EKG6SPmQAs977RjYm" + }, + "href" : "https://api.spotify.com/v1/tracks/3MTE6EKG6SPmQAs977RjYm", + "id" : "3MTE6EKG6SPmQAs977RjYm", + "name" : "Again With The Subtitles", + "popularity" : 0, + "preview_url" : null, + "track_number" : 40, + "type" : "track", + "uri" : "spotify:track:3MTE6EKG6SPmQAs977RjYm" + } + }, { + "added_at" : "2015-10-13T00:04:54Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5dVua2HdrY1VlbPh6OM9KZ" + }, + "href" : "https://api.spotify.com/v1/artists/5dVua2HdrY1VlbPh6OM9KZ", + "id" : "5dVua2HdrY1VlbPh6OM9KZ", + "name" : "The Gaslamp Killer", + "type" : "artist", + "uri" : "spotify:artist:5dVua2HdrY1VlbPh6OM9KZ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7ueI0ZzEpiaEnINQ7K0XHx" + }, + "href" : "https://api.spotify.com/v1/albums/7ueI0ZzEpiaEnINQ7K0XHx", + "id" : "7ueI0ZzEpiaEnINQ7K0XHx", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/84e78c12cf92fe99702c58e90ab524569bc54481", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c3fc90cd0de38aa7d3fd2afba5f37fea7c942a77", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/c9af0f798de1cb01929d8030599c49dbec87ec28", + "width" : 64 + } ], + "name" : "Breakthrough", + "type" : "album", + "uri" : "spotify:album:7ueI0ZzEpiaEnINQ7K0XHx" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5dVua2HdrY1VlbPh6OM9KZ" + }, + "href" : "https://api.spotify.com/v1/artists/5dVua2HdrY1VlbPh6OM9KZ", + "id" : "5dVua2HdrY1VlbPh6OM9KZ", + "name" : "The Gaslamp Killer", + "type" : "artist", + "uri" : "spotify:artist:5dVua2HdrY1VlbPh6OM9KZ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/14us1FW9Y4HvqtT6lhiNIG" + }, + "href" : "https://api.spotify.com/v1/artists/14us1FW9Y4HvqtT6lhiNIG", + "id" : "14us1FW9Y4HvqtT6lhiNIG", + "name" : "Amir Yaghmai", + "type" : "artist", + "uri" : "spotify:artist:14us1FW9Y4HvqtT6lhiNIG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 271822, + "explicit" : true, + "external_ids" : { + "isrc" : "US25X1084065" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2eWEwCXPsjwxrxlGc77jXE" + }, + "href" : "https://api.spotify.com/v1/tracks/2eWEwCXPsjwxrxlGc77jXE", + "id" : "2eWEwCXPsjwxrxlGc77jXE", + "name" : "Nissim", + "popularity" : 53, + "preview_url" : "https://p.scdn.co/mp3-preview/9af6897a777429798e36c403f90279899f60bde9?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 14, + "type" : "track", + "uri" : "spotify:track:2eWEwCXPsjwxrxlGc77jXE" + } + }, { + "added_at" : "2015-10-13T00:08:12Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3qwxSif06Qwzykdln8ZGfG" + }, + "href" : "https://api.spotify.com/v1/artists/3qwxSif06Qwzykdln8ZGfG", + "id" : "3qwxSif06Qwzykdln8ZGfG", + "name" : "Wax Tailor", + "type" : "artist", + "uri" : "spotify:artist:3qwxSif06Qwzykdln8ZGfG" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2EDS1NviNhvxfrAnZowJtA" + }, + "href" : "https://api.spotify.com/v1/albums/2EDS1NviNhvxfrAnZowJtA", + "id" : "2EDS1NviNhvxfrAnZowJtA", + "images" : [ { + "height" : 579, + "url" : "https://i.scdn.co/image/ffe3b7f0caf04236402df965b046fc3478c3b74b", + "width" : 640 + }, { + "height" : 272, + "url" : "https://i.scdn.co/image/24e2678a75e5f937e4655662b9709eb367cc493e", + "width" : 300 + }, { + "height" : 58, + "url" : "https://i.scdn.co/image/18946e1c60bdaa24a3041eb89a33230d22340ad0", + "width" : 64 + } ], + "name" : "Hope & Sorrow", + "type" : "album", + "uri" : "spotify:album:2EDS1NviNhvxfrAnZowJtA" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3qwxSif06Qwzykdln8ZGfG" + }, + "href" : "https://api.spotify.com/v1/artists/3qwxSif06Qwzykdln8ZGfG", + "id" : "3qwxSif06Qwzykdln8ZGfG", + "name" : "Wax Tailor", + "type" : "artist", + "uri" : "spotify:artist:3qwxSif06Qwzykdln8ZGfG" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/01L6jvexr6BpNIfs0wHGkn" + }, + "href" : "https://api.spotify.com/v1/artists/01L6jvexr6BpNIfs0wHGkn", + "id" : "01L6jvexr6BpNIfs0wHGkn", + "name" : "ASM", + "type" : "artist", + "uri" : "spotify:artist:01L6jvexr6BpNIfs0wHGkn" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0ea0AGPmJm32GT2ZRkk0Jg" + }, + "href" : "https://api.spotify.com/v1/artists/0ea0AGPmJm32GT2ZRkk0Jg", + "id" : "0ea0AGPmJm32GT2ZRkk0Jg", + "name" : "Marina Quaisse", + "type" : "artist", + "uri" : "spotify:artist:0ea0AGPmJm32GT2ZRkk0Jg" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 219500, + "explicit" : false, + "external_ids" : { + "isrc" : "FR2DK0680070" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/52q3SJSbNPPAoZsMiT1LTf" + }, + "href" : "https://api.spotify.com/v1/tracks/52q3SJSbNPPAoZsMiT1LTf", + "id" : "52q3SJSbNPPAoZsMiT1LTf", + "name" : "Positively Inclined", + "popularity" : 1, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:52q3SJSbNPPAoZsMiT1LTf" + } + }, { + "added_at" : "2015-10-13T00:13:30Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2jYMYP2SVifgmzNRQJx3SJ" + }, + "href" : "https://api.spotify.com/v1/artists/2jYMYP2SVifgmzNRQJx3SJ", + "id" : "2jYMYP2SVifgmzNRQJx3SJ", + "name" : "Modeselektor", + "type" : "artist", + "uri" : "spotify:artist:2jYMYP2SVifgmzNRQJx3SJ" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2Z7AK7LpEsnYU3T27VWlF1" + }, + "href" : "https://api.spotify.com/v1/albums/2Z7AK7LpEsnYU3T27VWlF1", + "id" : "2Z7AK7LpEsnYU3T27VWlF1", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c734f57da5939baf09e1487849292bae536cbabf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e55fea6541e2522e27ee4ba63fb2d1f13b759401", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2c190cdf32bfa29f3623c6638f04768469aa551a", + "width" : 64 + } ], + "name" : "Monkeytown", + "type" : "album", + "uri" : "spotify:album:2Z7AK7LpEsnYU3T27VWlF1" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2jYMYP2SVifgmzNRQJx3SJ" + }, + "href" : "https://api.spotify.com/v1/artists/2jYMYP2SVifgmzNRQJx3SJ", + "id" : "2jYMYP2SVifgmzNRQJx3SJ", + "name" : "Modeselektor", + "type" : "artist", + "uri" : "spotify:artist:2jYMYP2SVifgmzNRQJx3SJ" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 284080, + "explicit" : false, + "external_ids" : { + "isrc" : "DEOE81100115" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3VbqGHfucltB1dmJnUon03" + }, + "href" : "https://api.spotify.com/v1/tracks/3VbqGHfucltB1dmJnUon03", + "id" : "3VbqGHfucltB1dmJnUon03", + "name" : "Berlin - feat. Miss Platnum", + "popularity" : 5, + "preview_url" : null, + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:3VbqGHfucltB1dmJnUon03" + } + } ], + "limit" : 100, + "next" : "https://api.spotify.com/v1/users/fireno/playlists/6bLUG95qFf8RRlCRI51Gi3/tracks?offset=100&limit=100", + "offset" : 0, + "previous" : null, + "total" : 211 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:6bLUG95qFf8RRlCRI51Gi3" +} \ No newline at end of file diff --git a/playlists_tracks.json b/playlists_tracks.json new file mode 100644 index 0000000..c69c9ac --- /dev/null +++ b/playlists_tracks.json @@ -0,0 +1,7916 @@ +{ + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6bLUG95qFf8RRlCRI51Gi3/tracks?offset=0&limit=100", + "items" : [ { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6JEtYDShXGTkOEUYr4BMID" + }, + "href" : "https://api.spotify.com/v1/artists/6JEtYDShXGTkOEUYr4BMID", + "id" : "6JEtYDShXGTkOEUYr4BMID", + "name" : "Wermonster", + "type" : "artist", + "uri" : "spotify:artist:6JEtYDShXGTkOEUYr4BMID" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6fkewfC1mQq4aRS1IxVsup" + }, + "href" : "https://api.spotify.com/v1/albums/6fkewfC1mQq4aRS1IxVsup", + "id" : "6fkewfC1mQq4aRS1IxVsup", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7f5aee557d839288d7e761abdf7ec6afaa731822", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c3e370eb36bf9a8b966e1f50863f964937388608", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/f634a1932d40eb4c264f4ab145b76545f960eaf3", + "width" : 64 + } ], + "name" : "Katalyst Sessions Vol. 1", + "type" : "album", + "uri" : "spotify:album:6fkewfC1mQq4aRS1IxVsup" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6JEtYDShXGTkOEUYr4BMID" + }, + "href" : "https://api.spotify.com/v1/artists/6JEtYDShXGTkOEUYr4BMID", + "id" : "6JEtYDShXGTkOEUYr4BMID", + "name" : "Wermonster", + "type" : "artist", + "uri" : "spotify:artist:6JEtYDShXGTkOEUYr4BMID" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 51240, + "explicit" : false, + "external_ids" : { + "isrc" : "AUMDB1300059" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4rLS1l4m0ovAH8qOQ9oh1e" + }, + "href" : "https://api.spotify.com/v1/tracks/4rLS1l4m0ovAH8qOQ9oh1e", + "id" : "4rLS1l4m0ovAH8qOQ9oh1e", + "name" : "Higher, Go, Go, Go!", + "popularity" : 0, + "preview_url" : null, + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:4rLS1l4m0ovAH8qOQ9oh1e" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/25c6ClkRdfKIufvnfT6bfh" + }, + "href" : "https://api.spotify.com/v1/albums/25c6ClkRdfKIufvnfT6bfh", + "id" : "25c6ClkRdfKIufvnfT6bfh", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/6c41f2ed62f8e2c527b4173fbff358e4816adef9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/4402177c3cde986aaa0ddb0199a771fc6672eefc", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6e019b9abb75de98dfc52b40f57e72f84e7661fe", + "width" : 64 + } ], + "name" : "Hard Islands", + "type" : "album", + "uri" : "spotify:album:25c6ClkRdfKIufvnfT6bfh" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 380280, + "explicit" : false, + "external_ids" : { + "isrc" : "GBUZD0802501" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6c5k4FhXJEmCyJGQOnKQdn" + }, + "href" : "https://api.spotify.com/v1/tracks/6c5k4FhXJEmCyJGQOnKQdn", + "id" : "6c5k4FhXJEmCyJGQOnKQdn", + "name" : "The Turtle", + "popularity" : 23, + "preview_url" : "https://p.scdn.co/mp3-preview/f94fdf28600a8b6e8f061ab1024fae768ccab9f3?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:6c5k4FhXJEmCyJGQOnKQdn" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3qAt0pasO26XGFf8lSdZ9j" + }, + "href" : "https://api.spotify.com/v1/albums/3qAt0pasO26XGFf8lSdZ9j", + "id" : "3qAt0pasO26XGFf8lSdZ9j", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5f9fb1ac46cfad7cb5bc3ec998692618d3e143cf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/0619df366812c516536b06c842bfc229e9e8a4c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d11e875a44498f696857c2ffa2a4f45ab2a00bef", + "width" : 64 + } ], + "name" : "Sparks EP", + "type" : "album", + "uri" : "spotify:album:3qAt0pasO26XGFf8lSdZ9j" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 181149, + "explicit" : false, + "external_ids" : { + "isrc" : "QMHHY1300002" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5K4ExI2qvE1Ule3u7LxUDT" + }, + "href" : "https://api.spotify.com/v1/tracks/5K4ExI2qvE1Ule3u7LxUDT", + "id" : "5K4ExI2qvE1Ule3u7LxUDT", + "name" : "Marijuana", + "popularity" : 51, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:5K4ExI2qvE1Ule3u7LxUDT" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/55ualHsmcxXF3HL52WrAxg" + }, + "href" : "https://api.spotify.com/v1/albums/55ualHsmcxXF3HL52WrAxg", + "id" : "55ualHsmcxXF3HL52WrAxg", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/00395049f68f584b209aed59f72243aa4a8979fe", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c546b6cdd20794c27e15c53af62c637c4eee00c4", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/9cf1f66697b536cc69cabaaf926e664b4ce66a02", + "width" : 64 + } ], + "name" : "F*>k Dance Let's Art - Sounds from a new American Underground", + "type" : "album", + "uri" : "spotify:album:55ualHsmcxXF3HL52WrAxg" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/49jnSQa0nLfgkSREjJ03Az" + }, + "href" : "https://api.spotify.com/v1/artists/49jnSQa0nLfgkSREjJ03Az", + "id" : "49jnSQa0nLfgkSREjJ03Az", + "name" : "Balam Acab", + "type" : "artist", + "uri" : "spotify:artist:49jnSQa0nLfgkSREjJ03Az" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228923, + "explicit" : false, + "external_ids" : { + "isrc" : "DEG931000186" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4gsRS1JMb2KzVhZWeCdQXu" + }, + "href" : "https://api.spotify.com/v1/tracks/4gsRS1JMb2KzVhZWeCdQXu", + "id" : "4gsRS1JMb2KzVhZWeCdQXu", + "name" : "See Birds (Moon)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:4gsRS1JMb2KzVhZWeCdQXu" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/71atOmlAjqT0QIFbLcRa0a" + }, + "href" : "https://api.spotify.com/v1/albums/71atOmlAjqT0QIFbLcRa0a", + "id" : "71atOmlAjqT0QIFbLcRa0a", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/3409e094598e1465f7d6883c865013264ec53086", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3a963b4ef78148dc6d48976ceeaade0a5bd1e64a", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/32bb2d34c8cbe2fe6e5159bc97a10f420a93cb4c", + "width" : 64 + } ], + "name" : "The Last Resort", + "type" : "album", + "uri" : "spotify:album:71atOmlAjqT0QIFbLcRa0a" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 366239, + "explicit" : false, + "external_ids" : { + "isrc" : "DEL020620041" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1nkpG5W9Vt6jGB1eMW9Jl4" + }, + "href" : "https://api.spotify.com/v1/tracks/1nkpG5W9Vt6jGB1eMW9Jl4", + "id" : "1nkpG5W9Vt6jGB1eMW9Jl4", + "name" : "Evil Dub - Original Mix", + "popularity" : 2, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:1nkpG5W9Vt6jGB1eMW9Jl4" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2w9qrrsJaLRQuZPJeI9acc" + }, + "href" : "https://api.spotify.com/v1/albums/2w9qrrsJaLRQuZPJeI9acc", + "id" : "2w9qrrsJaLRQuZPJeI9acc", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/1ba255afaa6ef90f6ca554b7f673065bc41b1757", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3b4c8dcfb03217cf69216152a8f4f5716253ece1", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/39a9fec78befedda22a8298f109fb1dda08c9ed0", + "width" : 64 + } ], + "name" : "Dub Side Of The Moon", + "type" : "album", + "uri" : "spotify:album:2w9qrrsJaLRQuZPJeI9acc" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 232360, + "explicit" : false, + "external_ids" : { + "isrc" : "US4CL0310014" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5L7QptioCo73sGCTfAj7ln" + }, + "href" : "https://api.spotify.com/v1/tracks/5L7QptioCo73sGCTfAj7ln", + "id" : "5L7QptioCo73sGCTfAj7ln", + "name" : "Speak To Me / Breathe", + "popularity" : 41, + "preview_url" : "https://p.scdn.co/mp3-preview/cda3984ac4f93de9fbe9e7ebfa70f3b23a1aa67e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5L7QptioCo73sGCTfAj7ln" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2w9qrrsJaLRQuZPJeI9acc" + }, + "href" : "https://api.spotify.com/v1/albums/2w9qrrsJaLRQuZPJeI9acc", + "id" : "2w9qrrsJaLRQuZPJeI9acc", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/1ba255afaa6ef90f6ca554b7f673065bc41b1757", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3b4c8dcfb03217cf69216152a8f4f5716253ece1", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/39a9fec78befedda22a8298f109fb1dda08c9ed0", + "width" : 64 + } ], + "name" : "Dub Side Of The Moon", + "type" : "album", + "uri" : "spotify:album:2w9qrrsJaLRQuZPJeI9acc" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 418493, + "explicit" : false, + "external_ids" : { + "isrc" : "US4CL0310016" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1uLBDlBZROhCvLAX5LdKrI" + }, + "href" : "https://api.spotify.com/v1/tracks/1uLBDlBZROhCvLAX5LdKrI", + "id" : "1uLBDlBZROhCvLAX5LdKrI", + "name" : "Time", + "popularity" : 43, + "preview_url" : "https://p.scdn.co/mp3-preview/792384bd068f995a75816a41bf4682674bf8c7e0?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:1uLBDlBZROhCvLAX5LdKrI" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4SQdUpG4f7UbkJG3cJ2Iyj" + }, + "href" : "https://api.spotify.com/v1/artists/4SQdUpG4f7UbkJG3cJ2Iyj", + "id" : "4SQdUpG4f7UbkJG3cJ2Iyj", + "name" : "Arca", + "type" : "artist", + "uri" : "spotify:artist:4SQdUpG4f7UbkJG3cJ2Iyj" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5FLsmazQWaDK9JGqdzHlN4" + }, + "href" : "https://api.spotify.com/v1/albums/5FLsmazQWaDK9JGqdzHlN4", + "id" : "5FLsmazQWaDK9JGqdzHlN4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/23549e3bafcf5c2daa3e08e09e3feffae5ef23c5", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5a50de963bbc9c97d661e0b8afa40b08909865ba", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3160a3620e7083ee4278e5ed9a5222334f0f6c08", + "width" : 64 + } ], + "name" : "Xen", + "type" : "album", + "uri" : "spotify:album:5FLsmazQWaDK9JGqdzHlN4" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4SQdUpG4f7UbkJG3cJ2Iyj" + }, + "href" : "https://api.spotify.com/v1/artists/4SQdUpG4f7UbkJG3cJ2Iyj", + "id" : "4SQdUpG4f7UbkJG3cJ2Iyj", + "name" : "Arca", + "type" : "artist", + "uri" : "spotify:artist:4SQdUpG4f7UbkJG3cJ2Iyj" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 153704, + "explicit" : false, + "external_ids" : { + "isrc" : "GBR8R1301416" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1zAmcM2z58kvlMkca8E7RJ" + }, + "href" : "https://api.spotify.com/v1/tracks/1zAmcM2z58kvlMkca8E7RJ", + "id" : "1zAmcM2z58kvlMkca8E7RJ", + "name" : "Thievery", + "popularity" : 33, + "preview_url" : "https://p.scdn.co/mp3-preview/857ee8b425c7bd76aafc6ce029607fcd5df78882?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:1zAmcM2z58kvlMkca8E7RJ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3Q88Bnf3dgZC1wQtqF6smV" + }, + "href" : "https://api.spotify.com/v1/albums/3Q88Bnf3dgZC1wQtqF6smV", + "id" : "3Q88Bnf3dgZC1wQtqF6smV", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/f8eb0551dde8f6ffc9416a0ad272dd56f494eaf4", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/485f142d1d53826d46ba47391c115d583954d2d3", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/8378025848e5e7ba84f024394410b0dd4ffa671e", + "width" : 64 + } ], + "name" : "You Are Here", + "type" : "album", + "uri" : "spotify:album:3Q88Bnf3dgZC1wQtqF6smV" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 329173, + "explicit" : false, + "external_ids" : { + "isrc" : "GBLBR0500035" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7n5BsnvSFh1QZ4qbedUeDQ" + }, + "href" : "https://api.spotify.com/v1/tracks/7n5BsnvSFh1QZ4qbedUeDQ", + "id" : "7n5BsnvSFh1QZ4qbedUeDQ", + "name" : "You Are Here - Four Tet Remix", + "popularity" : 39, + "preview_url" : "https://p.scdn.co/mp3-preview/2faaa05a1bbb7f827db04977dfc98fa80b41bb8d?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:7n5BsnvSFh1QZ4qbedUeDQ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1mZU5Jcgrz1rUJMtBvREyf" + }, + "href" : "https://api.spotify.com/v1/albums/1mZU5Jcgrz1rUJMtBvREyf", + "id" : "1mZU5Jcgrz1rUJMtBvREyf", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/f64153a96e3b7cfd7a85378ffecc51df1c1f1efb", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/90d3bcfdf32b0246c8faf35a172348624f06fdce", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/746d7d35038463e13dc9ca9e4e0de63ed9a488d4", + "width" : 64 + } ], + "name" : "The Sky Was Pink", + "type" : "album", + "uri" : "spotify:album:1mZU5Jcgrz1rUJMtBvREyf" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 570586, + "explicit" : false, + "external_ids" : { + "isrc" : "GBUZD0800603" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/351LyEn9dxRxgkl28GwQtl" + }, + "href" : "https://api.spotify.com/v1/tracks/351LyEn9dxRxgkl28GwQtl", + "id" : "351LyEn9dxRxgkl28GwQtl", + "name" : "The Sky Was Pink - Holden Remix", + "popularity" : 49, + "preview_url" : "https://p.scdn.co/mp3-preview/88b9e3407707e6b6fddb84429b3fd995b94696a6?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:351LyEn9dxRxgkl28GwQtl" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3qAt0pasO26XGFf8lSdZ9j" + }, + "href" : "https://api.spotify.com/v1/albums/3qAt0pasO26XGFf8lSdZ9j", + "id" : "3qAt0pasO26XGFf8lSdZ9j", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5f9fb1ac46cfad7cb5bc3ec998692618d3e143cf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/0619df366812c516536b06c842bfc229e9e8a4c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d11e875a44498f696857c2ffa2a4f45ab2a00bef", + "width" : 64 + } ], + "name" : "Sparks EP", + "type" : "album", + "uri" : "spotify:album:3qAt0pasO26XGFf8lSdZ9j" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 256341, + "explicit" : false, + "external_ids" : { + "isrc" : "QMHHY1300006" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4Xgk8q4SoFNLSNrNuYpnz6" + }, + "href" : "https://api.spotify.com/v1/tracks/4Xgk8q4SoFNLSNrNuYpnz6", + "id" : "4Xgk8q4SoFNLSNrNuYpnz6", + "name" : "Luna Luxor", + "popularity" : 21, + "preview_url" : null, + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:4Xgk8q4SoFNLSNrNuYpnz6" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7rf78GoGZ2QEt7Utt1M6ca" + }, + "href" : "https://api.spotify.com/v1/albums/7rf78GoGZ2QEt7Utt1M6ca", + "id" : "7rf78GoGZ2QEt7Utt1M6ca", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c142078ae5b4c59ac635d4c2b3e07976891557de", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e7ba6898a23b05dfb537c32d37202f8b9972202d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/5fc3595f39c1a379ff0f79d6ca3228d2107de16f", + "width" : 64 + } ], + "name" : "My <3", + "type" : "album", + "uri" : "spotify:album:7rf78GoGZ2QEt7Utt1M6ca" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 324406, + "explicit" : false, + "external_ids" : { + "isrc" : "TCABK1294018" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1t80ynn4Zml0aeOXzgjK4f" + }, + "href" : "https://api.spotify.com/v1/tracks/1t80ynn4Zml0aeOXzgjK4f", + "id" : "1t80ynn4Zml0aeOXzgjK4f", + "name" : "Show You My Way", + "popularity" : 35, + "preview_url" : "https://p.scdn.co/mp3-preview/8f9f20415b98ff926b8207944ac13b1fede74245?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:1t80ynn4Zml0aeOXzgjK4f" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7rf78GoGZ2QEt7Utt1M6ca" + }, + "href" : "https://api.spotify.com/v1/albums/7rf78GoGZ2QEt7Utt1M6ca", + "id" : "7rf78GoGZ2QEt7Utt1M6ca", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c142078ae5b4c59ac635d4c2b3e07976891557de", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e7ba6898a23b05dfb537c32d37202f8b9972202d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/5fc3595f39c1a379ff0f79d6ca3228d2107de16f", + "width" : 64 + } ], + "name" : "My <3", + "type" : "album", + "uri" : "spotify:album:7rf78GoGZ2QEt7Utt1M6ca" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3bux8mURESsz7iA9yoP3Jf" + }, + "href" : "https://api.spotify.com/v1/artists/3bux8mURESsz7iA9yoP3Jf", + "id" : "3bux8mURESsz7iA9yoP3Jf", + "name" : "Steffaloo", + "type" : "artist", + "uri" : "spotify:artist:3bux8mURESsz7iA9yoP3Jf" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 260294, + "explicit" : false, + "external_ids" : { + "isrc" : "TCABK1294013" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1SARbfnOIcuohWfh4pdLuC" + }, + "href" : "https://api.spotify.com/v1/tracks/1SARbfnOIcuohWfh4pdLuC", + "id" : "1SARbfnOIcuohWfh4pdLuC", + "name" : "All There Is (feat. Steffaloo)", + "popularity" : 47, + "preview_url" : "https://p.scdn.co/mp3-preview/dbcdae4058f0f246c54fe78c9f0da3319a544d0b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:1SARbfnOIcuohWfh4pdLuC" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6ly2Z6h9dOerORbK1l2N8D" + }, + "href" : "https://api.spotify.com/v1/artists/6ly2Z6h9dOerORbK1l2N8D", + "id" : "6ly2Z6h9dOerORbK1l2N8D", + "name" : "Coucheron", + "type" : "artist", + "uri" : "spotify:artist:6ly2Z6h9dOerORbK1l2N8D" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6x5qMgvftyqTQBEmsymZ4i" + }, + "href" : "https://api.spotify.com/v1/albums/6x5qMgvftyqTQBEmsymZ4i", + "id" : "6x5qMgvftyqTQBEmsymZ4i", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/dd181dda614dc7cadc3ced3a2bf3f30b1a9e1e71", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/79e67a8b8fd4d3112eb8bcf4fe322cb375053eca", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/943bacc9ad1f29020960245882a4e30106cb9e70", + "width" : 64 + } ], + "name" : "Deep End (feat. Eastside and Mayer Hawthorne)", + "type" : "album", + "uri" : "spotify:album:6x5qMgvftyqTQBEmsymZ4i" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6ly2Z6h9dOerORbK1l2N8D" + }, + "href" : "https://api.spotify.com/v1/artists/6ly2Z6h9dOerORbK1l2N8D", + "id" : "6ly2Z6h9dOerORbK1l2N8D", + "name" : "Coucheron", + "type" : "artist", + "uri" : "spotify:artist:6ly2Z6h9dOerORbK1l2N8D" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4V0CCS8B5BzCfXICjVfyi5" + }, + "href" : "https://api.spotify.com/v1/artists/4V0CCS8B5BzCfXICjVfyi5", + "id" : "4V0CCS8B5BzCfXICjVfyi5", + "name" : "East Side", + "type" : "artist", + "uri" : "spotify:artist:4V0CCS8B5BzCfXICjVfyi5" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4d53BMrRlQkrQMz5d59f2O" + }, + "href" : "https://api.spotify.com/v1/artists/4d53BMrRlQkrQMz5d59f2O", + "id" : "4d53BMrRlQkrQMz5d59f2O", + "name" : "Mayer Hawthorne", + "type" : "artist", + "uri" : "spotify:artist:4d53BMrRlQkrQMz5d59f2O" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 210421, + "explicit" : false, + "external_ids" : { + "isrc" : "USAT21401781" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6kCxcZRkvSYXYVuBGCkhzx" + }, + "href" : "https://api.spotify.com/v1/tracks/6kCxcZRkvSYXYVuBGCkhzx", + "id" : "6kCxcZRkvSYXYVuBGCkhzx", + "name" : "Deep End (feat. Eastside and Mayer Hawthorne)", + "popularity" : 34, + "preview_url" : "https://p.scdn.co/mp3-preview/d356e9e6f511a5fd436a818abe2c0a6fb6f90610?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:6kCxcZRkvSYXYVuBGCkhzx" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1p3J6laThbGvAuz642q1O6" + }, + "href" : "https://api.spotify.com/v1/artists/1p3J6laThbGvAuz642q1O6", + "id" : "1p3J6laThbGvAuz642q1O6", + "name" : "Britta Persson", + "type" : "artist", + "uri" : "spotify:artist:1p3J6laThbGvAuz642q1O6" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/262cPLTeWxmx2PkYJ9XAYu" + }, + "href" : "https://api.spotify.com/v1/albums/262cPLTeWxmx2PkYJ9XAYu", + "id" : "262cPLTeWxmx2PkYJ9XAYu", + "images" : [ { + "height" : 635, + "url" : "https://i.scdn.co/image/c329723c3dc6f142c63b376472d093c214a9c3a5", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/2870db01cecb6c0e0c1da106658f1f60c854039d", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/6a6ee1a094de657638b71c86bf819d668ac0e100", + "width" : 64 + } ], + "name" : "If I Was a Band My Name Would Be Forevers", + "type" : "album", + "uri" : "spotify:album:262cPLTeWxmx2PkYJ9XAYu" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1p3J6laThbGvAuz642q1O6" + }, + "href" : "https://api.spotify.com/v1/artists/1p3J6laThbGvAuz642q1O6", + "id" : "1p3J6laThbGvAuz642q1O6", + "name" : "Britta Persson", + "type" : "artist", + "uri" : "spotify:artist:1p3J6laThbGvAuz642q1O6" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 197866, + "explicit" : false, + "external_ids" : { + "isrc" : "SEWBD1304703" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5oYCY3xAQl7rBWEfqJf2Ly" + }, + "href" : "https://api.spotify.com/v1/tracks/5oYCY3xAQl7rBWEfqJf2Ly", + "id" : "5oYCY3xAQl7rBWEfqJf2Ly", + "name" : "Baby No Name", + "popularity" : 25, + "preview_url" : "https://p.scdn.co/mp3-preview/d12a84ba2ff88b1453cce75e26079faaeb02762a?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:5oYCY3xAQl7rBWEfqJf2Ly" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E" + }, + "href" : "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E", + "id" : "1SQRv42e4PjEYfPhS0Tk9E", + "name" : "The Kinks", + "type" : "artist", + "uri" : "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2R0lR3exaV33RnKob1WebK" + }, + "href" : "https://api.spotify.com/v1/albums/2R0lR3exaV33RnKob1WebK", + "id" : "2R0lR3exaV33RnKob1WebK", + "images" : [ { + "height" : 633, + "url" : "https://i.scdn.co/image/01486f9ab20fabdd3f171fe83ebc63e6a45c122d", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/d9f86260572719100a361f8c58da447df75309ce", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/471a1eea51239262d5e44559562a2a33a8b9c290", + "width" : 64 + } ], + "name" : "Lola Versus Powerman and the Moneygoround / Percy", + "type" : "album", + "uri" : "spotify:album:2R0lR3exaV33RnKob1WebK" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E" + }, + "href" : "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E", + "id" : "1SQRv42e4PjEYfPhS0Tk9E", + "name" : "The Kinks", + "type" : "artist", + "uri" : "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 198786, + "explicit" : false, + "external_ids" : { + "isrc" : "GB5KW1499813" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6DmRxql5V6AyMj90qM8j22" + }, + "href" : "https://api.spotify.com/v1/tracks/6DmRxql5V6AyMj90qM8j22", + "id" : "6DmRxql5V6AyMj90qM8j22", + "name" : "Strangers (Remastered)", + "popularity" : 1, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:6DmRxql5V6AyMj90qM8j22" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2h8TFu6gGks8knK9DgdKvH" + }, + "href" : "https://api.spotify.com/v1/albums/2h8TFu6gGks8knK9DgdKvH", + "id" : "2h8TFu6gGks8knK9DgdKvH", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/60053b3f105ad0eeaff750eb0ea24f006b96cf2d", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6d125fc8186effeb46ab692b5b452a9bc7554546", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/f126d70753c4311d91b665be791fb856beb170a5", + "width" : 64 + } ], + "name" : "Chance", + "type" : "album", + "uri" : "spotify:album:2h8TFu6gGks8knK9DgdKvH" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 349253, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBXM8010006" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/52iKwpwgxhC7Xcb1BNLSTo" + }, + "href" : "https://api.spotify.com/v1/tracks/52iKwpwgxhC7Xcb1BNLSTo", + "id" : "52iKwpwgxhC7Xcb1BNLSTo", + "name" : "Stranded", + "popularity" : 0, + "preview_url" : null, + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:52iKwpwgxhC7Xcb1BNLSTo" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4he7R24eqd1EbF9kegiAK8" + }, + "href" : "https://api.spotify.com/v1/albums/4he7R24eqd1EbF9kegiAK8", + "id" : "4he7R24eqd1EbF9kegiAK8", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/964e87f80e22f2cd1545c23ee9cde663fadf049d", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/73ec8855bae5e835a281355708d5c1bbc2368e31", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/492ca27bce61df6e267b066638f22b9136fc7130", + "width" : 64 + } ], + "name" : "R&B: From Doo-Wop To Hip-Hop", + "type" : "album", + "uri" : "spotify:album:4he7R24eqd1EbF9kegiAK8" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3VBpsrUi2vV7Uj87ONHu7Z" + }, + "href" : "https://api.spotify.com/v1/artists/3VBpsrUi2vV7Uj87ONHu7Z", + "id" : "3VBpsrUi2vV7Uj87ONHu7Z", + "name" : "Screamin' Jay Hawkins", + "type" : "artist", + "uri" : "spotify:artist:3VBpsrUi2vV7Uj87ONHu7Z" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 144360, + "explicit" : false, + "external_ids" : { + "isrc" : "USSM15600404" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1YwoYPfhuZlLDbJUH1cKSi" + }, + "href" : "https://api.spotify.com/v1/tracks/1YwoYPfhuZlLDbJUH1cKSi", + "id" : "1YwoYPfhuZlLDbJUH1cKSi", + "name" : "I Put a Spell on You", + "popularity" : 50, + "preview_url" : null, + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:1YwoYPfhuZlLDbJUH1cKSi" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/78gL6j8IridZeSo4ZSRErN" + }, + "href" : "https://api.spotify.com/v1/artists/78gL6j8IridZeSo4ZSRErN", + "id" : "78gL6j8IridZeSo4ZSRErN", + "name" : "Erobique & Jacques Palminger", + "type" : "artist", + "uri" : "spotify:artist:78gL6j8IridZeSo4ZSRErN" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/49TSZRZQUni1mNsKTLfJ9l" + }, + "href" : "https://api.spotify.com/v1/albums/49TSZRZQUni1mNsKTLfJ9l", + "id" : "49TSZRZQUni1mNsKTLfJ9l", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5622c316dcdf97b89cb8c12644dec7726a52b171", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/721f579bb33c21f6c684390018a1ad474542d654", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/70d3181af958b3db2a5f7613cb5f67c3d3ceb467", + "width" : 64 + } ], + "name" : "Songs For Joy", + "type" : "album", + "uri" : "spotify:album:49TSZRZQUni1mNsKTLfJ9l" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2q5k03p4Hub2VWiiWYj02d" + }, + "href" : "https://api.spotify.com/v1/artists/2q5k03p4Hub2VWiiWYj02d", + "id" : "2q5k03p4Hub2VWiiWYj02d", + "name" : "Jacques Palminger", + "type" : "artist", + "uri" : "spotify:artist:2q5k03p4Hub2VWiiWYj02d" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2Gde0DBcgb2YE6AV1lqLxH" + }, + "href" : "https://api.spotify.com/v1/artists/2Gde0DBcgb2YE6AV1lqLxH", + "id" : "2Gde0DBcgb2YE6AV1lqLxH", + "name" : "Erobique", + "type" : "artist", + "uri" : "spotify:artist:2Gde0DBcgb2YE6AV1lqLxH" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 215120, + "explicit" : false, + "external_ids" : { + "isrc" : "DEEH60900200" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6md2CABkr8nWRehibuWqBU" + }, + "href" : "https://api.spotify.com/v1/tracks/6md2CABkr8nWRehibuWqBU", + "id" : "6md2CABkr8nWRehibuWqBU", + "name" : "Wann strahlst Du?", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:6md2CABkr8nWRehibuWqBU" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1pP9NCI4oFVEEFmywg2l7l" + }, + "href" : "https://api.spotify.com/v1/albums/1pP9NCI4oFVEEFmywg2l7l", + "id" : "1pP9NCI4oFVEEFmywg2l7l", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a17e21304113ca3b8c691a35e2ba1c171d4efff2", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/da647c96acf9621fc8cdeed1ceecf96a4b16986d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/db1a60a257f16fa4609e3d7a2dd5838929aabc8d", + "width" : 64 + } ], + "name" : "Lookin At Me", + "type" : "album", + "uri" : "spotify:album:1pP9NCI4oFVEEFmywg2l7l" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2pTCZ9C1fXdaVlv6d5EIXM" + }, + "href" : "https://api.spotify.com/v1/artists/2pTCZ9C1fXdaVlv6d5EIXM", + "id" : "2pTCZ9C1fXdaVlv6d5EIXM", + "name" : "Chrome Sparks", + "type" : "artist", + "uri" : "spotify:artist:2pTCZ9C1fXdaVlv6d5EIXM" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 229067, + "explicit" : false, + "external_ids" : { + "isrc" : "AUFF01300498" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/29vGLdslqzVI03uzOvubIu" + }, + "href" : "https://api.spotify.com/v1/tracks/29vGLdslqzVI03uzOvubIu", + "id" : "29vGLdslqzVI03uzOvubIu", + "name" : "Lookin At Me", + "popularity" : 14, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:29vGLdslqzVI03uzOvubIu" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/19hdPMPxqnCrJyy6H0b6Uk" + }, + "href" : "https://api.spotify.com/v1/albums/19hdPMPxqnCrJyy6H0b6Uk", + "id" : "19hdPMPxqnCrJyy6H0b6Uk", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ed6c6b1e76532ecb23c588673633cae5cbe55b4f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6d0e210b98bd1f4478cbb16ad073837d10ef237d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6611cde3b45cbcb38171b1f78c6710355eb7395e", + "width" : 64 + } ], + "name" : "Glaive", + "type" : "album", + "uri" : "spotify:album:19hdPMPxqnCrJyy6H0b6Uk" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 460791, + "explicit" : false, + "external_ids" : { + "isrc" : "UK8E41500201" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2PM835gy6YfVGNF4BnmRr4" + }, + "href" : "https://api.spotify.com/v1/tracks/2PM835gy6YfVGNF4BnmRr4", + "id" : "2PM835gy6YfVGNF4BnmRr4", + "name" : "Fortune Bru", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:2PM835gy6YfVGNF4BnmRr4" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/19hdPMPxqnCrJyy6H0b6Uk" + }, + "href" : "https://api.spotify.com/v1/albums/19hdPMPxqnCrJyy6H0b6Uk", + "id" : "19hdPMPxqnCrJyy6H0b6Uk", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ed6c6b1e76532ecb23c588673633cae5cbe55b4f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6d0e210b98bd1f4478cbb16ad073837d10ef237d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6611cde3b45cbcb38171b1f78c6710355eb7395e", + "width" : 64 + } ], + "name" : "Glaive", + "type" : "album", + "uri" : "spotify:album:19hdPMPxqnCrJyy6H0b6Uk" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5rZVjGkZZI4TnpMHQwrxfG" + }, + "href" : "https://api.spotify.com/v1/artists/5rZVjGkZZI4TnpMHQwrxfG", + "id" : "5rZVjGkZZI4TnpMHQwrxfG", + "name" : "Nathan Fake", + "type" : "artist", + "uri" : "spotify:artist:5rZVjGkZZI4TnpMHQwrxfG" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 302465, + "explicit" : false, + "external_ids" : { + "isrc" : "UK8E41500203" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3XyAmICqdDcrI7NjGXuPze" + }, + "href" : "https://api.spotify.com/v1/tracks/3XyAmICqdDcrI7NjGXuPze", + "id" : "3XyAmICqdDcrI7NjGXuPze", + "name" : "Audio Gold", + "popularity" : 0, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:3XyAmICqdDcrI7NjGXuPze" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5hE6NCoobhyEu6TRSbjOJY" + }, + "href" : "https://api.spotify.com/v1/artists/5hE6NCoobhyEu6TRSbjOJY", + "id" : "5hE6NCoobhyEu6TRSbjOJY", + "name" : "Fever Ray", + "type" : "artist", + "uri" : "spotify:artist:5hE6NCoobhyEu6TRSbjOJY" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/56pR0SwZfVQFSIVWzM1eow" + }, + "href" : "https://api.spotify.com/v1/albums/56pR0SwZfVQFSIVWzM1eow", + "id" : "56pR0SwZfVQFSIVWzM1eow", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/36cf4c430153d48a2816d2cc3c90b1d03898087f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/2a494d65e66ee04f3aa691d329e9d1ee753c0525", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/cb2491696501f4b549f36ab3a82482b4652b8451", + "width" : 64 + } ], + "name" : "Fever Ray (Deluxe Edition)", + "type" : "album", + "uri" : "spotify:album:56pR0SwZfVQFSIVWzM1eow" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5hE6NCoobhyEu6TRSbjOJY" + }, + "href" : "https://api.spotify.com/v1/artists/5hE6NCoobhyEu6TRSbjOJY", + "id" : "5hE6NCoobhyEu6TRSbjOJY", + "name" : "Fever Ray", + "type" : "artist", + "uri" : "spotify:artist:5hE6NCoobhyEu6TRSbjOJY" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 227866, + "explicit" : true, + "external_ids" : { + "isrc" : "SEWCE0900201" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2CsyBDeoseWK98FOGbSiZR" + }, + "href" : "https://api.spotify.com/v1/tracks/2CsyBDeoseWK98FOGbSiZR", + "id" : "2CsyBDeoseWK98FOGbSiZR", + "name" : "If I Had a Heart", + "popularity" : 50, + "preview_url" : "https://p.scdn.co/mp3-preview/4cd239c45fb0ce3a8110018aee3415272683c006?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:2CsyBDeoseWK98FOGbSiZR" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "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" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1TY8JzETLheB4vm5QblKsF" + }, + "href" : "https://api.spotify.com/v1/artists/1TY8JzETLheB4vm5QblKsF", + "id" : "1TY8JzETLheB4vm5QblKsF", + "name" : "Daniele Luppi", + "type" : "artist", + "uri" : "spotify:artist:1TY8JzETLheB4vm5QblKsF" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2nBo5nFoszkjuY0bxv1y0A" + }, + "href" : "https://api.spotify.com/v1/albums/2nBo5nFoszkjuY0bxv1y0A", + "id" : "2nBo5nFoszkjuY0bxv1y0A", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5abc17281a0890ccfb304ff233526028613a64e8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/a319407de8ac16046989a529ed546706da365d8c", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/daa6ff8370adc0f019d402c90080ed310f1d5cef", + "width" : 64 + } ], + "name" : "Rome", + "type" : "album", + "uri" : "spotify:album:2nBo5nFoszkjuY0bxv1y0A" + }, + "artists" : [ { + "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" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1TY8JzETLheB4vm5QblKsF" + }, + "href" : "https://api.spotify.com/v1/artists/1TY8JzETLheB4vm5QblKsF", + "id" : "1TY8JzETLheB4vm5QblKsF", + "name" : "Daniele Luppi", + "type" : "artist", + "uri" : "spotify:artist:1TY8JzETLheB4vm5QblKsF" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2Kx7MNY7cI1ENniW7vT30N" + }, + "href" : "https://api.spotify.com/v1/artists/2Kx7MNY7cI1ENniW7vT30N", + "id" : "2Kx7MNY7cI1ENniW7vT30N", + "name" : "Norah Jones", + "type" : "artist", + "uri" : "spotify:artist:2Kx7MNY7cI1ENniW7vT30N" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 211506, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAYE1001387" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5H43dazn2x2O9dkDVvaiDS" + }, + "href" : "https://api.spotify.com/v1/tracks/5H43dazn2x2O9dkDVvaiDS", + "id" : "5H43dazn2x2O9dkDVvaiDS", + "name" : "Black (feat. Norah Jones)", + "popularity" : 52, + "preview_url" : "https://p.scdn.co/mp3-preview/9e08c5d87e1b9cc23334ce3cd9d8f2bfed37f756?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:5H43dazn2x2O9dkDVvaiDS" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3evTEdMpLTXkvA6GfmvpGB" + }, + "href" : "https://api.spotify.com/v1/artists/3evTEdMpLTXkvA6GfmvpGB", + "id" : "3evTEdMpLTXkvA6GfmvpGB", + "name" : "Ital Skurk", + "type" : "artist", + "uri" : "spotify:artist:3evTEdMpLTXkvA6GfmvpGB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/28p9F6GZYkhoBIF7Sotkwm" + }, + "href" : "https://api.spotify.com/v1/albums/28p9F6GZYkhoBIF7Sotkwm", + "id" : "28p9F6GZYkhoBIF7Sotkwm", + "images" : [ { + "height" : 350, + "url" : "https://i.scdn.co/image/effe47e069894b8b29ad290d83b6b25d6ae19d5e", + "width" : 350 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/cdf5b170f8c734c08cb87d830c03b282272ae0e5", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/7a3d1ffc1a40d64ad386bb9a90b91cd5310e22f7", + "width" : 64 + } ], + "name" : "Låt Solen Skina", + "type" : "album", + "uri" : "spotify:album:28p9F6GZYkhoBIF7Sotkwm" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3evTEdMpLTXkvA6GfmvpGB" + }, + "href" : "https://api.spotify.com/v1/artists/3evTEdMpLTXkvA6GfmvpGB", + "id" : "3evTEdMpLTXkvA6GfmvpGB", + "name" : "Ital Skurk", + "type" : "artist", + "uri" : "spotify:artist:3evTEdMpLTXkvA6GfmvpGB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 177586, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXUM0600207" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1aAbS1SRbBKyGCjvn2FuaJ" + }, + "href" : "https://api.spotify.com/v1/tracks/1aAbS1SRbBKyGCjvn2FuaJ", + "id" : "1aAbS1SRbBKyGCjvn2FuaJ", + "name" : "Mycket Av Allt", + "popularity" : 0, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:1aAbS1SRbBKyGCjvn2FuaJ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5vioaoaWvgWq6zR52iTXda" + }, + "href" : "https://api.spotify.com/v1/albums/5vioaoaWvgWq6zR52iTXda", + "id" : "5vioaoaWvgWq6zR52iTXda", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5c53e60c3267ed0c1cc92654e442cf00f3d03431", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/13c378b872fb5a657ce5a5190cb53954ab895338", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/85b5ceb86cd7c6e5222d38aae6207b817687061b", + "width" : 64 + } ], + "name" : "Brazilian Beats 4", + "type" : "album", + "uri" : "spotify:album:5vioaoaWvgWq6zR52iTXda" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6sm4fipYpmeCJLmAWc820F" + }, + "href" : "https://api.spotify.com/v1/artists/6sm4fipYpmeCJLmAWc820F", + "id" : "6sm4fipYpmeCJLmAWc820F", + "name" : "Juca Chaves", + "type" : "artist", + "uri" : "spotify:artist:6sm4fipYpmeCJLmAWc820F" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 199640, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCLQ0000439" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0UTrHHQkRIydTzKRGkxrkg" + }, + "href" : "https://api.spotify.com/v1/tracks/0UTrHHQkRIydTzKRGkxrkg", + "id" : "0UTrHHQkRIydTzKRGkxrkg", + "name" : "Take Me Back To Piaui", + "popularity" : 0, + "preview_url" : null, + "track_number" : 8, + "type" : "track", + "uri" : "spotify:track:0UTrHHQkRIydTzKRGkxrkg" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC" + }, + "href" : "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC", + "id" : "1nJvji2KIlWSseXRSlNYsC", + "name" : "The Velvet Underground", + "type" : "artist", + "uri" : "spotify:artist:1nJvji2KIlWSseXRSlNYsC" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2pO8y15ojMgXRZaxuYF8cq" + }, + "href" : "https://api.spotify.com/v1/albums/2pO8y15ojMgXRZaxuYF8cq", + "id" : "2pO8y15ojMgXRZaxuYF8cq", + "images" : [ { + "height" : 568, + "url" : "https://i.scdn.co/image/82c6dcc2da80dc60dc42ef991975ded85a79a301", + "width" : 640 + }, { + "height" : 266, + "url" : "https://i.scdn.co/image/df22e7225321f969476a16fac06278a440de6d60", + "width" : 300 + }, { + "height" : 57, + "url" : "https://i.scdn.co/image/63306fdfe8a6ef48ef0325574bbeccd83e0e3d24", + "width" : 64 + } ], + "name" : "3Cd", + "type" : "album", + "uri" : "spotify:album:2pO8y15ojMgXRZaxuYF8cq" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC" + }, + "href" : "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC", + "id" : "1nJvji2KIlWSseXRSlNYsC", + "name" : "The Velvet Underground", + "type" : "artist", + "uri" : "spotify:artist:1nJvji2KIlWSseXRSlNYsC" + } ], + "available_markets" : [ ], + "disc_number" : 3, + "duration_ms" : 164493, + "explicit" : false, + "external_ids" : { + "isrc" : "USPR36805191" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2YsGGqbtUfedDA2CGKrxZb" + }, + "href" : "https://api.spotify.com/v1/tracks/2YsGGqbtUfedDA2CGKrxZb", + "id" : "2YsGGqbtUfedDA2CGKrxZb", + "name" : "White Light/White Heat", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:2YsGGqbtUfedDA2CGKrxZb" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4JQMOE19ue9Fc6TtFylxnf" + }, + "href" : "https://api.spotify.com/v1/artists/4JQMOE19ue9Fc6TtFylxnf", + "id" : "4JQMOE19ue9Fc6TtFylxnf", + "name" : "Bob Blank", + "type" : "artist", + "uri" : "spotify:artist:4JQMOE19ue9Fc6TtFylxnf" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1GbV6IEiNpqFqtr0YLIwc7" + }, + "href" : "https://api.spotify.com/v1/albums/1GbV6IEiNpqFqtr0YLIwc7", + "id" : "1GbV6IEiNpqFqtr0YLIwc7", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/86e029d4eaa9b8d869b2c7c333945a0bda06d7cb", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/8d2ddc0e97039709ec1a19b66c99ac9a4880b8ff", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0ae50cecb18f13779c4a6f9f601312f78ef58f4d", + "width" : 64 + } ], + "name" : "The Blank Generation - Blank Tapes NYC 1971 - 1985", + "type" : "album", + "uri" : "spotify:album:1GbV6IEiNpqFqtr0YLIwc7" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2aXiJJHJei5BmCykxI37y0" + }, + "href" : "https://api.spotify.com/v1/artists/2aXiJJHJei5BmCykxI37y0", + "id" : "2aXiJJHJei5BmCykxI37y0", + "name" : "Gladys Knight", + "type" : "artist", + "uri" : "spotify:artist:2aXiJJHJei5BmCykxI37y0" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 410850, + "explicit" : false, + "external_ids" : { + "isrc" : "DEG930941107" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7ueWZ2uGeBindzNE92HLu8" + }, + "href" : "https://api.spotify.com/v1/tracks/7ueWZ2uGeBindzNE92HLu8", + "id" : "7ueWZ2uGeBindzNE92HLu8", + "name" : "It's A Better Than Good Time - Walter Gibbons Mix", + "popularity" : 0, + "preview_url" : null, + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:7ueWZ2uGeBindzNE92HLu8" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6pf0wfjjnNBa3obNhYZ3u2" + }, + "href" : "https://api.spotify.com/v1/artists/6pf0wfjjnNBa3obNhYZ3u2", + "id" : "6pf0wfjjnNBa3obNhYZ3u2", + "name" : "New Found Land", + "type" : "artist", + "uri" : "spotify:artist:6pf0wfjjnNBa3obNhYZ3u2" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7eZMmncmStjUIG5D3lf0M2" + }, + "href" : "https://api.spotify.com/v1/albums/7eZMmncmStjUIG5D3lf0M2", + "id" : "7eZMmncmStjUIG5D3lf0M2", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d9e65d91efbfe701961f7d07bd2a9ffb26d76357", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5f84261701fec34c7cd8d167d45381f7eaaaff9f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/69f7d9770b8661e7f4fb80bd950406b1f0363753", + "width" : 64 + } ], + "name" : "We All Die", + "type" : "album", + "uri" : "spotify:album:7eZMmncmStjUIG5D3lf0M2" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6pf0wfjjnNBa3obNhYZ3u2" + }, + "href" : "https://api.spotify.com/v1/artists/6pf0wfjjnNBa3obNhYZ3u2", + "id" : "6pf0wfjjnNBa3obNhYZ3u2", + "name" : "New Found Land", + "type" : "artist", + "uri" : "spotify:artist:6pf0wfjjnNBa3obNhYZ3u2" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 247680, + "explicit" : false, + "external_ids" : { + "isrc" : "SEYQ60900105" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2gKicXFQDIVumZYeGpP6ju" + }, + "href" : "https://api.spotify.com/v1/tracks/2gKicXFQDIVumZYeGpP6ju", + "id" : "2gKicXFQDIVumZYeGpP6ju", + "name" : "Come To Me", + "popularity" : 2, + "preview_url" : "https://p.scdn.co/mp3-preview/5a7d64247a34933e846384f141ac7cd22fc7f37c?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:2gKicXFQDIVumZYeGpP6ju" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5xfJLyvC5UElVSiMuLt1ss" + }, + "href" : "https://api.spotify.com/v1/artists/5xfJLyvC5UElVSiMuLt1ss", + "id" : "5xfJLyvC5UElVSiMuLt1ss", + "name" : "Young Galaxy", + "type" : "artist", + "uri" : "spotify:artist:5xfJLyvC5UElVSiMuLt1ss" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3DyIAjq1iOl07Z1IV39Py6" + }, + "href" : "https://api.spotify.com/v1/albums/3DyIAjq1iOl07Z1IV39Py6", + "id" : "3DyIAjq1iOl07Z1IV39Py6", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/963018a293f424fcadcf4d8f7152b82c981f028a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c998b6789e256d8da0401c778a18af8f7fdc372e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/27c0cb7a39a59268e45fbebddd07a7e74bbbfbfb", + "width" : 64 + } ], + "name" : "Shapeshifting", + "type" : "album", + "uri" : "spotify:album:3DyIAjq1iOl07Z1IV39Py6" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5xfJLyvC5UElVSiMuLt1ss" + }, + "href" : "https://api.spotify.com/v1/artists/5xfJLyvC5UElVSiMuLt1ss", + "id" : "5xfJLyvC5UElVSiMuLt1ss", + "name" : "Young Galaxy", + "type" : "artist", + "uri" : "spotify:artist:5xfJLyvC5UElVSiMuLt1ss" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 227560, + "explicit" : false, + "external_ids" : { + "isrc" : "NOSTS1105090" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0RJpCkAg481Cbn4TWSzHG5" + }, + "href" : "https://api.spotify.com/v1/tracks/0RJpCkAg481Cbn4TWSzHG5", + "id" : "0RJpCkAg481Cbn4TWSzHG5", + "name" : "COVER YOUR TRACKS", + "popularity" : 30, + "preview_url" : "https://p.scdn.co/mp3-preview/40954fa851587c214697e65e1b3f85d284e486a3?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:0RJpCkAg481Cbn4TWSzHG5" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2s0438sn0pYL2OuukcFqPN" + }, + "href" : "https://api.spotify.com/v1/artists/2s0438sn0pYL2OuukcFqPN", + "id" : "2s0438sn0pYL2OuukcFqPN", + "name" : "Kid Koala", + "type" : "artist", + "uri" : "spotify:artist:2s0438sn0pYL2OuukcFqPN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6iLB8sBlEGmOwS2uxkNCiL" + }, + "href" : "https://api.spotify.com/v1/albums/6iLB8sBlEGmOwS2uxkNCiL", + "id" : "6iLB8sBlEGmOwS2uxkNCiL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f94b13d38ce5f49353e52643dc3990283a023a9e", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/bb0e66874063a400888486ff30567d2ab7ff0659", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/46b668f0ab5e104df589f725074a955a5bb298d7", + "width" : 64 + } ], + "name" : "Some Of My Best Friends Are DJs", + "type" : "album", + "uri" : "spotify:album:6iLB8sBlEGmOwS2uxkNCiL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2s0438sn0pYL2OuukcFqPN" + }, + "href" : "https://api.spotify.com/v1/artists/2s0438sn0pYL2OuukcFqPN", + "id" : "2s0438sn0pYL2OuukcFqPN", + "name" : "Kid Koala", + "type" : "artist", + "uri" : "spotify:artist:2s0438sn0pYL2OuukcFqPN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 203840, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0300236" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/58M2A8KjUuyMUgTcbSohWw" + }, + "href" : "https://api.spotify.com/v1/tracks/58M2A8KjUuyMUgTcbSohWw", + "id" : "58M2A8KjUuyMUgTcbSohWw", + "name" : "Skanky Panky", + "popularity" : 43, + "preview_url" : "https://p.scdn.co/mp3-preview/293ffc0547b7bd487e2826fdd2817d5ca00b030e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:58M2A8KjUuyMUgTcbSohWw" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4cJKxS7uOPhwb5UQ70sYpN" + }, + "href" : "https://api.spotify.com/v1/artists/4cJKxS7uOPhwb5UQ70sYpN", + "id" : "4cJKxS7uOPhwb5UQ70sYpN", + "name" : "Amason", + "type" : "artist", + "uri" : "spotify:artist:4cJKxS7uOPhwb5UQ70sYpN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6m7LQEVqbiH4b9yzZHNTN9" + }, + "href" : "https://api.spotify.com/v1/albums/6m7LQEVqbiH4b9yzZHNTN9", + "id" : "6m7LQEVqbiH4b9yzZHNTN9", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0993210ce5b8c22a1cc702dfc007e0dcacfbe0d1", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/b3e4e0495daf18a3fb0b821b837eacb7f5b1f501", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/8536a05c5197dd0553282d48ef5e0a6960d0c4ea", + "width" : 64 + } ], + "name" : "Ålen", + "type" : "album", + "uri" : "spotify:album:6m7LQEVqbiH4b9yzZHNTN9" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4cJKxS7uOPhwb5UQ70sYpN" + }, + "href" : "https://api.spotify.com/v1/artists/4cJKxS7uOPhwb5UQ70sYpN", + "id" : "4cJKxS7uOPhwb5UQ70sYpN", + "name" : "Amason", + "type" : "artist", + "uri" : "spotify:artist:4cJKxS7uOPhwb5UQ70sYpN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 230753, + "explicit" : false, + "external_ids" : { + "isrc" : "SE3EM1400101" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/29VkJ1UHrhjKaSlPRnSsK6" + }, + "href" : "https://api.spotify.com/v1/tracks/29VkJ1UHrhjKaSlPRnSsK6", + "id" : "29VkJ1UHrhjKaSlPRnSsK6", + "name" : "Ålen", + "popularity" : 47, + "preview_url" : "https://p.scdn.co/mp3-preview/110c016e094dc1a6e25b5d30e80629b433198e7e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:29VkJ1UHrhjKaSlPRnSsK6" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/738wLrAtLtCtFOLvQBXOXp" + }, + "href" : "https://api.spotify.com/v1/artists/738wLrAtLtCtFOLvQBXOXp", + "id" : "738wLrAtLtCtFOLvQBXOXp", + "name" : "Major Lazer", + "type" : "artist", + "uri" : "spotify:artist:738wLrAtLtCtFOLvQBXOXp" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0DCGcBBjnEmRYpuVRqGqT4" + }, + "href" : "https://api.spotify.com/v1/albums/0DCGcBBjnEmRYpuVRqGqT4", + "id" : "0DCGcBBjnEmRYpuVRqGqT4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ba31287cb46f315d1b5979d1aacb7ef42620a814", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c7b5c10a561347101777883075748d2eca990d67", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/74908710522308af73edad6ce1b6956acce2a6cf", + "width" : 64 + } ], + "name" : "Free The Universe", + "type" : "album", + "uri" : "spotify:album:0DCGcBBjnEmRYpuVRqGqT4" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/738wLrAtLtCtFOLvQBXOXp" + }, + "href" : "https://api.spotify.com/v1/artists/738wLrAtLtCtFOLvQBXOXp", + "id" : "738wLrAtLtCtFOLvQBXOXp", + "name" : "Major Lazer", + "type" : "artist", + "uri" : "spotify:artist:738wLrAtLtCtFOLvQBXOXp" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2nkAu4P6EVeQpXxiEhPTH6" + }, + "href" : "https://api.spotify.com/v1/artists/2nkAu4P6EVeQpXxiEhPTH6", + "id" : "2nkAu4P6EVeQpXxiEhPTH6", + "name" : "Ezra Koenig", + "type" : "artist", + "uri" : "spotify:artist:2nkAu4P6EVeQpXxiEhPTH6" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 253693, + "explicit" : false, + "external_ids" : { + "isrc" : "US38W1229207" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4i4T1zgm3EAktbpivZoUDC" + }, + "href" : "https://api.spotify.com/v1/tracks/4i4T1zgm3EAktbpivZoUDC", + "id" : "4i4T1zgm3EAktbpivZoUDC", + "name" : "Jessica [feat. Ezra Koenig]", + "popularity" : 0, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:4i4T1zgm3EAktbpivZoUDC" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "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" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1YwnzOoFiexSqIOTCRPWOG" + }, + "href" : "https://api.spotify.com/v1/albums/1YwnzOoFiexSqIOTCRPWOG", + "id" : "1YwnzOoFiexSqIOTCRPWOG", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5866482cfa5b7c2f86e2312742753b7e3ac57de3", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d5d011b0dbce9aa53afbbc3e6781cbc12b20bfb6", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/56e0441e94ecd4257896a0ca6b168f0027634f94", + "width" : 64 + } ], + "name" : "Making up a Changing Mind", + "type" : "album", + "uri" : "spotify:album:1YwnzOoFiexSqIOTCRPWOG" + }, + "artists" : [ { + "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" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 330666, + "explicit" : false, + "external_ids" : { + "isrc" : "USTCD1080521" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5fH9OgcqKO6a1Ccd9uEUmQ" + }, + "href" : "https://api.spotify.com/v1/tracks/5fH9OgcqKO6a1Ccd9uEUmQ", + "id" : "5fH9OgcqKO6a1Ccd9uEUmQ", + "name" : "Future Blind", + "popularity" : 36, + "preview_url" : "https://p.scdn.co/mp3-preview/9cfd0275ccc7d9e1e7b2582af95f6c60a5f5ce42?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:5fH9OgcqKO6a1Ccd9uEUmQ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0PuOTaQilwmrn6xRCKVsFo" + }, + "href" : "https://api.spotify.com/v1/artists/0PuOTaQilwmrn6xRCKVsFo", + "id" : "0PuOTaQilwmrn6xRCKVsFo", + "name" : "Ishi", + "type" : "artist", + "uri" : "spotify:artist:0PuOTaQilwmrn6xRCKVsFo" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/41uK7QPjXJWDf9Xqu5gY8G" + }, + "href" : "https://api.spotify.com/v1/albums/41uK7QPjXJWDf9Xqu5gY8G", + "id" : "41uK7QPjXJWDf9Xqu5gY8G", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/cef955285bc267a827543a8105e0e9a04a31081a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d638a3f4f0cdf682e4ecde436b050bcf54e8ce95", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2dc9e44c6c652a8a581cf9118a4f9654b5ffb361", + "width" : 64 + } ], + "name" : "Digital Wounds", + "type" : "album", + "uri" : "spotify:album:41uK7QPjXJWDf9Xqu5gY8G" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0PuOTaQilwmrn6xRCKVsFo" + }, + "href" : "https://api.spotify.com/v1/artists/0PuOTaQilwmrn6xRCKVsFo", + "id" : "0PuOTaQilwmrn6xRCKVsFo", + "name" : "Ishi", + "type" : "artist", + "uri" : "spotify:artist:0PuOTaQilwmrn6xRCKVsFo" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 409040, + "explicit" : false, + "external_ids" : { + "isrc" : "USPVB1314928" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7CtIedWpglrK0eiC2Z4cwb" + }, + "href" : "https://api.spotify.com/v1/tracks/7CtIedWpglrK0eiC2Z4cwb", + "id" : "7CtIedWpglrK0eiC2Z4cwb", + "name" : "Mother Prism", + "popularity" : 18, + "preview_url" : "https://p.scdn.co/mp3-preview/2448fca2dc8ab209d3cb3d0aa47aebeb0bad1df9?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:7CtIedWpglrK0eiC2Z4cwb" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7vFpNLbCXbBFs4kFBUlkSl" + }, + "href" : "https://api.spotify.com/v1/artists/7vFpNLbCXbBFs4kFBUlkSl", + "id" : "7vFpNLbCXbBFs4kFBUlkSl", + "name" : "Zombie Nation", + "type" : "artist", + "uri" : "spotify:artist:7vFpNLbCXbBFs4kFBUlkSl" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2qHeKpxpLR6TcAlIKXhvpi" + }, + "href" : "https://api.spotify.com/v1/albums/2qHeKpxpLR6TcAlIKXhvpi", + "id" : "2qHeKpxpLR6TcAlIKXhvpi", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/91a71a956e926b278e7bcbe1d80a06aabb024ce9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/07bbdd8dc540ef6a59778dc685c3b75f6480b893", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/12e442b7af091cf12c8dffa765b55eaea78750c2", + "width" : 64 + } ], + "name" : "RGB", + "type" : "album", + "uri" : "spotify:album:2qHeKpxpLR6TcAlIKXhvpi" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7vFpNLbCXbBFs4kFBUlkSl" + }, + "href" : "https://api.spotify.com/v1/artists/7vFpNLbCXbBFs4kFBUlkSl", + "id" : "7vFpNLbCXbBFs4kFBUlkSl", + "name" : "Zombie Nation", + "type" : "artist", + "uri" : "spotify:artist:7vFpNLbCXbBFs4kFBUlkSl" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 239795, + "explicit" : false, + "external_ids" : { + "isrc" : "CAT391200180" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1A32Buk8Riy3perwSzC4To" + }, + "href" : "https://api.spotify.com/v1/tracks/1A32Buk8Riy3perwSzC4To", + "id" : "1A32Buk8Riy3perwSzC4To", + "name" : "Tryouts", + "popularity" : 32, + "preview_url" : "https://p.scdn.co/mp3-preview/2053c250def7d054b4e4c46b580cbf24723fc159?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:1A32Buk8Riy3perwSzC4To" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7be3s9KeG3Ia1jnBzFtXOX" + }, + "href" : "https://api.spotify.com/v1/albums/7be3s9KeG3Ia1jnBzFtXOX", + "id" : "7be3s9KeG3Ia1jnBzFtXOX", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/77256e1584bc6fb2348a0d4631e850b74b663b28", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d11b4cf819dff37c7301b5ec35941fc9b5c4656a", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3e934d2021d29ed07d993d6a9fd19a9ec43b3dac", + "width" : 64 + } ], + "name" : "Best Of Vol 1", + "type" : "album", + "uri" : "spotify:album:7be3s9KeG3Ia1jnBzFtXOX" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2utNxkLhreF1oIfO8kQT3q" + }, + "href" : "https://api.spotify.com/v1/artists/2utNxkLhreF1oIfO8kQT3q", + "id" : "2utNxkLhreF1oIfO8kQT3q", + "name" : "Manfred Mann's Earth Band", + "type" : "artist", + "uri" : "spotify:artist:2utNxkLhreF1oIfO8kQT3q" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 228866, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBXM7610001" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/39OPZvxdhToddt29z55Ukv" + }, + "href" : "https://api.spotify.com/v1/tracks/39OPZvxdhToddt29z55Ukv", + "id" : "39OPZvxdhToddt29z55Ukv", + "name" : "Blinded By The Light", + "popularity" : 55, + "preview_url" : "https://p.scdn.co/mp3-preview/d9238c41d7d85fd8192ed5b116187eec7924bfde?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:39OPZvxdhToddt29z55Ukv" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/14H7ag1wpQOsPPQJOD6Dqr" + }, + "href" : "https://api.spotify.com/v1/artists/14H7ag1wpQOsPPQJOD6Dqr", + "id" : "14H7ag1wpQOsPPQJOD6Dqr", + "name" : "Zero 7", + "type" : "artist", + "uri" : "spotify:artist:14H7ag1wpQOsPPQJOD6Dqr" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2AOnLMRgQJVF98NxmxxI45" + }, + "href" : "https://api.spotify.com/v1/albums/2AOnLMRgQJVF98NxmxxI45", + "id" : "2AOnLMRgQJVF98NxmxxI45", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5b295b15bf342039339d392ec1c22c10fa682995", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3aaaf92a81c37c869812f43368f147cd2e83922b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/75e978d4823cfeca1daa3643fa4654653a24f5ba", + "width" : 64 + } ], + "name" : "Simple Science (Todd Osborn Remix)", + "type" : "album", + "uri" : "spotify:album:2AOnLMRgQJVF98NxmxxI45" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/14H7ag1wpQOsPPQJOD6Dqr" + }, + "href" : "https://api.spotify.com/v1/artists/14H7ag1wpQOsPPQJOD6Dqr", + "id" : "14H7ag1wpQOsPPQJOD6Dqr", + "name" : "Zero 7", + "type" : "artist", + "uri" : "spotify:artist:14H7ag1wpQOsPPQJOD6Dqr" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 492016, + "explicit" : false, + "external_ids" : { + "isrc" : "UK46T1402003" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3L7DfGIpG0MaWoToJztxqf" + }, + "href" : "https://api.spotify.com/v1/tracks/3L7DfGIpG0MaWoToJztxqf", + "id" : "3L7DfGIpG0MaWoToJztxqf", + "name" : "Simple Science Remix - Instrumental", + "popularity" : 12, + "preview_url" : "https://p.scdn.co/mp3-preview/f24eb437c9687a7d78e7f99ac087713a19a70d8e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3L7DfGIpG0MaWoToJztxqf" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1rnogXkMBXDVzDPFSq4dDe" + }, + "href" : "https://api.spotify.com/v1/albums/1rnogXkMBXDVzDPFSq4dDe", + "id" : "1rnogXkMBXDVzDPFSq4dDe", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2d70decc3c9e0fab3d565b57366a083143e729d8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/8be8ebe6a8e236fe5a432d3f4d86461233e2613e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3ea629f47ae31a16bb156dab663ab8b348870c2d", + "width" : 64 + } ], + "name" : "Psychic", + "type" : "album", + "uri" : "spotify:album:1rnogXkMBXDVzDPFSq4dDe" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 289840, + "explicit" : false, + "external_ids" : { + "isrc" : "USMTD1303939" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4mhfCJJiCJoe1ZPLjvY7TX" + }, + "href" : "https://api.spotify.com/v1/tracks/4mhfCJJiCJoe1ZPLjvY7TX", + "id" : "4mhfCJJiCJoe1ZPLjvY7TX", + "name" : "Paper Trails", + "popularity" : 38, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4mhfCJJiCJoe1ZPLjvY7TX" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0cmWgDlu9CwTgxPhf403hb" + }, + "href" : "https://api.spotify.com/v1/artists/0cmWgDlu9CwTgxPhf403hb", + "id" : "0cmWgDlu9CwTgxPhf403hb", + "name" : "Bonobo", + "type" : "artist", + "uri" : "spotify:artist:0cmWgDlu9CwTgxPhf403hb" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5m1RkwKeU7MV0Ni6PH2lPy" + }, + "href" : "https://api.spotify.com/v1/albums/5m1RkwKeU7MV0Ni6PH2lPy", + "id" : "5m1RkwKeU7MV0Ni6PH2lPy", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/3268ab4f15d8ee71d49706eebe0e0c629e0a4c98", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/9aeed9ef73911bbd3f55c69d240a291020ee1a9b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0830c560daa9e721882589d693c199784fe805fe", + "width" : 64 + } ], + "name" : "Black Sands", + "type" : "album", + "uri" : "spotify:album:5m1RkwKeU7MV0Ni6PH2lPy" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0cmWgDlu9CwTgxPhf403hb" + }, + "href" : "https://api.spotify.com/v1/artists/0cmWgDlu9CwTgxPhf403hb", + "id" : "0cmWgDlu9CwTgxPhf403hb", + "name" : "Bonobo", + "type" : "artist", + "uri" : "spotify:artist:0cmWgDlu9CwTgxPhf403hb" + }, { + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 288933, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0902402" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5hmf3hRQMaDIWuZT1zX3ue" + }, + "href" : "https://api.spotify.com/v1/tracks/5hmf3hRQMaDIWuZT1zX3ue", + "id" : "5hmf3hRQMaDIWuZT1zX3ue", + "name" : "The Keeper", + "popularity" : 52, + "preview_url" : "https://p.scdn.co/mp3-preview/2e3e092f82a802266d86516e58a96eb81a3abf7b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:5hmf3hRQMaDIWuZT1zX3ue" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3VRvi42U8SsiT4YKP5LNCB" + }, + "href" : "https://api.spotify.com/v1/artists/3VRvi42U8SsiT4YKP5LNCB", + "id" : "3VRvi42U8SsiT4YKP5LNCB", + "name" : "Extrawelt", + "type" : "artist", + "uri" : "spotify:artist:3VRvi42U8SsiT4YKP5LNCB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0qbIh7SrRC9iTHhNaAxZRU" + }, + "href" : "https://api.spotify.com/v1/albums/0qbIh7SrRC9iTHhNaAxZRU", + "id" : "0qbIh7SrRC9iTHhNaAxZRU", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/4e03568484e50594bbbfcc73d05de05b11480d9a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/ffd7156d3350184aae4510d815fd606c319741c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/7e438895ffba60f6cc0aa4b4d01cc4b3b9302fd6", + "width" : 64 + } ], + "name" : "Neuland EP", + "type" : "album", + "uri" : "spotify:album:0qbIh7SrRC9iTHhNaAxZRU" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3VRvi42U8SsiT4YKP5LNCB" + }, + "href" : "https://api.spotify.com/v1/artists/3VRvi42U8SsiT4YKP5LNCB", + "id" : "3VRvi42U8SsiT4YKP5LNCB", + "name" : "Extrawelt", + "type" : "artist", + "uri" : "spotify:artist:3VRvi42U8SsiT4YKP5LNCB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 365365, + "explicit" : false, + "external_ids" : { + "isrc" : "GB-4PD-09-00023" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7CnzVEMFbKhGPWLIjrHBlP" + }, + "href" : "https://api.spotify.com/v1/tracks/7CnzVEMFbKhGPWLIjrHBlP", + "id" : "7CnzVEMFbKhGPWLIjrHBlP", + "name" : "Neuland", + "popularity" : 31, + "preview_url" : "https://p.scdn.co/mp3-preview/3548cbcb44eb73189d8dcc7eddd690670262fd9f?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:7CnzVEMFbKhGPWLIjrHBlP" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3wWZpCNkn5AZAZT0Eu7zIs" + }, + "href" : "https://api.spotify.com/v1/albums/3wWZpCNkn5AZAZT0Eu7zIs", + "id" : "3wWZpCNkn5AZAZT0Eu7zIs", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/55a11f84a57f91866d2336043f71b72232c57ddf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/41f45b440e29abed3559d0cc8b3fad597aa38d60", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/151309a5bd5617dedd75d977240e468a90254d31", + "width" : 64 + } ], + "name" : "Into The Great Wide Yonder", + "type" : "album", + "uri" : "spotify:album:3wWZpCNkn5AZAZT0Eu7zIs" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 365706, + "explicit" : false, + "external_ids" : { + "isrc" : "DEL021070002" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3rDdnNq970pocRLPQ3nJIa" + }, + "href" : "https://api.spotify.com/v1/tracks/3rDdnNq970pocRLPQ3nJIa", + "id" : "3rDdnNq970pocRLPQ3nJIa", + "name" : "Sycamore Feeling", + "popularity" : 0, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3rDdnNq970pocRLPQ3nJIa" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6caPJFLv1wesmM7gwK1ACy" + }, + "href" : "https://api.spotify.com/v1/artists/6caPJFLv1wesmM7gwK1ACy", + "id" : "6caPJFLv1wesmM7gwK1ACy", + "name" : "Boris Brejcha", + "type" : "artist", + "uri" : "spotify:artist:6caPJFLv1wesmM7gwK1ACy" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0E807CRBmdfGNRcnXVymp3" + }, + "href" : "https://api.spotify.com/v1/albums/0E807CRBmdfGNRcnXVymp3", + "id" : "0E807CRBmdfGNRcnXVymp3", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/005f6d275cf497c7848a7d337518763d17a17395", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/b3e06bf57be5b0f8086a2ed78017ef421e822da7", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/fdf832be5b02d97b2d84024cfd77328b973ec3eb", + "width" : 64 + } ], + "name" : "Feuerfalter Special Edition", + "type" : "album", + "uri" : "spotify:album:0E807CRBmdfGNRcnXVymp3" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6caPJFLv1wesmM7gwK1ACy" + }, + "href" : "https://api.spotify.com/v1/artists/6caPJFLv1wesmM7gwK1ACy", + "id" : "6caPJFLv1wesmM7gwK1ACy", + "name" : "Boris Brejcha", + "type" : "artist", + "uri" : "spotify:artist:6caPJFLv1wesmM7gwK1ACy" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 539520, + "explicit" : false, + "external_ids" : { + "isrc" : "DEAZ31405756" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6BA2JM59JObFjHNvLK2KOg" + }, + "href" : "https://api.spotify.com/v1/tracks/6BA2JM59JObFjHNvLK2KOg", + "id" : "6BA2JM59JObFjHNvLK2KOg", + "name" : "Purple Noise", + "popularity" : 60, + "preview_url" : "https://p.scdn.co/mp3-preview/5597760dc9c14d0b0d9753d531872b4cb0487235?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 17, + "type" : "track", + "uri" : "spotify:track:6BA2JM59JObFjHNvLK2KOg" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/64kN9EkSTHYhda2FupL0KI" + }, + "href" : "https://api.spotify.com/v1/artists/64kN9EkSTHYhda2FupL0KI", + "id" : "64kN9EkSTHYhda2FupL0KI", + "name" : "Blawan", + "type" : "artist", + "uri" : "spotify:artist:64kN9EkSTHYhda2FupL0KI" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5nvCYyZiz05YgttQIBcOCq" + }, + "href" : "https://api.spotify.com/v1/albums/5nvCYyZiz05YgttQIBcOCq", + "id" : "5nvCYyZiz05YgttQIBcOCq", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a39ad12d10ac26184f83dbe1a45462ef8dc87e80", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/30bc689c3ac3a6cac4a4e8ac6a389b653e24ef96", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/ec40790104743b6851ed5fb50931bc815e974138", + "width" : 64 + } ], + "name" : "What You Do With What You Have", + "type" : "album", + "uri" : "spotify:album:5nvCYyZiz05YgttQIBcOCq" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/64kN9EkSTHYhda2FupL0KI" + }, + "href" : "https://api.spotify.com/v1/artists/64kN9EkSTHYhda2FupL0KI", + "id" : "64kN9EkSTHYhda2FupL0KI", + "name" : "Blawan", + "type" : "artist", + "uri" : "spotify:artist:64kN9EkSTHYhda2FupL0KI" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 392506, + "explicit" : false, + "external_ids" : { + "isrc" : "BEZ351100024" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0t3oUBYOToed4zgaIM74oY" + }, + "href" : "https://api.spotify.com/v1/tracks/0t3oUBYOToed4zgaIM74oY", + "id" : "0t3oUBYOToed4zgaIM74oY", + "name" : "What You Do With What You Have", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:0t3oUBYOToed4zgaIM74oY" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6PShODJkc5NEad8Bl6QWCG" + }, + "href" : "https://api.spotify.com/v1/artists/6PShODJkc5NEad8Bl6QWCG", + "id" : "6PShODJkc5NEad8Bl6QWCG", + "name" : "Liquid Hits", + "type" : "artist", + "uri" : "spotify:artist:6PShODJkc5NEad8Bl6QWCG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3vVidnh7A2e7GtoZ8DA2yP" + }, + "href" : "https://api.spotify.com/v1/albums/3vVidnh7A2e7GtoZ8DA2yP", + "id" : "3vVidnh7A2e7GtoZ8DA2yP", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/cae18f9ddd4996b0105c990194e54f686df65cba", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/bfa4281cc6a3ecc840dc092f09d3781b9e25eb65", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3c157711a7d3d908769b1f1da5d39604aa0bea71", + "width" : 64 + } ], + "name" : "Harder Than You Think (A Tribute to Public Enemy)", + "type" : "album", + "uri" : "spotify:album:3vVidnh7A2e7GtoZ8DA2yP" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6PShODJkc5NEad8Bl6QWCG" + }, + "href" : "https://api.spotify.com/v1/artists/6PShODJkc5NEad8Bl6QWCG", + "id" : "6PShODJkc5NEad8Bl6QWCG", + "name" : "Liquid Hits", + "type" : "artist", + "uri" : "spotify:artist:6PShODJkc5NEad8Bl6QWCG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 259317, + "explicit" : false, + "external_ids" : { + "isrc" : "FR6V80099528" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7I9a6FWSzF564KjOMZCOMT" + }, + "href" : "https://api.spotify.com/v1/tracks/7I9a6FWSzF564KjOMZCOMT", + "id" : "7I9a6FWSzF564KjOMZCOMT", + "name" : "Harder Than You Think - Instrumental Version", + "popularity" : 3, + "preview_url" : "https://p.scdn.co/mp3-preview/5e8ee50b9f6d54095434792660f9a3d98ab336dd?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:7I9a6FWSzF564KjOMZCOMT" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/43RyO0OROtB16n37UJtjSB" + }, + "href" : "https://api.spotify.com/v1/artists/43RyO0OROtB16n37UJtjSB", + "id" : "43RyO0OROtB16n37UJtjSB", + "name" : "Hermigervill", + "type" : "artist", + "uri" : "spotify:artist:43RyO0OROtB16n37UJtjSB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4ce7QXr37RhGixlK19a0AL" + }, + "href" : "https://api.spotify.com/v1/albums/4ce7QXr37RhGixlK19a0AL", + "id" : "4ce7QXr37RhGixlK19a0AL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2c856187d37bb10372116eabb47fc4088bdfe1a7", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/2e95a1ae063a9e9a62cdec39dd1949ccb2d16aa1", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/418a323d622aecf83013d2b4904b425ed4ddfe61", + "width" : 64 + } ], + "name" : "Plays More Icelandic Pop Classics", + "type" : "album", + "uri" : "spotify:album:4ce7QXr37RhGixlK19a0AL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/43RyO0OROtB16n37UJtjSB" + }, + "href" : "https://api.spotify.com/v1/artists/43RyO0OROtB16n37UJtjSB", + "id" : "43RyO0OROtB16n37UJtjSB", + "name" : "Hermigervill", + "type" : "artist", + "uri" : "spotify:artist:43RyO0OROtB16n37UJtjSB" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 276000, + "explicit" : false, + "external_ids" : { + "isrc" : "ISV341100601" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5AAVYp7JCB3WrY0D6qjSJG" + }, + "href" : "https://api.spotify.com/v1/tracks/5AAVYp7JCB3WrY0D6qjSJG", + "id" : "5AAVYp7JCB3WrY0D6qjSJG", + "name" : "I Reykjavikurborg", + "popularity" : 16, + "preview_url" : "https://p.scdn.co/mp3-preview/a84204baaf2c41c1106ad9e1a24a247ce668ea5e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5AAVYp7JCB3WrY0D6qjSJG" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "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" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/74vgQmQX8dVxpw9zcPEFxE" + }, + "href" : "https://api.spotify.com/v1/albums/74vgQmQX8dVxpw9zcPEFxE", + "id" : "74vgQmQX8dVxpw9zcPEFxE", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d1895c23699cee906a915ccad4f29c6a31734f4b", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/874061620fb40d47a78c34b506b3521c0c4ff430", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/bcde36d2e12ae2f1fd5dd9995bfb9a744689154a", + "width" : 64 + } ], + "name" : "Swim", + "type" : "album", + "uri" : "spotify:album:74vgQmQX8dVxpw9zcPEFxE" + }, + "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" : [ ], + "disc_number" : 1, + "duration_ms" : 315506, + "explicit" : false, + "external_ids" : { + "isrc" : "DED621000414" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7xCIpKMNNbrWeIILyHTH1u" + }, + "href" : "https://api.spotify.com/v1/tracks/7xCIpKMNNbrWeIILyHTH1u", + "id" : "7xCIpKMNNbrWeIILyHTH1u", + "name" : "Odessa", + "popularity" : 7, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:7xCIpKMNNbrWeIILyHTH1u" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/66KBDVJnA6c0DjHeSZYaHb" + }, + "href" : "https://api.spotify.com/v1/albums/66KBDVJnA6c0DjHeSZYaHb", + "id" : "66KBDVJnA6c0DjHeSZYaHb", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/41e56c2d7de86b3015301ca0b7f0fb31244789eb", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/05df95aa7d44c91379eacea35e0f18ba2294cf5b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2a102de968c4ab67d8606e3b4bd1993b4d9931ca", + "width" : 64 + } ], + "name" : "Boss For Leader", + "type" : "album", + "uri" : "spotify:album:66KBDVJnA6c0DjHeSZYaHb" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 362586, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXKD0700202" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0I00u1IwnGQVguICUiCsAf" + }, + "href" : "https://api.spotify.com/v1/tracks/0I00u1IwnGQVguICUiCsAf", + "id" : "0I00u1IwnGQVguICUiCsAf", + "name" : "Sponsored By Destiny", + "popularity" : 38, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:0I00u1IwnGQVguICUiCsAf" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4ucW1LE5T7y7X4jlaKCeVo" + }, + "href" : "https://api.spotify.com/v1/artists/4ucW1LE5T7y7X4jlaKCeVo", + "id" : "4ucW1LE5T7y7X4jlaKCeVo", + "name" : "Dub FX", + "type" : "artist", + "uri" : "spotify:artist:4ucW1LE5T7y7X4jlaKCeVo" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3sgyFe5if8qDsnVhqI40XB" + }, + "href" : "https://api.spotify.com/v1/albums/3sgyFe5if8qDsnVhqI40XB", + "id" : "3sgyFe5if8qDsnVhqI40XB", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/dd9cd6cf8a3c50d319c8833ce4cada9fdbfd0a03", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/f92b5f60f53c466bcddb799bb29ab1a874ea79ac", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6eb7f1e58886b240669e3a9a5eb2e4b1489725b3", + "width" : 64 + } ], + "name" : "Everythinks a Ripple", + "type" : "album", + "uri" : "spotify:album:3sgyFe5if8qDsnVhqI40XB" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4ucW1LE5T7y7X4jlaKCeVo" + }, + "href" : "https://api.spotify.com/v1/artists/4ucW1LE5T7y7X4jlaKCeVo", + "id" : "4ucW1LE5T7y7X4jlaKCeVo", + "name" : "Dub FX", + "type" : "artist", + "uri" : "spotify:artist:4ucW1LE5T7y7X4jlaKCeVo" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 268000, + "explicit" : false, + "external_ids" : { + "isrc" : "TCABX1445029" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2iNc1WDSSQNjt2IkwVIfdV" + }, + "href" : "https://api.spotify.com/v1/tracks/2iNc1WDSSQNjt2IkwVIfdV", + "id" : "2iNc1WDSSQNjt2IkwVIfdV", + "name" : "Love Someone", + "popularity" : 0, + "preview_url" : null, + "track_number" : 8, + "type" : "track", + "uri" : "spotify:track:2iNc1WDSSQNjt2IkwVIfdV" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1xU878Z1QtBldR7ru9owdU" + }, + "href" : "https://api.spotify.com/v1/artists/1xU878Z1QtBldR7ru9owdU", + "id" : "1xU878Z1QtBldR7ru9owdU", + "name" : "Phoenix", + "type" : "artist", + "uri" : "spotify:artist:1xU878Z1QtBldR7ru9owdU" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6YXmQrXOjJoMheJ2IA5NqK" + }, + "href" : "https://api.spotify.com/v1/albums/6YXmQrXOjJoMheJ2IA5NqK", + "id" : "6YXmQrXOjJoMheJ2IA5NqK", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/dd50cf172806b09c1596579d8e921eb868c4d17c", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/554ac4de36701c9d9d1b0f75f2624f12e7086b72", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/181863c547a34cfe2d90f487b20e4902f5daad92", + "width" : 64 + } ], + "name" : "Wolfgang Amadeus Phoenix", + "type" : "album", + "uri" : "spotify:album:6YXmQrXOjJoMheJ2IA5NqK" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1xU878Z1QtBldR7ru9owdU" + }, + "href" : "https://api.spotify.com/v1/artists/1xU878Z1QtBldR7ru9owdU", + "id" : "1xU878Z1QtBldR7ru9owdU", + "name" : "Phoenix", + "type" : "artist", + "uri" : "spotify:artist:1xU878Z1QtBldR7ru9owdU" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 193106, + "explicit" : false, + "external_ids" : { + "isrc" : "FR31Q0900002" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5JtPGzRgrWxkXX9LoROq3d" + }, + "href" : "https://api.spotify.com/v1/tracks/5JtPGzRgrWxkXX9LoROq3d", + "id" : "5JtPGzRgrWxkXX9LoROq3d", + "name" : "1901", + "popularity" : 69, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:5JtPGzRgrWxkXX9LoROq3d" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3YRLUjgMJ1xg1TIcknIxlv" + }, + "href" : "https://api.spotify.com/v1/artists/3YRLUjgMJ1xg1TIcknIxlv", + "id" : "3YRLUjgMJ1xg1TIcknIxlv", + "name" : "Rampue", + "type" : "artist", + "uri" : "spotify:artist:3YRLUjgMJ1xg1TIcknIxlv" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6ptfe9eGrxnbp4QHrOQcRc" + }, + "href" : "https://api.spotify.com/v1/albums/6ptfe9eGrxnbp4QHrOQcRc", + "id" : "6ptfe9eGrxnbp4QHrOQcRc", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0e54f3799adfe56df590cf7e09c8d9c011b93b6f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/17cdb547a8dd4b6b2e1134ade8ee7ed8d8002977", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/314b5880f003e3393f3634cde97244ada75ac88a", + "width" : 64 + } ], + "name" : "Sonne Park und Sterni", + "type" : "album", + "uri" : "spotify:album:6ptfe9eGrxnbp4QHrOQcRc" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3YRLUjgMJ1xg1TIcknIxlv" + }, + "href" : "https://api.spotify.com/v1/artists/3YRLUjgMJ1xg1TIcknIxlv", + "id" : "3YRLUjgMJ1xg1TIcknIxlv", + "name" : "Rampue", + "type" : "artist", + "uri" : "spotify:artist:3YRLUjgMJ1xg1TIcknIxlv" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 326110, + "explicit" : false, + "external_ids" : { + "isrc" : "DEBT91200234" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4Jkr2JeE7ParkcvWSz4GkK" + }, + "href" : "https://api.spotify.com/v1/tracks/4Jkr2JeE7ParkcvWSz4GkK", + "id" : "4Jkr2JeE7ParkcvWSz4GkK", + "name" : "Sonne Park und Sterni", + "popularity" : 55, + "preview_url" : "https://p.scdn.co/mp3-preview/72dfb8686c445c7ed40c59bb267fbddeb50fba00?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:4Jkr2JeE7ParkcvWSz4GkK" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6yixHaosAl3aQfTRAQyPK5" + }, + "href" : "https://api.spotify.com/v1/albums/6yixHaosAl3aQfTRAQyPK5", + "id" : "6yixHaosAl3aQfTRAQyPK5", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2638e595d88ac068251879695aa00dd4a9ab948f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c55e612da0750dedcbc081fbe52d7c8d8590ff6e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/343f9325cebc2a6b78476b00ab219d4a9e8cbadc", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 16: The Sweet Sixteen Issue (Deluxe Edition)", + "type" : "album", + "uri" : "spotify:album:6yixHaosAl3aQfTRAQyPK5" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/76MojWoWNPzzKdrEspy5sl" + }, + "href" : "https://api.spotify.com/v1/artists/76MojWoWNPzzKdrEspy5sl", + "id" : "76MojWoWNPzzKdrEspy5sl", + "name" : "Nimmo", + "type" : "artist", + "uri" : "spotify:artist:76MojWoWNPzzKdrEspy5sl" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 212613, + "explicit" : false, + "external_ids" : { + "isrc" : "GBARL1400797" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5jVaI6lNuQnSxU7pAlAIVX" + }, + "href" : "https://api.spotify.com/v1/tracks/5jVaI6lNuQnSxU7pAlAIVX", + "id" : "5jVaI6lNuQnSxU7pAlAIVX", + "name" : "Others (Original)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 13, + "type" : "track", + "uri" : "spotify:track:5jVaI6lNuQnSxU7pAlAIVX" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/36myF90V1AoFHdTgOmSw2I" + }, + "href" : "https://api.spotify.com/v1/artists/36myF90V1AoFHdTgOmSw2I", + "id" : "36myF90V1AoFHdTgOmSw2I", + "name" : "Harouki Zombi", + "type" : "artist", + "uri" : "spotify:artist:36myF90V1AoFHdTgOmSw2I" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6mMmNUONllLIP3kbIMdfAp" + }, + "href" : "https://api.spotify.com/v1/albums/6mMmNUONllLIP3kbIMdfAp", + "id" : "6mMmNUONllLIP3kbIMdfAp", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/e53477311bddaa6d8157ae71b84626203e777842", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/10ae953cbe56ba278b46267a34ee3a478365054e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/a945e1afe886a387d33c3f5db82c0b2fed483fdb", + "width" : 64 + } ], + "name" : "Objet Petit A", + "type" : "album", + "uri" : "spotify:album:6mMmNUONllLIP3kbIMdfAp" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/36myF90V1AoFHdTgOmSw2I" + }, + "href" : "https://api.spotify.com/v1/artists/36myF90V1AoFHdTgOmSw2I", + "id" : "36myF90V1AoFHdTgOmSw2I", + "name" : "Harouki Zombi", + "type" : "artist", + "uri" : "spotify:artist:36myF90V1AoFHdTgOmSw2I" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 177720, + "explicit" : false, + "external_ids" : { + "isrc" : "US3R41224901" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5dVN8V1uVpe0oxmc0RtIX0" + }, + "href" : "https://api.spotify.com/v1/tracks/5dVN8V1uVpe0oxmc0RtIX0", + "id" : "5dVN8V1uVpe0oxmc0RtIX0", + "name" : "Objet Petit A", + "popularity" : 8, + "preview_url" : "https://p.scdn.co/mp3-preview/ce3ab0a72927cf14afd85ad6723322f0f283883c?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5dVN8V1uVpe0oxmc0RtIX0" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2L3kwZFd16zjHz9a5kEPAm" + }, + "href" : "https://api.spotify.com/v1/artists/2L3kwZFd16zjHz9a5kEPAm", + "id" : "2L3kwZFd16zjHz9a5kEPAm", + "name" : "Ane Brun", + "type" : "artist", + "uri" : "spotify:artist:2L3kwZFd16zjHz9a5kEPAm" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4oeWnJQBB1vbi7bGvHBRFt" + }, + "href" : "https://api.spotify.com/v1/albums/4oeWnJQBB1vbi7bGvHBRFt", + "id" : "4oeWnJQBB1vbi7bGvHBRFt", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7d692a72b9eec22613f3e18b4535ccc4bf32d9e6", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/63ee0bf68a7bca10eeaa52f6022d29ff8d492f35", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/8be48852677285ac67aed618ac59447d98ee9654", + "width" : 64 + } ], + "name" : "It All Starts With One", + "type" : "album", + "uri" : "spotify:album:4oeWnJQBB1vbi7bGvHBRFt" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2L3kwZFd16zjHz9a5kEPAm" + }, + "href" : "https://api.spotify.com/v1/artists/2L3kwZFd16zjHz9a5kEPAm", + "id" : "2L3kwZFd16zjHz9a5kEPAm", + "name" : "Ane Brun", + "type" : "artist", + "uri" : "spotify:artist:2L3kwZFd16zjHz9a5kEPAm" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 192133, + "explicit" : false, + "external_ids" : { + "isrc" : "SEVVQ1100104" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5CwGF9xlJAA3CPcGpHcwRp" + }, + "href" : "https://api.spotify.com/v1/tracks/5CwGF9xlJAA3CPcGpHcwRp", + "id" : "5CwGF9xlJAA3CPcGpHcwRp", + "name" : "Do You Remember", + "popularity" : 18, + "preview_url" : "https://p.scdn.co/mp3-preview/565a2091563b082b7f4906e458706692500acd92?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:5CwGF9xlJAA3CPcGpHcwRp" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Obxlsc4O0Q2Q36ugS7fbN" + }, + "href" : "https://api.spotify.com/v1/artists/4Obxlsc4O0Q2Q36ugS7fbN", + "id" : "4Obxlsc4O0Q2Q36ugS7fbN", + "name" : "Manfred Mann Chapter Three", + "type" : "artist", + "uri" : "spotify:artist:4Obxlsc4O0Q2Q36ugS7fbN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5hqZavK8YnObFMumo6Tmwz" + }, + "href" : "https://api.spotify.com/v1/albums/5hqZavK8YnObFMumo6Tmwz", + "id" : "5hqZavK8YnObFMumo6Tmwz", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ead35d652e63aece28d9f2f6f71127a71a7d17db", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/ea07f863b4c31ef3fb834c23896d94dfe1e42b42", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/eb8fac9417287b01fa749b381b484497f9c21009", + "width" : 64 + } ], + "name" : "Chapter III Vol 1", + "type" : "album", + "uri" : "spotify:album:5hqZavK8YnObFMumo6Tmwz" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Obxlsc4O0Q2Q36ugS7fbN" + }, + "href" : "https://api.spotify.com/v1/artists/4Obxlsc4O0Q2Q36ugS7fbN", + "id" : "4Obxlsc4O0Q2Q36ugS7fbN", + "name" : "Manfred Mann Chapter Three", + "type" : "artist", + "uri" : "spotify:artist:4Obxlsc4O0Q2Q36ugS7fbN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 214933, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBXM6910007" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2E0tlDzvMmszn2DGNmFZDF" + }, + "href" : "https://api.spotify.com/v1/tracks/2E0tlDzvMmszn2DGNmFZDF", + "id" : "2E0tlDzvMmszn2DGNmFZDF", + "name" : "One Way Glass", + "popularity" : 21, + "preview_url" : "https://p.scdn.co/mp3-preview/e45baefd71a9b8124d42eb8021b68a6f4bce452b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:2E0tlDzvMmszn2DGNmFZDF" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1rnogXkMBXDVzDPFSq4dDe" + }, + "href" : "https://api.spotify.com/v1/albums/1rnogXkMBXDVzDPFSq4dDe", + "id" : "1rnogXkMBXDVzDPFSq4dDe", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2d70decc3c9e0fab3d565b57366a083143e729d8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/8be8ebe6a8e236fe5a432d3f4d86461233e2613e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/3ea629f47ae31a16bb156dab663ab8b348870c2d", + "width" : 64 + } ], + "name" : "Psychic", + "type" : "album", + "uri" : "spotify:album:1rnogXkMBXDVzDPFSq4dDe" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2933wDUojoQmvqSdTAE5NB" + }, + "href" : "https://api.spotify.com/v1/artists/2933wDUojoQmvqSdTAE5NB", + "id" : "2933wDUojoQmvqSdTAE5NB", + "name" : "Darkside", + "type" : "artist", + "uri" : "spotify:artist:2933wDUojoQmvqSdTAE5NB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 289840, + "explicit" : false, + "external_ids" : { + "isrc" : "USMTD1303939" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4mhfCJJiCJoe1ZPLjvY7TX" + }, + "href" : "https://api.spotify.com/v1/tracks/4mhfCJJiCJoe1ZPLjvY7TX", + "id" : "4mhfCJJiCJoe1ZPLjvY7TX", + "name" : "Paper Trails", + "popularity" : 38, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4mhfCJJiCJoe1ZPLjvY7TX" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2CKaDZ1Yo8YnWega9IeUzB" + }, + "href" : "https://api.spotify.com/v1/artists/2CKaDZ1Yo8YnWega9IeUzB", + "id" : "2CKaDZ1Yo8YnWega9IeUzB", + "name" : "Booka Shade", + "type" : "artist", + "uri" : "spotify:artist:2CKaDZ1Yo8YnWega9IeUzB" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0HC9kNPpDZucPwKXK0Kxcn" + }, + "href" : "https://api.spotify.com/v1/albums/0HC9kNPpDZucPwKXK0Kxcn", + "id" : "0HC9kNPpDZucPwKXK0Kxcn", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/108621c32f357262c2a35e4f497be892259b91c7", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/af92f779ec525a5d535d4e7318a0b48de8d20cf8", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/cc9d1aed7510678813be18edab5d38161cc637b9", + "width" : 64 + } ], + "name" : "Movements", + "type" : "album", + "uri" : "spotify:album:0HC9kNPpDZucPwKXK0Kxcn" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2CKaDZ1Yo8YnWega9IeUzB" + }, + "href" : "https://api.spotify.com/v1/artists/2CKaDZ1Yo8YnWega9IeUzB", + "id" : "2CKaDZ1Yo8YnWega9IeUzB", + "name" : "Booka Shade", + "type" : "artist", + "uri" : "spotify:artist:2CKaDZ1Yo8YnWega9IeUzB" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 300266, + "explicit" : false, + "external_ids" : { + "isrc" : "DEBE70500175" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/26fwlVGkISUr5P91hAeTW8" + }, + "href" : "https://api.spotify.com/v1/tracks/26fwlVGkISUr5P91hAeTW8", + "id" : "26fwlVGkISUr5P91hAeTW8", + "name" : "Body Language - Interpretation", + "popularity" : 8, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:26fwlVGkISUr5P91hAeTW8" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5Hsw2iSwkn9LWgWGruK4Xx" + }, + "href" : "https://api.spotify.com/v1/albums/5Hsw2iSwkn9LWgWGruK4Xx", + "id" : "5Hsw2iSwkn9LWgWGruK4Xx", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/e7d29534a44102cf8720816960ecc39bcaa5dd10", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/f4c33566b079538ffc721c5671860f89a32b247f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/bcfd03129b23fc33255b416fcf09360ac7784c20", + "width" : 64 + } ], + "name" : "The Last Resort", + "type" : "album", + "uri" : "spotify:album:5Hsw2iSwkn9LWgWGruK4Xx" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4O71i7ke5iIBX6RNSFoZbS" + }, + "href" : "https://api.spotify.com/v1/artists/4O71i7ke5iIBX6RNSFoZbS", + "id" : "4O71i7ke5iIBX6RNSFoZbS", + "name" : "Trentemøller", + "type" : "artist", + "uri" : "spotify:artist:4O71i7ke5iIBX6RNSFoZbS" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 477043, + "explicit" : false, + "external_ids" : { + "isrc" : "DEL020520022" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2AA4SYAbnlhst15h2hwVzo" + }, + "href" : "https://api.spotify.com/v1/tracks/2AA4SYAbnlhst15h2hwVzo", + "id" : "2AA4SYAbnlhst15h2hwVzo", + "name" : "Chameleon", + "popularity" : 6, + "preview_url" : null, + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:2AA4SYAbnlhst15h2hwVzo" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0Ro37CuTGSat7ly803Ls2C" + }, + "href" : "https://api.spotify.com/v1/albums/0Ro37CuTGSat7ly803Ls2C", + "id" : "0Ro37CuTGSat7ly803Ls2C", + "images" : [ { + "height" : 631, + "url" : "https://i.scdn.co/image/c85c7f090f9d172c35695be09edd8d29856fe744", + "width" : 640 + }, { + "height" : 296, + "url" : "https://i.scdn.co/image/887a7baf74a2b3e25083834f7ce8bb11b0bf9bd4", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/5f51f42fc8492c25f3199f5000b39cb8d59a6676", + "width" : 64 + } ], + "name" : "Rocknrolla - Original Soundtrack (OST)", + "type" : "album", + "uri" : "spotify:album:0Ro37CuTGSat7ly803Ls2C" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2g3PKH7Z1Ofn5oGR6oDjLy" + }, + "href" : "https://api.spotify.com/v1/artists/2g3PKH7Z1Ofn5oGR6oDjLy", + "id" : "2g3PKH7Z1Ofn5oGR6oDjLy", + "name" : "The Sonics", + "type" : "artist", + "uri" : "spotify:artist:2g3PKH7Z1Ofn5oGR6oDjLy" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 156920, + "explicit" : false, + "external_ids" : { + "isrc" : "GB03A0700019" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5HPXoKxc1Dx44KgC7oNxtB" + }, + "href" : "https://api.spotify.com/v1/tracks/5HPXoKxc1Dx44KgC7oNxtB", + "id" : "5HPXoKxc1Dx44KgC7oNxtB", + "name" : "Have Love Will Travel", + "popularity" : 4, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:5HPXoKxc1Dx44KgC7oNxtB" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3hyGGjxu73JuzBa757H6R5" + }, + "href" : "https://api.spotify.com/v1/artists/3hyGGjxu73JuzBa757H6R5", + "id" : "3hyGGjxu73JuzBa757H6R5", + "name" : "The Mountain Goats", + "type" : "artist", + "uri" : "spotify:artist:3hyGGjxu73JuzBa757H6R5" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6umsQ5NWNpCqxGYA80a9V0" + }, + "href" : "https://api.spotify.com/v1/albums/6umsQ5NWNpCqxGYA80a9V0", + "id" : "6umsQ5NWNpCqxGYA80a9V0", + "images" : [ { + "height" : 546, + "url" : "https://i.scdn.co/image/1ee8b892442eeb0dcb166e77295dad2b43a89c78", + "width" : 640 + }, { + "height" : 256, + "url" : "https://i.scdn.co/image/3899c131bdc827decb9111e8ad714178afd5677d", + "width" : 300 + }, { + "height" : 55, + "url" : "https://i.scdn.co/image/f3a390151ba586591d2863a3e710161f294f3ee9", + "width" : 64 + } ], + "name" : "Tallahassee", + "type" : "album", + "uri" : "spotify:album:6umsQ5NWNpCqxGYA80a9V0" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3hyGGjxu73JuzBa757H6R5" + }, + "href" : "https://api.spotify.com/v1/artists/3hyGGjxu73JuzBa757H6R5", + "id" : "3hyGGjxu73JuzBa757H6R5", + "name" : "The Mountain Goats", + "type" : "artist", + "uri" : "spotify:artist:3hyGGjxu73JuzBa757H6R5" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 168306, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAFL0101077" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6KyyTheVmJZsNdqwOj0MR3" + }, + "href" : "https://api.spotify.com/v1/tracks/6KyyTheVmJZsNdqwOj0MR3", + "id" : "6KyyTheVmJZsNdqwOj0MR3", + "name" : "No Children", + "popularity" : 1, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:6KyyTheVmJZsNdqwOj0MR3" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2IBF8tLME76MIe1HwRL42X" + }, + "href" : "https://api.spotify.com/v1/artists/2IBF8tLME76MIe1HwRL42X", + "id" : "2IBF8tLME76MIe1HwRL42X", + "name" : "Forest Fire", + "type" : "artist", + "uri" : "spotify:artist:2IBF8tLME76MIe1HwRL42X" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1SKLJR68CkKGKd0lGo7ZjZ" + }, + "href" : "https://api.spotify.com/v1/albums/1SKLJR68CkKGKd0lGo7ZjZ", + "id" : "1SKLJR68CkKGKd0lGo7ZjZ", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a49607e1d764492aeff31205bb1c1520219dda36", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/af6e3e5de67f258338f47fcb5544d3cfc819677d", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/9df7695a8cdba82bafce59955f104151d9ca4088", + "width" : 64 + } ], + "name" : "Staring At the X", + "type" : "album", + "uri" : "spotify:album:1SKLJR68CkKGKd0lGo7ZjZ" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2IBF8tLME76MIe1HwRL42X" + }, + "href" : "https://api.spotify.com/v1/artists/2IBF8tLME76MIe1HwRL42X", + "id" : "2IBF8tLME76MIe1HwRL42X", + "name" : "Forest Fire", + "type" : "artist", + "uri" : "spotify:artist:2IBF8tLME76MIe1HwRL42X" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 250360, + "explicit" : false, + "external_ids" : { + "isrc" : "GBDCA1101885" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0Uw4Olkd7fP4nVMCNjAPRI" + }, + "href" : "https://api.spotify.com/v1/tracks/0Uw4Olkd7fP4nVMCNjAPRI", + "id" : "0Uw4Olkd7fP4nVMCNjAPRI", + "name" : "Future Shadows", + "popularity" : 9, + "preview_url" : "https://p.scdn.co/mp3-preview/bcd165517c1b180dacc9f1e6141b59ca0952f29a?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:0Uw4Olkd7fP4nVMCNjAPRI" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT" + }, + "href" : "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT", + "id" : "3eqjTLE0HfPfh78zjh6TqT", + "name" : "Bruce Springsteen", + "type" : "artist", + "uri" : "spotify:artist:3eqjTLE0HfPfh78zjh6TqT" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4yIwwX5ldkzAG2nZvbBGZ0" + }, + "href" : "https://api.spotify.com/v1/albums/4yIwwX5ldkzAG2nZvbBGZ0", + "id" : "4yIwwX5ldkzAG2nZvbBGZ0", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a7b691b9f7080778b60a6542bfacc06683bef0d8", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/51b6c5309fdc260491327138135824f06d28cb3b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0907ff02f98092f0004575a6843efe71f9aaf191", + "width" : 64 + } ], + "name" : "The Ghost Of Tom Joad", + "type" : "album", + "uri" : "spotify:album:4yIwwX5ldkzAG2nZvbBGZ0" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT" + }, + "href" : "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT", + "id" : "3eqjTLE0HfPfh78zjh6TqT", + "name" : "Bruce Springsteen", + "type" : "artist", + "uri" : "spotify:artist:3eqjTLE0HfPfh78zjh6TqT" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 263466, + "explicit" : false, + "external_ids" : { + "isrc" : "USSM19501784" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4DvKPM3hBAyVOpuQOrIA2D" + }, + "href" : "https://api.spotify.com/v1/tracks/4DvKPM3hBAyVOpuQOrIA2D", + "id" : "4DvKPM3hBAyVOpuQOrIA2D", + "name" : "The Ghost of Tom Joad", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:4DvKPM3hBAyVOpuQOrIA2D" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6Ej7FjLCm6jnolLCBmyRo6" + }, + "href" : "https://api.spotify.com/v1/artists/6Ej7FjLCm6jnolLCBmyRo6", + "id" : "6Ej7FjLCm6jnolLCBmyRo6", + "name" : "Alec Ounsworth", + "type" : "artist", + "uri" : "spotify:artist:6Ej7FjLCm6jnolLCBmyRo6" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/55PQiaDoUJWr8SkSszjiYs" + }, + "href" : "https://api.spotify.com/v1/albums/55PQiaDoUJWr8SkSszjiYs", + "id" : "55PQiaDoUJWr8SkSszjiYs", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/b21b83dd63aa6fd26b550cdfe6cac1c88bb9672f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/f68b163e31d76257561a448b1425730dd5355d22", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/639d7170ef6bb955aca908c40c14f4720a699be5", + "width" : 64 + } ], + "name" : "Mo Beauty", + "type" : "album", + "uri" : "spotify:album:55PQiaDoUJWr8SkSszjiYs" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6Ej7FjLCm6jnolLCBmyRo6" + }, + "href" : "https://api.spotify.com/v1/artists/6Ej7FjLCm6jnolLCBmyRo6", + "id" : "6Ej7FjLCm6jnolLCBmyRo6", + "name" : "Alec Ounsworth", + "type" : "artist", + "uri" : "spotify:artist:6Ej7FjLCm6jnolLCBmyRo6" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 237293, + "explicit" : false, + "external_ids" : { + "isrc" : "USEP40924004" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4iCkntewBG6lHDlBaNhcUc" + }, + "href" : "https://api.spotify.com/v1/tracks/4iCkntewBG6lHDlBaNhcUc", + "id" : "4iCkntewBG6lHDlBaNhcUc", + "name" : "That is not my Home (after Bruegel)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4iCkntewBG6lHDlBaNhcUc" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6QtGlUje9TIkLrgPZrESuk" + }, + "href" : "https://api.spotify.com/v1/artists/6QtGlUje9TIkLrgPZrESuk", + "id" : "6QtGlUje9TIkLrgPZrESuk", + "name" : "Steve Miller Band", + "type" : "artist", + "uri" : "spotify:artist:6QtGlUje9TIkLrgPZrESuk" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7xiJjYVjV7YaPyBBxCqstQ" + }, + "href" : "https://api.spotify.com/v1/albums/7xiJjYVjV7YaPyBBxCqstQ", + "id" : "7xiJjYVjV7YaPyBBxCqstQ", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f2ff5d2a72b688ea16147566391eca732c77c612", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/02dba4d29414b869420b00445390b3b9d804df63", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0a56d3d34a6a1702fdaf39c09fdecbf5eba567df", + "width" : 64 + } ], + "name" : "Fly Like An Eagle", + "type" : "album", + "uri" : "spotify:album:7xiJjYVjV7YaPyBBxCqstQ" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6QtGlUje9TIkLrgPZrESuk" + }, + "href" : "https://api.spotify.com/v1/artists/6QtGlUje9TIkLrgPZrESuk", + "id" : "6QtGlUje9TIkLrgPZrESuk", + "name" : "Steve Miller Band", + "type" : "artist", + "uri" : "spotify:artist:6QtGlUje9TIkLrgPZrESuk" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 194400, + "explicit" : false, + "external_ids" : { + "isrc" : "GBBLG7600321" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4Dm5q3TTxAUvy4wW6zFPHU" + }, + "href" : "https://api.spotify.com/v1/tracks/4Dm5q3TTxAUvy4wW6zFPHU", + "id" : "4Dm5q3TTxAUvy4wW6zFPHU", + "name" : "Serenade", + "popularity" : 0, + "preview_url" : null, + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:4Dm5q3TTxAUvy4wW6zFPHU" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0vJmThhnQJqHVDMkQtYhF5" + }, + "href" : "https://api.spotify.com/v1/artists/0vJmThhnQJqHVDMkQtYhF5", + "id" : "0vJmThhnQJqHVDMkQtYhF5", + "name" : "Electric Blanket", + "type" : "artist", + "uri" : "spotify:artist:0vJmThhnQJqHVDMkQtYhF5" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2Uy0d8sjDCqfJyTRX0nA6A" + }, + "href" : "https://api.spotify.com/v1/albums/2Uy0d8sjDCqfJyTRX0nA6A", + "id" : "2Uy0d8sjDCqfJyTRX0nA6A", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/12cbe6ba996755f869bc44367a80f4c63686fefe", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/85c5c8153a7cbf23a6166e1308a0fb094b6d776b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/543af2d5aca1877a45667195451e1d0f90cf6dde", + "width" : 64 + } ], + "name" : "Wuthering Heights", + "type" : "album", + "uri" : "spotify:album:2Uy0d8sjDCqfJyTRX0nA6A" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0vJmThhnQJqHVDMkQtYhF5" + }, + "href" : "https://api.spotify.com/v1/artists/0vJmThhnQJqHVDMkQtYhF5", + "id" : "0vJmThhnQJqHVDMkQtYhF5", + "name" : "Electric Blanket", + "type" : "artist", + "uri" : "spotify:artist:0vJmThhnQJqHVDMkQtYhF5" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 229893, + "explicit" : false, + "external_ids" : { + "isrc" : "CH4131100507" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4ccbxEaaedll3qiOHZL1uP" + }, + "href" : "https://api.spotify.com/v1/tracks/4ccbxEaaedll3qiOHZL1uP", + "id" : "4ccbxEaaedll3qiOHZL1uP", + "name" : "Wuthering Heights", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:4ccbxEaaedll3qiOHZL1uP" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3yEnArbNHyTCwMRvD9SBy4" + }, + "href" : "https://api.spotify.com/v1/artists/3yEnArbNHyTCwMRvD9SBy4", + "id" : "3yEnArbNHyTCwMRvD9SBy4", + "name" : "Wolfmother", + "type" : "artist", + "uri" : "spotify:artist:3yEnArbNHyTCwMRvD9SBy4" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0jjNb79VYqLY21IjyWKsWe" + }, + "href" : "https://api.spotify.com/v1/albums/0jjNb79VYqLY21IjyWKsWe", + "id" : "0jjNb79VYqLY21IjyWKsWe", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/41d7e97a1ff198c76e3753897c3063f71211ecb4", + "width" : 638 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/54a1ebbe7ae6208acf19f5169dd9c9ac2490665f", + "width" : 299 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d371ad31864ec990afd95ee23e7ab72666f7d07c", + "width" : 64 + } ], + "name" : "Wolfmother", + "type" : "album", + "uri" : "spotify:album:0jjNb79VYqLY21IjyWKsWe" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3yEnArbNHyTCwMRvD9SBy4" + }, + "href" : "https://api.spotify.com/v1/artists/3yEnArbNHyTCwMRvD9SBy4", + "id" : "3yEnArbNHyTCwMRvD9SBy4", + "name" : "Wolfmother", + "type" : "artist", + "uri" : "spotify:artist:3yEnArbNHyTCwMRvD9SBy4" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 280466, + "explicit" : false, + "external_ids" : { + "isrc" : "AUUM70500115" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4juq76lIar8YWOLpYMXUAG" + }, + "href" : "https://api.spotify.com/v1/tracks/4juq76lIar8YWOLpYMXUAG", + "id" : "4juq76lIar8YWOLpYMXUAG", + "name" : "Joker And The Thief", + "popularity" : 63, + "preview_url" : "https://p.scdn.co/mp3-preview/b47ebb3dc946f03c445e7a554ba15c11fd477bee?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:4juq76lIar8YWOLpYMXUAG" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/47JQuzfAluqS3qvTo4jqsG" + }, + "href" : "https://api.spotify.com/v1/artists/47JQuzfAluqS3qvTo4jqsG", + "id" : "47JQuzfAluqS3qvTo4jqsG", + "name" : "Reefer Decree", + "type" : "artist", + "uri" : "spotify:artist:47JQuzfAluqS3qvTo4jqsG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5cXObqjNjq3c6KVGKoz4fK" + }, + "href" : "https://api.spotify.com/v1/albums/5cXObqjNjq3c6KVGKoz4fK", + "id" : "5cXObqjNjq3c6KVGKoz4fK", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/76b2a059b0d16734aca154882b1875e3eab7b180", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3632438e99aff83bcd00e01aee1efc3ac48bffa3", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/ad1b46b423a2133489bc8dd0ca94ec19662d564a", + "width" : 64 + } ], + "name" : "Ice Age", + "type" : "album", + "uri" : "spotify:album:5cXObqjNjq3c6KVGKoz4fK" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/47JQuzfAluqS3qvTo4jqsG" + }, + "href" : "https://api.spotify.com/v1/artists/47JQuzfAluqS3qvTo4jqsG", + "id" : "47JQuzfAluqS3qvTo4jqsG", + "name" : "Reefer Decree", + "type" : "artist", + "uri" : "spotify:artist:47JQuzfAluqS3qvTo4jqsG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 412593, + "explicit" : false, + "external_ids" : { + "isrc" : "DKZVA1052302" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4xIga716AAWTBVCrWtuWpQ" + }, + "href" : "https://api.spotify.com/v1/tracks/4xIga716AAWTBVCrWtuWpQ", + "id" : "4xIga716AAWTBVCrWtuWpQ", + "name" : "Kongasm - Original", + "popularity" : 3, + "preview_url" : "https://p.scdn.co/mp3-preview/3c92d3350d945d4626f01db32896c71d14c8b5c3?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:4xIga716AAWTBVCrWtuWpQ" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/775nfRVFPVu7WSsIju6ipJ" + }, + "href" : "https://api.spotify.com/v1/albums/775nfRVFPVu7WSsIju6ipJ", + "id" : "775nfRVFPVu7WSsIju6ipJ", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/11d3dbdb882769e81b04b5a135f545789f616037", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/27a020a51239c5317e90af820f08c9a616643bff", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/f8d0eb87d8e4a9aaee7e788f18d825ff50e0e65e", + "width" : 64 + } ], + "name" : "Radiodread", + "type" : "album", + "uri" : "spotify:album:775nfRVFPVu7WSsIju6ipJ" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5FWTu1MZdB5fjKif2rZldJ" + }, + "href" : "https://api.spotify.com/v1/artists/5FWTu1MZdB5fjKif2rZldJ", + "id" : "5FWTu1MZdB5fjKif2rZldJ", + "name" : "Easy Star All-Stars", + "type" : "artist", + "uri" : "spotify:artist:5FWTu1MZdB5fjKif2rZldJ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7enBrBojgBJuPPdqTq4Z5F" + }, + "href" : "https://api.spotify.com/v1/artists/7enBrBojgBJuPPdqTq4Z5F", + "id" : "7enBrBojgBJuPPdqTq4Z5F", + "name" : "Citizen Cope", + "type" : "artist", + "uri" : "spotify:artist:7enBrBojgBJuPPdqTq4Z5F" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 288080, + "explicit" : false, + "external_ids" : { + "isrc" : "US4CL0610006" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2nTcHYwkqK6NM54OExjDEi" + }, + "href" : "https://api.spotify.com/v1/tracks/2nTcHYwkqK6NM54OExjDEi", + "id" : "2nTcHYwkqK6NM54OExjDEi", + "name" : "Karma Police", + "popularity" : 53, + "preview_url" : "https://p.scdn.co/mp3-preview/7ce925daf25cb78617518114ba535c73430a46bf?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:2nTcHYwkqK6NM54OExjDEi" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/04XfL2RkXRmQa2KEyAM0RF" + }, + "href" : "https://api.spotify.com/v1/artists/04XfL2RkXRmQa2KEyAM0RF", + "id" : "04XfL2RkXRmQa2KEyAM0RF", + "name" : "Alexander", + "type" : "artist", + "uri" : "spotify:artist:04XfL2RkXRmQa2KEyAM0RF" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/77e5pOg4N7jT3tjhBkA6Op" + }, + "href" : "https://api.spotify.com/v1/albums/77e5pOg4N7jT3tjhBkA6Op", + "id" : "77e5pOg4N7jT3tjhBkA6Op", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/8b3947a3a52dc59d3a6b9b7bc82ec0ecaa1d1758", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/ff834474f3e4e2845cbf469fd4e99c6c071b79bf", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/a50f0077ab6f776a0a79185e026d08fc92f1648d", + "width" : 64 + } ], + "name" : "Alexander", + "type" : "album", + "uri" : "spotify:album:77e5pOg4N7jT3tjhBkA6Op" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/04XfL2RkXRmQa2KEyAM0RF" + }, + "href" : "https://api.spotify.com/v1/artists/04XfL2RkXRmQa2KEyAM0RF", + "id" : "04XfL2RkXRmQa2KEyAM0RF", + "name" : "Alexander", + "type" : "artist", + "uri" : "spotify:artist:04XfL2RkXRmQa2KEyAM0RF" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 260923, + "explicit" : false, + "external_ids" : { + "isrc" : "USVR91165603" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4R8rN5XAQSAhzunX84Gr1k" + }, + "href" : "https://api.spotify.com/v1/tracks/4R8rN5XAQSAhzunX84Gr1k", + "id" : "4R8rN5XAQSAhzunX84Gr1k", + "name" : "Truth", + "popularity" : 56, + "preview_url" : "https://p.scdn.co/mp3-preview/c56b398eb502c95f01f780d47b7b8fbced41ac62?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:4R8rN5XAQSAhzunX84Gr1k" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/78xUyw6FkVZrRAtziFdtdu" + }, + "href" : "https://api.spotify.com/v1/artists/78xUyw6FkVZrRAtziFdtdu", + "id" : "78xUyw6FkVZrRAtziFdtdu", + "name" : "The Roots", + "type" : "artist", + "uri" : "spotify:artist:78xUyw6FkVZrRAtziFdtdu" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0cwlEeMEkvdoiPNJxlzHtI" + }, + "href" : "https://api.spotify.com/v1/albums/0cwlEeMEkvdoiPNJxlzHtI", + "id" : "0cwlEeMEkvdoiPNJxlzHtI", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f5d864dcad5254b2eb158573e7750027dc385ab5", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5535e08a4013b074f4d2ad3f1442bb88eee943c9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/ee6c7cd1170fa977a0fdb630c285517c919b48cb", + "width" : 64 + } ], + "name" : "Undun", + "type" : "album", + "uri" : "spotify:album:0cwlEeMEkvdoiPNJxlzHtI" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/78xUyw6FkVZrRAtziFdtdu" + }, + "href" : "https://api.spotify.com/v1/artists/78xUyw6FkVZrRAtziFdtdu", + "id" : "78xUyw6FkVZrRAtziFdtdu", + "name" : "The Roots", + "type" : "artist", + "uri" : "spotify:artist:78xUyw6FkVZrRAtziFdtdu" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5SyCTZ8X8YQCI0J1VRp4iC" + }, + "href" : "https://api.spotify.com/v1/artists/5SyCTZ8X8YQCI0J1VRp4iC", + "id" : "5SyCTZ8X8YQCI0J1VRp4iC", + "name" : "Phonte", + "type" : "artist", + "uri" : "spotify:artist:5SyCTZ8X8YQCI0J1VRp4iC" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/7df4aW2MDoNsEhmJ2NRoro" + }, + "href" : "https://api.spotify.com/v1/artists/7df4aW2MDoNsEhmJ2NRoro", + "id" : "7df4aW2MDoNsEhmJ2NRoro", + "name" : "Dice Raw", + "type" : "artist", + "uri" : "spotify:artist:7df4aW2MDoNsEhmJ2NRoro" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 235706, + "explicit" : true, + "external_ids" : { + "isrc" : "USUM71117858" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2vxwhAsRRVDhVybz3lzD0c" + }, + "href" : "https://api.spotify.com/v1/tracks/2vxwhAsRRVDhVybz3lzD0c", + "id" : "2vxwhAsRRVDhVybz3lzD0c", + "name" : "One Time", + "popularity" : 34, + "preview_url" : "https://p.scdn.co/mp3-preview/daa683a36ff00553577078b2b418903e443c6d8b?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 4, + "type" : "track", + "uri" : "spotify:track:2vxwhAsRRVDhVybz3lzD0c" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6xSTQT32ZxLQPe37QIC308" + }, + "href" : "https://api.spotify.com/v1/artists/6xSTQT32ZxLQPe37QIC308", + "id" : "6xSTQT32ZxLQPe37QIC308", + "name" : "Anna Ternheim", + "type" : "artist", + "uri" : "spotify:artist:6xSTQT32ZxLQPe37QIC308" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2uRdTrtChn1rvFkDmAtL8N" + }, + "href" : "https://api.spotify.com/v1/albums/2uRdTrtChn1rvFkDmAtL8N", + "id" : "2uRdTrtChn1rvFkDmAtL8N", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a957e7287dca4a9df9e80c72a0155cda317a559b", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e9c86259ef3fa41becb0779729446ef991c4e131", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d01394c7bd459e520d778ee12617a29207ec3b88", + "width" : 64 + } ], + "name" : "The Night Visitor", + "type" : "album", + "uri" : "spotify:album:2uRdTrtChn1rvFkDmAtL8N" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6xSTQT32ZxLQPe37QIC308" + }, + "href" : "https://api.spotify.com/v1/artists/6xSTQT32ZxLQPe37QIC308", + "id" : "6xSTQT32ZxLQPe37QIC308", + "name" : "Anna Ternheim", + "type" : "artist", + "uri" : "spotify:artist:6xSTQT32ZxLQPe37QIC308" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4MHz2XUNNGuttl6Yj9OHeA" + }, + "href" : "https://api.spotify.com/v1/artists/4MHz2XUNNGuttl6Yj9OHeA", + "id" : "4MHz2XUNNGuttl6Yj9OHeA", + "name" : "David Ferguson", + "type" : "artist", + "uri" : "spotify:artist:4MHz2XUNNGuttl6Yj9OHeA" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 229026, + "explicit" : false, + "external_ids" : { + "isrc" : "SEWKN1100102" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/1ErKzGtRz3WhZgsXsP7RJy" + }, + "href" : "https://api.spotify.com/v1/tracks/1ErKzGtRz3WhZgsXsP7RJy", + "id" : "1ErKzGtRz3WhZgsXsP7RJy", + "name" : "The Longer The Waiting (The Sweeter The Kiss)", + "popularity" : 51, + "preview_url" : "https://p.scdn.co/mp3-preview/6213d071c0b32fe5448b676a567a71b160881660?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:1ErKzGtRz3WhZgsXsP7RJy" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1fhvwCr1HKEZgZYOrfsHyk" + }, + "href" : "https://api.spotify.com/v1/artists/1fhvwCr1HKEZgZYOrfsHyk", + "id" : "1fhvwCr1HKEZgZYOrfsHyk", + "name" : "Ison & Fille", + "type" : "artist", + "uri" : "spotify:artist:1fhvwCr1HKEZgZYOrfsHyk" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4vWudqijsW2xTwCVtB6FH4" + }, + "href" : "https://api.spotify.com/v1/albums/4vWudqijsW2xTwCVtB6FH4", + "id" : "4vWudqijsW2xTwCVtB6FH4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/72a6e3fbcacf034a500b54d15a03b6d3b1cce4c6", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/32ca042ff6e0a58b5c9bc8d073963bd6b371253a", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/6ec6661d23b070ceee9b8ea509b2a111234171ae", + "width" : 64 + } ], + "name" : "För Evigt", + "type" : "album", + "uri" : "spotify:album:4vWudqijsW2xTwCVtB6FH4" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1fhvwCr1HKEZgZYOrfsHyk" + }, + "href" : "https://api.spotify.com/v1/artists/1fhvwCr1HKEZgZYOrfsHyk", + "id" : "1fhvwCr1HKEZgZYOrfsHyk", + "name" : "Ison & Fille", + "type" : "artist", + "uri" : "spotify:artist:1fhvwCr1HKEZgZYOrfsHyk" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5V4dYAavPYxUjwVjZm45RZ" + }, + "href" : "https://api.spotify.com/v1/artists/5V4dYAavPYxUjwVjZm45RZ", + "id" : "5V4dYAavPYxUjwVjZm45RZ", + "name" : "Hoosam", + "type" : "artist", + "uri" : "spotify:artist:5V4dYAavPYxUjwVjZm45RZ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0zKX6nlK1A4ZmztnFPOKGs" + }, + "href" : "https://api.spotify.com/v1/artists/0zKX6nlK1A4ZmztnFPOKGs", + "id" : "0zKX6nlK1A4ZmztnFPOKGs", + "name" : "Aleks", + "type" : "artist", + "uri" : "spotify:artist:0zKX6nlK1A4ZmztnFPOKGs" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2efiY9RRTfchAvXGHkVzMv" + }, + "href" : "https://api.spotify.com/v1/artists/2efiY9RRTfchAvXGHkVzMv", + "id" : "2efiY9RRTfchAvXGHkVzMv", + "name" : "Sabo", + "type" : "artist", + "uri" : "spotify:artist:2efiY9RRTfchAvXGHkVzMv" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 287280, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXZC1100313" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0BNLcGViPb6b9JHXYxickW" + }, + "href" : "https://api.spotify.com/v1/tracks/0BNLcGViPb6b9JHXYxickW", + "id" : "0BNLcGViPb6b9JHXYxickW", + "name" : "Från Hjärtat (feat. Sabo, Hoosam & Aleks)", + "popularity" : 0, + "preview_url" : null, + "track_number" : 13, + "type" : "track", + "uri" : "spotify:track:0BNLcGViPb6b9JHXYxickW" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb" + }, + "href" : "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb", + "id" : "4Z8W4fKeB5YxbusRsdQVPb", + "name" : "Radiohead", + "type" : "artist", + "uri" : "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4wciNwfgbL74SJG9BFlf2R" + }, + "href" : "https://api.spotify.com/v1/albums/4wciNwfgbL74SJG9BFlf2R", + "id" : "4wciNwfgbL74SJG9BFlf2R", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/8c0c7f1e0a7f0ee130d139252eb985052373a5ce", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/0ae0028d28e88142d990d68b5f9f5e8c2005d2fa", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2b12613409395b17b2794c2fbda60983fff6e92b", + "width" : 64 + } ], + "name" : "The Best Of", + "type" : "album", + "uri" : "spotify:album:4wciNwfgbL74SJG9BFlf2R" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb" + }, + "href" : "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb", + "id" : "4Z8W4fKeB5YxbusRsdQVPb", + "name" : "Radiohead", + "type" : "artist", + "uri" : "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228533, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAYE9700386" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7wCMgJTMt1mQg2l7P9apqE" + }, + "href" : "https://api.spotify.com/v1/tracks/7wCMgJTMt1mQg2l7P9apqE", + "id" : "7wCMgJTMt1mQg2l7P9apqE", + "name" : "No Surprises", + "popularity" : 2, + "preview_url" : null, + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:7wCMgJTMt1mQg2l7P9apqE" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3csPCeXsj2wezyvkRFzvmV" + }, + "href" : "https://api.spotify.com/v1/artists/3csPCeXsj2wezyvkRFzvmV", + "id" : "3csPCeXsj2wezyvkRFzvmV", + "name" : "Orbital", + "type" : "artist", + "uri" : "spotify:artist:3csPCeXsj2wezyvkRFzvmV" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4CrbvKBDZEC277ERbinNjW" + }, + "href" : "https://api.spotify.com/v1/albums/4CrbvKBDZEC277ERbinNjW", + "id" : "4CrbvKBDZEC277ERbinNjW", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0c82d62c81f90ecb0a4861f37794bd8e647f5cc2", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e5d011bfff979a2714c1cb215a0d6628a6c0a5a8", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/35e4ce42cefb34d222965591778bcf28b35eaa25", + "width" : 64 + } ], + "name" : "The Altogether", + "type" : "album", + "uri" : "spotify:album:4CrbvKBDZEC277ERbinNjW" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3csPCeXsj2wezyvkRFzvmV" + }, + "href" : "https://api.spotify.com/v1/artists/3csPCeXsj2wezyvkRFzvmV", + "id" : "3csPCeXsj2wezyvkRFzvmV", + "name" : "Orbital", + "type" : "artist", + "uri" : "spotify:artist:3csPCeXsj2wezyvkRFzvmV" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 330906, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAAP0100287" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/73TOWab7oyBhxJSfSypeLB" + }, + "href" : "https://api.spotify.com/v1/tracks/73TOWab7oyBhxJSfSypeLB", + "id" : "73TOWab7oyBhxJSfSypeLB", + "name" : "Doctor?", + "popularity" : 20, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:73TOWab7oyBhxJSfSypeLB" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6PCQFjklDvRWq1iW7SW7ja" + }, + "href" : "https://api.spotify.com/v1/albums/6PCQFjklDvRWq1iW7SW7ja", + "id" : "6PCQFjklDvRWq1iW7SW7ja", + "images" : [ { + "height" : 636, + "url" : "https://i.scdn.co/image/c9f070201be0b50c4eafe2f496c0cf9918a42015", + "width" : 640 + }, { + "height" : 298, + "url" : "https://i.scdn.co/image/3db214b80667981e10899277689ba6c3fe9e524e", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/e829a85fd53d1404d2d8d33af3824574a7c9f865", + "width" : 64 + } ], + "name" : "Relax", + "type" : "album", + "uri" : "spotify:album:6PCQFjklDvRWq1iW7SW7ja" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC" + }, + "href" : "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC", + "id" : "1nJvji2KIlWSseXRSlNYsC", + "name" : "The Velvet Underground", + "type" : "artist", + "uri" : "spotify:artist:1nJvji2KIlWSseXRSlNYsC" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0IwlY33zbBXN7zlS9DP2Cj" + }, + "href" : "https://api.spotify.com/v1/artists/0IwlY33zbBXN7zlS9DP2Cj", + "id" : "0IwlY33zbBXN7zlS9DP2Cj", + "name" : "Nico", + "type" : "artist", + "uri" : "spotify:artist:0IwlY33zbBXN7zlS9DP2Cj" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 173493, + "explicit" : false, + "external_ids" : { + "isrc" : "USPR36702759" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4J8mzasN2ZOE1xXoR3ZtOi" + }, + "href" : "https://api.spotify.com/v1/tracks/4J8mzasN2ZOE1xXoR3ZtOi", + "id" : "4J8mzasN2ZOE1xXoR3ZtOi", + "name" : "Sunday Morning", + "popularity" : 15, + "preview_url" : "https://p.scdn.co/mp3-preview/b522aca3cc8efbe6d99725339a28b67a4bcce94e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:4J8mzasN2ZOE1xXoR3ZtOi" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4Bmvl2tQsA7hY7Y4dK5P43" + }, + "href" : "https://api.spotify.com/v1/albums/4Bmvl2tQsA7hY7Y4dK5P43", + "id" : "4Bmvl2tQsA7hY7Y4dK5P43", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/e72e8cdd1c53c2f8db9a1ff6fa54d0d1e8ba732b", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5d085f6680a1a57425d846a4798272dffb3f333f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/735a3e7a8340e8343c04ca652b42c3f1410ac288", + "width" : 64 + } ], + "name" : "The Best Year Of My Life: 1983", + "type" : "album", + "uri" : "spotify:album:4Bmvl2tQsA7hY7Y4dK5P43" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4etuCZVdP8yiNPn4xf0ie5" + }, + "href" : "https://api.spotify.com/v1/artists/4etuCZVdP8yiNPn4xf0ie5", + "id" : "4etuCZVdP8yiNPn4xf0ie5", + "name" : "Julio Iglesias", + "type" : "artist", + "uri" : "spotify:artist:4etuCZVdP8yiNPn4xf0ie5" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228173, + "explicit" : false, + "external_ids" : { + "isrc" : "NLB639999968" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2hqymiIYhnWxtGJB3A94w9" + }, + "href" : "https://api.spotify.com/v1/tracks/2hqymiIYhnWxtGJB3A94w9", + "id" : "2hqymiIYhnWxtGJB3A94w9", + "name" : "Hey", + "popularity" : 0, + "preview_url" : null, + "track_number" : 17, + "type" : "track", + "uri" : "spotify:track:2hqymiIYhnWxtGJB3A94w9" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1DDvPtrcgjYwhtsREhaLaf" + }, + "href" : "https://api.spotify.com/v1/albums/1DDvPtrcgjYwhtsREhaLaf", + "id" : "1DDvPtrcgjYwhtsREhaLaf", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7ebc964bbf2c8634d3274dd235ae118b37119793", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6122a0bb3c6bdd64977eff58d6b6deded0204fe7", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d322eff7cf0029347e397508e7df9ce79658f49a", + "width" : 64 + } ], + "name" : "Tres Tres Fort", + "type" : "album", + "uri" : "spotify:album:1DDvPtrcgjYwhtsREhaLaf" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 348080, + "explicit" : false, + "external_ids" : { + "isrc" : "BE6F50802330" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7xSHl8okDDcq1jhKWG6zHy" + }, + "href" : "https://api.spotify.com/v1/tracks/7xSHl8okDDcq1jhKWG6zHy", + "id" : "7xSHl8okDDcq1jhKWG6zHy", + "name" : "Moto Moindo", + "popularity" : 18, + "preview_url" : "https://p.scdn.co/mp3-preview/21ebdf5d836b2255f9df6ff90150dea5824f7ede?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:7xSHl8okDDcq1jhKWG6zHy" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1DDvPtrcgjYwhtsREhaLaf" + }, + "href" : "https://api.spotify.com/v1/albums/1DDvPtrcgjYwhtsREhaLaf", + "id" : "1DDvPtrcgjYwhtsREhaLaf", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/7ebc964bbf2c8634d3274dd235ae118b37119793", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6122a0bb3c6bdd64977eff58d6b6deded0204fe7", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d322eff7cf0029347e397508e7df9ce79658f49a", + "width" : 64 + } ], + "name" : "Tres Tres Fort", + "type" : "album", + "uri" : "spotify:album:1DDvPtrcgjYwhtsREhaLaf" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/18yvYM7OTI5lLkbcz0Daio" + }, + "href" : "https://api.spotify.com/v1/artists/18yvYM7OTI5lLkbcz0Daio", + "id" : "18yvYM7OTI5lLkbcz0Daio", + "name" : "Staff Benda Bilili", + "type" : "artist", + "uri" : "spotify:artist:18yvYM7OTI5lLkbcz0Daio" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 354480, + "explicit" : false, + "external_ids" : { + "isrc" : "BE6F50802390" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7FJMdtMJaSn9FFXTNY8sIh" + }, + "href" : "https://api.spotify.com/v1/tracks/7FJMdtMJaSn9FFXTNY8sIh", + "id" : "7FJMdtMJaSn9FFXTNY8sIh", + "name" : "Staff Benda Bilili", + "popularity" : 13, + "preview_url" : "https://p.scdn.co/mp3-preview/2a87dc3b44e3da24f95f70e94bfcab97f732c90d?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 10, + "type" : "track", + "uri" : "spotify:track:7FJMdtMJaSn9FFXTNY8sIh" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3rJ3m1tM6vUgiWLjfV8sRf" + }, + "href" : "https://api.spotify.com/v1/artists/3rJ3m1tM6vUgiWLjfV8sRf", + "id" : "3rJ3m1tM6vUgiWLjfV8sRf", + "name" : "Jimmy Cliff", + "type" : "artist", + "uri" : "spotify:artist:3rJ3m1tM6vUgiWLjfV8sRf" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3L6BeuI5Du0b7sl2AmYVGA" + }, + "href" : "https://api.spotify.com/v1/albums/3L6BeuI5Du0b7sl2AmYVGA", + "id" : "3L6BeuI5Du0b7sl2AmYVGA", + "images" : [ { + "height" : 634, + "url" : "https://i.scdn.co/image/14a2816c1cb09be876fa5b3420eb58fa62cb7dc1", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/9eba0eab898b7c55cca967fbe0d685329d3d3efa", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/aefaaf417849c27fddeb2ddc0d36e8c03cfe5dd0", + "width" : 64 + } ], + "name" : "The Harder They Come (Remastered)", + "type" : "album", + "uri" : "spotify:album:3L6BeuI5Du0b7sl2AmYVGA" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4gYhCmAiXZvNxC92ODseS4" + }, + "href" : "https://api.spotify.com/v1/artists/4gYhCmAiXZvNxC92ODseS4", + "id" : "4gYhCmAiXZvNxC92ODseS4", + "name" : "The Slickers", + "type" : "artist", + "uri" : "spotify:artist:4gYhCmAiXZvNxC92ODseS4" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 183200, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAAN7200046" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/631Lp7kv8Ku7rQJ8tfvvuz" + }, + "href" : "https://api.spotify.com/v1/tracks/631Lp7kv8Ku7rQJ8tfvvuz", + "id" : "631Lp7kv8Ku7rQJ8tfvvuz", + "name" : "Johnny Too Bad", + "popularity" : 40, + "preview_url" : "https://p.scdn.co/mp3-preview/1c6a84cd825240f7176e6ae45ae63b5d5df0af44?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:631Lp7kv8Ku7rQJ8tfvvuz" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3rxIQc9kWT6Ueg4BhnOwRK" + }, + "href" : "https://api.spotify.com/v1/artists/3rxIQc9kWT6Ueg4BhnOwRK", + "id" : "3rxIQc9kWT6Ueg4BhnOwRK", + "name" : "Quincy Jones", + "type" : "artist", + "uri" : "spotify:artist:3rxIQc9kWT6Ueg4BhnOwRK" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3rxdjOpfK1jie9ARFM4zLS" + }, + "href" : "https://api.spotify.com/v1/albums/3rxdjOpfK1jie9ARFM4zLS", + "id" : "3rxdjOpfK1jie9ARFM4zLS", + "images" : [ { + "height" : 634, + "url" : "https://i.scdn.co/image/f770c646187ced768a32d6d5ecaf4835b7b7701c", + "width" : 640 + }, { + "height" : 297, + "url" : "https://i.scdn.co/image/d1a60fe2ec47638a8c19a6aa7eec9a8b74ee31bc", + "width" : 300 + }, { + "height" : 63, + "url" : "https://i.scdn.co/image/5c478ce9215474ea24ab003fcd833258236e793e", + "width" : 64 + } ], + "name" : "Big Band Bossa Nova (Originals International Version)", + "type" : "album", + "uri" : "spotify:album:3rxdjOpfK1jie9ARFM4zLS" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3rxIQc9kWT6Ueg4BhnOwRK" + }, + "href" : "https://api.spotify.com/v1/artists/3rxIQc9kWT6Ueg4BhnOwRK", + "id" : "3rxIQc9kWT6Ueg4BhnOwRK", + "name" : "Quincy Jones", + "type" : "artist", + "uri" : "spotify:artist:3rxIQc9kWT6Ueg4BhnOwRK" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 164211, + "explicit" : false, + "external_ids" : { + "isrc" : "USPR36270200" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0GrCQKtss5KErFHWfwUKwD" + }, + "href" : "https://api.spotify.com/v1/tracks/0GrCQKtss5KErFHWfwUKwD", + "id" : "0GrCQKtss5KErFHWfwUKwD", + "name" : "Soul Bossa Nova", + "popularity" : 8, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:0GrCQKtss5KErFHWfwUKwD" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6w6z8m4WXX7Tub4Rb6Lu7R" + }, + "href" : "https://api.spotify.com/v1/artists/6w6z8m4WXX7Tub4Rb6Lu7R", + "id" : "6w6z8m4WXX7Tub4Rb6Lu7R", + "name" : "Jethro Tull", + "type" : "artist", + "uri" : "spotify:artist:6w6z8m4WXX7Tub4Rb6Lu7R" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0NGM3Ftwjw0dLNpAowmz3x" + }, + "href" : "https://api.spotify.com/v1/albums/0NGM3Ftwjw0dLNpAowmz3x", + "id" : "0NGM3Ftwjw0dLNpAowmz3x", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0d70b39a0577a8a5dbacf2129bbe173421bf55a4", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/dbe5bd170bd842d27cd15eebaee06cafd9f46efd", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/06eb8f5e9614046bd90f80ed862081bb13bfa33d", + "width" : 64 + } ], + "name" : "Aqualung", + "type" : "album", + "uri" : "spotify:album:0NGM3Ftwjw0dLNpAowmz3x" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6w6z8m4WXX7Tub4Rb6Lu7R" + }, + "href" : "https://api.spotify.com/v1/artists/6w6z8m4WXX7Tub4Rb6Lu7R", + "id" : "6w6z8m4WXX7Tub4Rb6Lu7R", + "name" : "Jethro Tull", + "type" : "artist", + "uri" : "spotify:artist:6w6z8m4WXX7Tub4Rb6Lu7R" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 395293, + "explicit" : false, + "external_ids" : { + "isrc" : "GBAYK7100012" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5UuikgHTxSRFRnC0zXx10i" + }, + "href" : "https://api.spotify.com/v1/tracks/5UuikgHTxSRFRnC0zXx10i", + "id" : "5UuikgHTxSRFRnC0zXx10i", + "name" : "Aqualung", + "popularity" : 67, + "preview_url" : "https://p.scdn.co/mp3-preview/22bb34d36eb44c0343fe12836e2a80b0e784890f?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5UuikgHTxSRFRnC0zXx10i" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2TwepUY7feaTuipStcyzLZ" + }, + "href" : "https://api.spotify.com/v1/artists/2TwepUY7feaTuipStcyzLZ", + "id" : "2TwepUY7feaTuipStcyzLZ", + "name" : "Asaf Avidan & the Mojos", + "type" : "artist", + "uri" : "spotify:artist:2TwepUY7feaTuipStcyzLZ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1HskEZDIhBHkpg5AzAL127" + }, + "href" : "https://api.spotify.com/v1/albums/1HskEZDIhBHkpg5AzAL127", + "id" : "1HskEZDIhBHkpg5AzAL127", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/5b28daa83c74ef4c92ae527819c8a1cc5a8baf9a", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/2955a4c20c03efe89a59b7808a2c598e70a515d0", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/49be81fa625afe389ac51efe5ab08ff9c6cfae6f", + "width" : 64 + } ], + "name" : "One Day / Reckoning Song (Wankelmut Remix) [Radio Edit]", + "type" : "album", + "uri" : "spotify:album:1HskEZDIhBHkpg5AzAL127" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2TwepUY7feaTuipStcyzLZ" + }, + "href" : "https://api.spotify.com/v1/artists/2TwepUY7feaTuipStcyzLZ", + "id" : "2TwepUY7feaTuipStcyzLZ", + "name" : "Asaf Avidan & the Mojos", + "type" : "artist", + "uri" : "spotify:artist:2TwepUY7feaTuipStcyzLZ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/01e2lCvLZ4fLUIRy68nptH" + }, + "href" : "https://api.spotify.com/v1/artists/01e2lCvLZ4fLUIRy68nptH", + "id" : "01e2lCvLZ4fLUIRy68nptH", + "name" : "Wankelmut", + "type" : "artist", + "uri" : "spotify:artist:01e2lCvLZ4fLUIRy68nptH" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 213186, + "explicit" : false, + "external_ids" : { + "isrc" : "DEQ321200132" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3gNNXc7GUgKRPR15W77eDR" + }, + "href" : "https://api.spotify.com/v1/tracks/3gNNXc7GUgKRPR15W77eDR", + "id" : "3gNNXc7GUgKRPR15W77eDR", + "name" : "One Day / Reckoning Song (Wankelmut Remix) [Radio Edit]", + "popularity" : 61, + "preview_url" : "https://p.scdn.co/mp3-preview/527a9d43fa6edcf5042d2179a07ea568687d9f0d?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:3gNNXc7GUgKRPR15W77eDR" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3i0VvjFfLzfX8TgDhgNWfe" + }, + "href" : "https://api.spotify.com/v1/artists/3i0VvjFfLzfX8TgDhgNWfe", + "id" : "3i0VvjFfLzfX8TgDhgNWfe", + "name" : "Jonathan Johansson", + "type" : "artist", + "uri" : "spotify:artist:3i0VvjFfLzfX8TgDhgNWfe" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6xossOP5btjQQaciEJd4AG" + }, + "href" : "https://api.spotify.com/v1/albums/6xossOP5btjQQaciEJd4AG", + "id" : "6xossOP5btjQQaciEJd4AG", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/0cfab2134eb6c3594b2583d431f9bd1d281430e4", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/4cd2115360c8dc0eb0b5b3f4e8331cbc2c895b08", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/c59e6616202b8689186a6280f5631ebb414515d4", + "width" : 64 + } ], + "name" : "En hand i himlen", + "type" : "album", + "uri" : "spotify:album:6xossOP5btjQQaciEJd4AG" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3i0VvjFfLzfX8TgDhgNWfe" + }, + "href" : "https://api.spotify.com/v1/artists/3i0VvjFfLzfX8TgDhgNWfe", + "id" : "3i0VvjFfLzfX8TgDhgNWfe", + "name" : "Jonathan Johansson", + "type" : "artist", + "uri" : "spotify:artist:3i0VvjFfLzfX8TgDhgNWfe" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 287213, + "explicit" : false, + "external_ids" : { + "isrc" : "SEWGI0801905" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0430F6pa9ricA4wUXWOsNn" + }, + "href" : "https://api.spotify.com/v1/tracks/0430F6pa9ricA4wUXWOsNn", + "id" : "0430F6pa9ricA4wUXWOsNn", + "name" : "Aldrig ensam", + "popularity" : 4, + "preview_url" : null, + "track_number" : 5, + "type" : "track", + "uri" : "spotify:track:0430F6pa9ricA4wUXWOsNn" + } + }, { + "added_at" : "2015-10-08T14:57:42Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/66KBDVJnA6c0DjHeSZYaHb" + }, + "href" : "https://api.spotify.com/v1/albums/66KBDVJnA6c0DjHeSZYaHb", + "id" : "66KBDVJnA6c0DjHeSZYaHb", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/41e56c2d7de86b3015301ca0b7f0fb31244789eb", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/05df95aa7d44c91379eacea35e0f18ba2294cf5b", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2a102de968c4ab67d8606e3b4bd1993b4d9931ca", + "width" : 64 + } ], + "name" : "Boss For Leader", + "type" : "album", + "uri" : "spotify:album:66KBDVJnA6c0DjHeSZYaHb" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4TzSCfS4LS5SVChh2AB2wH" + }, + "href" : "https://api.spotify.com/v1/artists/4TzSCfS4LS5SVChh2AB2wH", + "id" : "4TzSCfS4LS5SVChh2AB2wH", + "name" : "Slagsmålsklubben", + "type" : "artist", + "uri" : "spotify:artist:4TzSCfS4LS5SVChh2AB2wH" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 362586, + "explicit" : false, + "external_ids" : { + "isrc" : "SEXKD0700202" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0I00u1IwnGQVguICUiCsAf" + }, + "href" : "https://api.spotify.com/v1/tracks/0I00u1IwnGQVguICUiCsAf", + "id" : "0I00u1IwnGQVguICUiCsAf", + "name" : "Sponsored By Destiny", + "popularity" : 38, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:0I00u1IwnGQVguICUiCsAf" + } + }, { + "added_at" : "2015-10-10T00:49:08Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1LeVJ5GPeYDOVUjxx1y7Rp" + }, + "href" : "https://api.spotify.com/v1/artists/1LeVJ5GPeYDOVUjxx1y7Rp", + "id" : "1LeVJ5GPeYDOVUjxx1y7Rp", + "name" : "Unknown Mortal Orchestra", + "type" : "artist", + "uri" : "spotify:artist:1LeVJ5GPeYDOVUjxx1y7Rp" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/587Clxxo1i5flgjvS52bEC" + }, + "href" : "https://api.spotify.com/v1/albums/587Clxxo1i5flgjvS52bEC", + "id" : "587Clxxo1i5flgjvS52bEC", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/879df86e1d1c7652be108979817c5ec60025cf07", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/6398329a565132bdf9468a7e0aa14f86ef0d3256", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/b8c796313b68af190030a33402e6c5f7ba9057b7", + "width" : 64 + } ], + "name" : "Multi-Love", + "type" : "album", + "uri" : "spotify:album:587Clxxo1i5flgjvS52bEC" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/1LeVJ5GPeYDOVUjxx1y7Rp" + }, + "href" : "https://api.spotify.com/v1/artists/1LeVJ5GPeYDOVUjxx1y7Rp", + "id" : "1LeVJ5GPeYDOVUjxx1y7Rp", + "name" : "Unknown Mortal Orchestra", + "type" : "artist", + "uri" : "spotify:artist:1LeVJ5GPeYDOVUjxx1y7Rp" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 250800, + "explicit" : false, + "external_ids" : { + "isrc" : "US38Y1526201" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0PEXp5yk0sx9dJ8JzwvjJb" + }, + "href" : "https://api.spotify.com/v1/tracks/0PEXp5yk0sx9dJ8JzwvjJb", + "id" : "0PEXp5yk0sx9dJ8JzwvjJb", + "name" : "Multi-Love", + "popularity" : 68, + "preview_url" : "https://p.scdn.co/mp3-preview/be4fb5d07c991cb3e39c3727e59d4f9dcde32dc1?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:0PEXp5yk0sx9dJ8JzwvjJb" + } + }, { + "added_at" : "2015-10-11T16:27:30Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/16Kp9T6MHoSXKJYiSWnyFL" + }, + "href" : "https://api.spotify.com/v1/albums/16Kp9T6MHoSXKJYiSWnyFL", + "id" : "16Kp9T6MHoSXKJYiSWnyFL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/6eddc1be1a7e77be580b8bfdb1dba07afc2ca0b9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3dab1091d0c6c0639e34cb53b005006ee1fb5ec9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/fc2cabdd4f91b39a2e7cce6f32ebaa3c14b13ba6", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 8", + "type" : "album", + "uri" : "spotify:album:16Kp9T6MHoSXKJYiSWnyFL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/22680B8sUdq6bL6nQaJfwg" + }, + "href" : "https://api.spotify.com/v1/artists/22680B8sUdq6bL6nQaJfwg", + "id" : "22680B8sUdq6bL6nQaJfwg", + "name" : "Siriusmo", + "type" : "artist", + "uri" : "spotify:artist:22680B8sUdq6bL6nQaJfwg" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 228240, + "explicit" : false, + "external_ids" : { + "isrc" : "DEAF70900363" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0FubbOyFuWp0hAq6V8a1AI" + }, + "href" : "https://api.spotify.com/v1/tracks/0FubbOyFuWp0hAq6V8a1AI", + "id" : "0FubbOyFuWp0hAq6V8a1AI", + "name" : "High Together", + "popularity" : 0, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:0FubbOyFuWp0hAq6V8a1AI" + } + }, { + "added_at" : "2015-10-11T16:27:35Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/16Kp9T6MHoSXKJYiSWnyFL" + }, + "href" : "https://api.spotify.com/v1/albums/16Kp9T6MHoSXKJYiSWnyFL", + "id" : "16Kp9T6MHoSXKJYiSWnyFL", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/6eddc1be1a7e77be580b8bfdb1dba07afc2ca0b9", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/3dab1091d0c6c0639e34cb53b005006ee1fb5ec9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/fc2cabdd4f91b39a2e7cce6f32ebaa3c14b13ba6", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 8", + "type" : "album", + "uri" : "spotify:album:16Kp9T6MHoSXKJYiSWnyFL" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0p5axeJsbtTCXBrRVoKjwu" + }, + "href" : "https://api.spotify.com/v1/artists/0p5axeJsbtTCXBrRVoKjwu", + "id" : "0p5axeJsbtTCXBrRVoKjwu", + "name" : "The Drums", + "type" : "artist", + "uri" : "spotify:artist:0p5axeJsbtTCXBrRVoKjwu" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 177120, + "explicit" : false, + "external_ids" : { + "isrc" : "GBGEY0900107" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2TOoPCW05TjfwMqpVTThVZ" + }, + "href" : "https://api.spotify.com/v1/tracks/2TOoPCW05TjfwMqpVTThVZ", + "id" : "2TOoPCW05TjfwMqpVTThVZ", + "name" : "Let's Go Surfing", + "popularity" : 7, + "preview_url" : null, + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:2TOoPCW05TjfwMqpVTThVZ" + } + }, { + "added_at" : "2015-10-11T16:27:38Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5L59UhTBOeIRPxF5umwC9p" + }, + "href" : "https://api.spotify.com/v1/artists/5L59UhTBOeIRPxF5umwC9p", + "id" : "5L59UhTBOeIRPxF5umwC9p", + "name" : "Groundation", + "type" : "artist", + "uri" : "spotify:artist:5L59UhTBOeIRPxF5umwC9p" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/5IEhl4fBSMohKlF5mievi2" + }, + "href" : "https://api.spotify.com/v1/albums/5IEhl4fBSMohKlF5mievi2", + "id" : "5IEhl4fBSMohKlF5mievi2", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d462c5092aa355c402bdb4560d97e8f04b6a6471", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/7c97d1e92470f9954e2bc956211f17390f1864e9", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/9430a72c169e425b055287987d738eb7f8945d76", + "width" : 64 + } ], + "name" : "Building an Ark", + "type" : "album", + "uri" : "spotify:album:5IEhl4fBSMohKlF5mievi2" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5L59UhTBOeIRPxF5umwC9p" + }, + "href" : "https://api.spotify.com/v1/artists/5L59UhTBOeIRPxF5umwC9p", + "id" : "5L59UhTBOeIRPxF5umwC9p", + "name" : "Groundation", + "type" : "artist", + "uri" : "spotify:artist:5L59UhTBOeIRPxF5umwC9p" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 407066, + "explicit" : false, + "external_ids" : { + "isrc" : "USLF11101609" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7fIyPQUM6BKGjUEZqNUXZm" + }, + "href" : "https://api.spotify.com/v1/tracks/7fIyPQUM6BKGjUEZqNUXZm", + "id" : "7fIyPQUM6BKGjUEZqNUXZm", + "name" : "Daniel", + "popularity" : 11, + "preview_url" : "https://p.scdn.co/mp3-preview/51c69a6bd9cb8ace90a48dada2489c8cd45299f6?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 9, + "type" : "track", + "uri" : "spotify:track:7fIyPQUM6BKGjUEZqNUXZm" + } + }, { + "added_at" : "2015-10-12T21:56:45Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4lu50np3LdTkRL09T7x8UP" + }, + "href" : "https://api.spotify.com/v1/artists/4lu50np3LdTkRL09T7x8UP", + "id" : "4lu50np3LdTkRL09T7x8UP", + "name" : "Agoria", + "type" : "artist", + "uri" : "spotify:artist:4lu50np3LdTkRL09T7x8UP" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/09Ld3LzKk1eycCRasteDve" + }, + "href" : "https://api.spotify.com/v1/albums/09Ld3LzKk1eycCRasteDve", + "id" : "09Ld3LzKk1eycCRasteDve", + "images" : [ { + "height" : 598, + "url" : "https://i.scdn.co/image/450c799e86ae7c1e6a4967438e0e0763d4a83115", + "width" : 640 + }, { + "height" : 280, + "url" : "https://i.scdn.co/image/39ea17cbc424537c203c0d3259ed6dd9556551ec", + "width" : 300 + }, { + "height" : 60, + "url" : "https://i.scdn.co/image/b931362a0516e63db74c71195d1d834901603688", + "width" : 64 + } ], + "name" : "Blossom", + "type" : "album", + "uri" : "spotify:album:09Ld3LzKk1eycCRasteDve" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4lu50np3LdTkRL09T7x8UP" + }, + "href" : "https://api.spotify.com/v1/artists/4lu50np3LdTkRL09T7x8UP", + "id" : "4lu50np3LdTkRL09T7x8UP", + "name" : "Agoria", + "type" : "artist", + "uri" : "spotify:artist:4lu50np3LdTkRL09T7x8UP" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 302560, + "explicit" : false, + "external_ids" : { + "isrc" : "BEP010310047" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5fLsimbF9cyWH6TYRA3vCS" + }, + "href" : "https://api.spotify.com/v1/tracks/5fLsimbF9cyWH6TYRA3vCS", + "id" : "5fLsimbF9cyWH6TYRA3vCS", + "name" : "Stereolove", + "popularity" : 0, + "preview_url" : null, + "track_number" : 3, + "type" : "track", + "uri" : "spotify:track:5fLsimbF9cyWH6TYRA3vCS" + } + }, { + "added_at" : "2015-10-12T22:32:28Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/3upWDUZL9GwmHXC3y2vHUy" + }, + "href" : "https://api.spotify.com/v1/albums/3upWDUZL9GwmHXC3y2vHUy", + "id" : "3upWDUZL9GwmHXC3y2vHUy", + "images" : [ { + "height" : 600, + "url" : "https://i.scdn.co/image/fe21058b751e56b8488135d3656f3e60c7d40f80", + "width" : 600 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d93df3798c2038ced7aac25572df70ef5989f00f", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/4f7ec53f64a47ba22c65bd6b50b07df6d9a167fa", + "width" : 64 + } ], + "name" : "Berlin Afterhour 2 - From Minimal to Techno - From Electro to House", + "type" : "album", + "uri" : "spotify:album:3upWDUZL9GwmHXC3y2vHUy" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3ZKUeqiV2UX5sKhOipqw1h" + }, + "href" : "https://api.spotify.com/v1/artists/3ZKUeqiV2UX5sKhOipqw1h", + "id" : "3ZKUeqiV2UX5sKhOipqw1h", + "name" : "Blake Baxter", + "type" : "artist", + "uri" : "spotify:artist:3ZKUeqiV2UX5sKhOipqw1h" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/623ecFS6T9xsx9Rb98eii5" + }, + "href" : "https://api.spotify.com/v1/artists/623ecFS6T9xsx9Rb98eii5", + "id" : "623ecFS6T9xsx9Rb98eii5", + "name" : "Marc Romboy", + "type" : "artist", + "uri" : "spotify:artist:623ecFS6T9xsx9Rb98eii5" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 407392, + "explicit" : false, + "external_ids" : { + "isrc" : "DEDL81001304" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/7K8pWsUUagxZVfdS81DmTC" + }, + "href" : "https://api.spotify.com/v1/tracks/7K8pWsUUagxZVfdS81DmTC", + "id" : "7K8pWsUUagxZVfdS81DmTC", + "name" : "Muzik (Kink Remix) - Kink Remix", + "popularity" : 25, + "preview_url" : "https://p.scdn.co/mp3-preview/eb1a315f6888d601ceab30849f6c0c2d4f27410e?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 14, + "type" : "track", + "uri" : "spotify:track:7K8pWsUUagxZVfdS81DmTC" + } + }, { + "added_at" : "2015-10-14T20:28:10Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6NxcE1vZdlUZCnuitqIuHS" + }, + "href" : "https://api.spotify.com/v1/artists/6NxcE1vZdlUZCnuitqIuHS", + "id" : "6NxcE1vZdlUZCnuitqIuHS", + "name" : "Hedwig & The Angry Inch", + "type" : "artist", + "uri" : "spotify:artist:6NxcE1vZdlUZCnuitqIuHS" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/1nDUzE7LFkfVBRAf5ZSfbr" + }, + "href" : "https://api.spotify.com/v1/albums/1nDUzE7LFkfVBRAf5ZSfbr", + "id" : "1nDUzE7LFkfVBRAf5ZSfbr", + "images" : [ { + "height" : 637, + "url" : "https://i.scdn.co/image/28de05390c02add08f7e6ba847011b45edc12769", + "width" : 640 + }, { + "height" : 299, + "url" : "https://i.scdn.co/image/f02b198f0468801c351758ffa392b2967add5872", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/03c50023ad8326520ae56ba9a9c71d2adeb7b1c7", + "width" : 64 + } ], + "name" : "Hedwig And The Angry Inch (Original Cast Recording)", + "type" : "album", + "uri" : "spotify:album:1nDUzE7LFkfVBRAf5ZSfbr" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/6NxcE1vZdlUZCnuitqIuHS" + }, + "href" : "https://api.spotify.com/v1/artists/6NxcE1vZdlUZCnuitqIuHS", + "id" : "6NxcE1vZdlUZCnuitqIuHS", + "name" : "Hedwig & The Angry Inch", + "type" : "artist", + "uri" : "spotify:artist:6NxcE1vZdlUZCnuitqIuHS" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 325906, + "explicit" : false, + "external_ids" : { + "isrc" : "USAT29900076" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/0YHMLFYBLOEVVQ1ns2pnw5" + }, + "href" : "https://api.spotify.com/v1/tracks/0YHMLFYBLOEVVQ1ns2pnw5", + "id" : "0YHMLFYBLOEVVQ1ns2pnw5", + "name" : "Wig In A Box", + "popularity" : 30, + "preview_url" : "https://p.scdn.co/mp3-preview/9758cb601fb700da7182e8294538d344bc6b6c4c?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:0YHMLFYBLOEVVQ1ns2pnw5" + } + }, { + "added_at" : "2015-10-14T20:29:01Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "single", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4M5nCE77Qaxayuhp3fVn4V" + }, + "href" : "https://api.spotify.com/v1/artists/4M5nCE77Qaxayuhp3fVn4V", + "id" : "4M5nCE77Qaxayuhp3fVn4V", + "name" : "Iron & Wine", + "type" : "artist", + "uri" : "spotify:artist:4M5nCE77Qaxayuhp3fVn4V" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7ahfhOy5HmGlQ8k8AW9LgV" + }, + "href" : "https://api.spotify.com/v1/albums/7ahfhOy5HmGlQ8k8AW9LgV", + "id" : "7ahfhOy5HmGlQ8k8AW9LgV", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c292d23ac0a570bf2336737ad8f250da7b698ea5", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/b5962cb54d97cf4ba27a4e11b9dee38b69a339c2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/32c417402a13c705a80a32894a3ea3abcc403bf1", + "width" : 64 + } ], + "name" : "Lovesong Of The Buzzard", + "type" : "album", + "uri" : "spotify:album:7ahfhOy5HmGlQ8k8AW9LgV" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4M5nCE77Qaxayuhp3fVn4V" + }, + "href" : "https://api.spotify.com/v1/artists/4M5nCE77Qaxayuhp3fVn4V", + "id" : "4M5nCE77Qaxayuhp3fVn4V", + "name" : "Iron & Wine", + "type" : "artist", + "uri" : "spotify:artist:4M5nCE77Qaxayuhp3fVn4V" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 266573, + "explicit" : false, + "external_ids" : { + "isrc" : "USSUB0771003" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3G8bPXzIGPbf680AFjUyuI" + }, + "href" : "https://api.spotify.com/v1/tracks/3G8bPXzIGPbf680AFjUyuI", + "id" : "3G8bPXzIGPbf680AFjUyuI", + "name" : "Lovesong of the Buzzard", + "popularity" : 0, + "preview_url" : null, + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:3G8bPXzIGPbf680AFjUyuI" + } + }, { + "added_at" : "2015-10-14T20:29:22Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/06nsZ3qSOYZ2hPVIMcr1IN" + }, + "href" : "https://api.spotify.com/v1/artists/06nsZ3qSOYZ2hPVIMcr1IN", + "id" : "06nsZ3qSOYZ2hPVIMcr1IN", + "name" : "J.J. Cale", + "type" : "artist", + "uri" : "spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/6iy69KARpFarcwTlPnIAHo" + }, + "href" : "https://api.spotify.com/v1/albums/6iy69KARpFarcwTlPnIAHo", + "id" : "6iy69KARpFarcwTlPnIAHo", + "images" : [ { + "height" : 637, + "url" : "https://i.scdn.co/image/d944986bd031735c00f7bf800b7c7f1199eda02e", + "width" : 640 + }, { + "height" : 299, + "url" : "https://i.scdn.co/image/a8cdba8eea0f15ee6c9ecc1715ac0dabe615a546", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/b41e671d8a55ab2c537391df1078ec1d8b80e8bc", + "width" : 64 + } ], + "name" : "Naturally", + "type" : "album", + "uri" : "spotify:album:6iy69KARpFarcwTlPnIAHo" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/06nsZ3qSOYZ2hPVIMcr1IN" + }, + "href" : "https://api.spotify.com/v1/artists/06nsZ3qSOYZ2hPVIMcr1IN", + "id" : "06nsZ3qSOYZ2hPVIMcr1IN", + "name" : "J.J. Cale", + "type" : "artist", + "uri" : "spotify:artist:06nsZ3qSOYZ2hPVIMcr1IN" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 148333, + "explicit" : false, + "external_ids" : { + "isrc" : "NLF050190021" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3WzPaEBISpEvPhIbN3TREc" + }, + "href" : "https://api.spotify.com/v1/tracks/3WzPaEBISpEvPhIbN3TREc", + "id" : "3WzPaEBISpEvPhIbN3TREc", + "linked_from" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/track/4MfHvkY5AFT2lWuwCfzoHK" + }, + "href" : "https://api.spotify.com/v1/tracks/4MfHvkY5AFT2lWuwCfzoHK", + "id" : "4MfHvkY5AFT2lWuwCfzoHK", + "type" : "track", + "uri" : "spotify:track:4MfHvkY5AFT2lWuwCfzoHK" + }, + "name" : "Call The Doctor", + "popularity" : 47, + "preview_url" : "https://p.scdn.co/mp3-preview/bebd1223282e9cdd07fb35920d81b56a8b2d9c21?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3WzPaEBISpEvPhIbN3TREc" + } + }, { + "added_at" : "2015-10-14T20:33:07Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "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" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0AVPusXNzK1jWwefBiPJ5I" + }, + "href" : "https://api.spotify.com/v1/albums/0AVPusXNzK1jWwefBiPJ5I", + "id" : "0AVPusXNzK1jWwefBiPJ5I", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a7830294681bce03d5d1033b4a98c38bc9dcaedc", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/5020a71a285a2063573d388167471c84678e3e71", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/0ad96403a6f2638d894359f70a84706b530c26c1", + "width" : 64 + } ], + "name" : "In Colour", + "type" : "album", + "uri" : "spotify:album:0AVPusXNzK1jWwefBiPJ5I" + }, + "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" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 291018, + "explicit" : false, + "external_ids" : { + "isrc" : "UK7MC1500001" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/5wN0Qf0iHLcWbCugUtQLNp" + }, + "href" : "https://api.spotify.com/v1/tracks/5wN0Qf0iHLcWbCugUtQLNp", + "id" : "5wN0Qf0iHLcWbCugUtQLNp", + "name" : "Gosh", + "popularity" : 60, + "preview_url" : "https://p.scdn.co/mp3-preview/e4406efca189366a840a0f9cbea10100d47d36d2?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 1, + "type" : "track", + "uri" : "spotify:track:5wN0Qf0iHLcWbCugUtQLNp" + } + }, { + "added_at" : "2015-10-14T20:39:00Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/09V9eXkh1lzMgF5I2ERpYo" + }, + "href" : "https://api.spotify.com/v1/albums/09V9eXkh1lzMgF5I2ERpYo", + "id" : "09V9eXkh1lzMgF5I2ERpYo", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/3c6d49967b88465cfec77afc2add473de0f74c90", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/815cb8f1a07f8cda78e94c4f50783c1e16504568", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/d4e40ae285919edae396c9527e554682f10939f6", + "width" : 64 + } ], + "name" : "Ninja Tune Retrospect (No. 2)", + "type" : "album", + "uri" : "spotify:album:09V9eXkh1lzMgF5I2ERpYo" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2s0438sn0pYL2OuukcFqPN" + }, + "href" : "https://api.spotify.com/v1/artists/2s0438sn0pYL2OuukcFqPN", + "id" : "2s0438sn0pYL2OuukcFqPN", + "name" : "Kid Koala", + "type" : "artist", + "uri" : "spotify:artist:2s0438sn0pYL2OuukcFqPN" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 181053, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0800600" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/63vqh4WbKhqM8fjSr5kKnm" + }, + "href" : "https://api.spotify.com/v1/tracks/63vqh4WbKhqM8fjSr5kKnm", + "id" : "63vqh4WbKhqM8fjSr5kKnm", + "name" : "Slew Test 2", + "popularity" : 0, + "preview_url" : null, + "track_number" : 22, + "type" : "track", + "uri" : "spotify:track:63vqh4WbKhqM8fjSr5kKnm" + } + }, { + "added_at" : "2015-10-12T22:40:09Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/hjartat_real" + }, + "href" : "https://api.spotify.com/v1/users/hjartat_real", + "id" : "hjartat_real", + "type" : "user", + "uri" : "spotify:user:hjartat_real" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "compilation", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/0hljn4caZCf6xPILpLDJkB" + }, + "href" : "https://api.spotify.com/v1/albums/0hljn4caZCf6xPILpLDJkB", + "id" : "0hljn4caZCf6xPILpLDJkB", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/cb151c76d11d6908ef4bf7e5f5a5fd6b6de24b80", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/55797c7865f38ed3bbd440745e07f35f68b108e2", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/a86afd4de8e9c38c8c670811223205fe7fd2a929", + "width" : 64 + } ], + "name" : "Kitsuné Maison Compilation 7", + "type" : "album", + "uri" : "spotify:album:0hljn4caZCf6xPILpLDJkB" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/4IQ782VL9bK0q2Judy9mIF" + }, + "href" : "https://api.spotify.com/v1/artists/4IQ782VL9bK0q2Judy9mIF", + "id" : "4IQ782VL9bK0q2Judy9mIF", + "name" : "Chateau Marmont", + "type" : "artist", + "uri" : "spotify:artist:4IQ782VL9bK0q2Judy9mIF" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 249093, + "explicit" : false, + "external_ids" : { + "isrc" : "FRU700900035" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/6DvoV9W5QYjCcQuS0P0NkX" + }, + "href" : "https://api.spotify.com/v1/tracks/6DvoV9W5QYjCcQuS0P0NkX", + "id" : "6DvoV9W5QYjCcQuS0P0NkX", + "name" : "Beagle", + "popularity" : 0, + "preview_url" : null, + "track_number" : 13, + "type" : "track", + "uri" : "spotify:track:6DvoV9W5QYjCcQuS0P0NkX" + } + }, { + "added_at" : "2015-10-12T23:51:08Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "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" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2xl0yOa30v06meA1AfgBOz" + }, + "href" : "https://api.spotify.com/v1/albums/2xl0yOa30v06meA1AfgBOz", + "id" : "2xl0yOa30v06meA1AfgBOz", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/68783a100dc226f9dc32df0811d8769050899790", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/373dfa317eb833f9dbefce3dd139ab55e0e51445", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/4a6f294dea59625739400b424c68e8f4adb316ec", + "width" : 64 + } ], + "name" : "Ninja Tune Retrospect (No. 1)", + "type" : "album", + "uri" : "spotify:album:2xl0yOa30v06meA1AfgBOz" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3Gaqw2nGyE7yM3rcRSzE3U" + }, + "href" : "https://api.spotify.com/v1/artists/3Gaqw2nGyE7yM3rcRSzE3U", + "id" : "3Gaqw2nGyE7yM3rcRSzE3U", + "name" : "Yppah", + "type" : "artist", + "uri" : "spotify:artist:3Gaqw2nGyE7yM3rcRSzE3U" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 169173, + "explicit" : false, + "external_ids" : { + "isrc" : "GBCFB0601100" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3MTE6EKG6SPmQAs977RjYm" + }, + "href" : "https://api.spotify.com/v1/tracks/3MTE6EKG6SPmQAs977RjYm", + "id" : "3MTE6EKG6SPmQAs977RjYm", + "name" : "Again With The Subtitles", + "popularity" : 0, + "preview_url" : null, + "track_number" : 40, + "type" : "track", + "uri" : "spotify:track:3MTE6EKG6SPmQAs977RjYm" + } + }, { + "added_at" : "2015-10-13T00:04:54Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5dVua2HdrY1VlbPh6OM9KZ" + }, + "href" : "https://api.spotify.com/v1/artists/5dVua2HdrY1VlbPh6OM9KZ", + "id" : "5dVua2HdrY1VlbPh6OM9KZ", + "name" : "The Gaslamp Killer", + "type" : "artist", + "uri" : "spotify:artist:5dVua2HdrY1VlbPh6OM9KZ" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/7ueI0ZzEpiaEnINQ7K0XHx" + }, + "href" : "https://api.spotify.com/v1/albums/7ueI0ZzEpiaEnINQ7K0XHx", + "id" : "7ueI0ZzEpiaEnINQ7K0XHx", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/84e78c12cf92fe99702c58e90ab524569bc54481", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/c3fc90cd0de38aa7d3fd2afba5f37fea7c942a77", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/c9af0f798de1cb01929d8030599c49dbec87ec28", + "width" : 64 + } ], + "name" : "Breakthrough", + "type" : "album", + "uri" : "spotify:album:7ueI0ZzEpiaEnINQ7K0XHx" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/5dVua2HdrY1VlbPh6OM9KZ" + }, + "href" : "https://api.spotify.com/v1/artists/5dVua2HdrY1VlbPh6OM9KZ", + "id" : "5dVua2HdrY1VlbPh6OM9KZ", + "name" : "The Gaslamp Killer", + "type" : "artist", + "uri" : "spotify:artist:5dVua2HdrY1VlbPh6OM9KZ" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/14us1FW9Y4HvqtT6lhiNIG" + }, + "href" : "https://api.spotify.com/v1/artists/14us1FW9Y4HvqtT6lhiNIG", + "id" : "14us1FW9Y4HvqtT6lhiNIG", + "name" : "Amir Yaghmai", + "type" : "artist", + "uri" : "spotify:artist:14us1FW9Y4HvqtT6lhiNIG" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY" ], + "disc_number" : 1, + "duration_ms" : 271822, + "explicit" : true, + "external_ids" : { + "isrc" : "US25X1084065" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/2eWEwCXPsjwxrxlGc77jXE" + }, + "href" : "https://api.spotify.com/v1/tracks/2eWEwCXPsjwxrxlGc77jXE", + "id" : "2eWEwCXPsjwxrxlGc77jXE", + "name" : "Nissim", + "popularity" : 53, + "preview_url" : "https://p.scdn.co/mp3-preview/9af6897a777429798e36c403f90279899f60bde9?cid=8897482848704f2a8f8d7c79726a70d4", + "track_number" : 14, + "type" : "track", + "uri" : "spotify:track:2eWEwCXPsjwxrxlGc77jXE" + } + }, { + "added_at" : "2015-10-13T00:08:12Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3qwxSif06Qwzykdln8ZGfG" + }, + "href" : "https://api.spotify.com/v1/artists/3qwxSif06Qwzykdln8ZGfG", + "id" : "3qwxSif06Qwzykdln8ZGfG", + "name" : "Wax Tailor", + "type" : "artist", + "uri" : "spotify:artist:3qwxSif06Qwzykdln8ZGfG" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2EDS1NviNhvxfrAnZowJtA" + }, + "href" : "https://api.spotify.com/v1/albums/2EDS1NviNhvxfrAnZowJtA", + "id" : "2EDS1NviNhvxfrAnZowJtA", + "images" : [ { + "height" : 579, + "url" : "https://i.scdn.co/image/ffe3b7f0caf04236402df965b046fc3478c3b74b", + "width" : 640 + }, { + "height" : 272, + "url" : "https://i.scdn.co/image/24e2678a75e5f937e4655662b9709eb367cc493e", + "width" : 300 + }, { + "height" : 58, + "url" : "https://i.scdn.co/image/18946e1c60bdaa24a3041eb89a33230d22340ad0", + "width" : 64 + } ], + "name" : "Hope & Sorrow", + "type" : "album", + "uri" : "spotify:album:2EDS1NviNhvxfrAnZowJtA" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/3qwxSif06Qwzykdln8ZGfG" + }, + "href" : "https://api.spotify.com/v1/artists/3qwxSif06Qwzykdln8ZGfG", + "id" : "3qwxSif06Qwzykdln8ZGfG", + "name" : "Wax Tailor", + "type" : "artist", + "uri" : "spotify:artist:3qwxSif06Qwzykdln8ZGfG" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/01L6jvexr6BpNIfs0wHGkn" + }, + "href" : "https://api.spotify.com/v1/artists/01L6jvexr6BpNIfs0wHGkn", + "id" : "01L6jvexr6BpNIfs0wHGkn", + "name" : "ASM", + "type" : "artist", + "uri" : "spotify:artist:01L6jvexr6BpNIfs0wHGkn" + }, { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0ea0AGPmJm32GT2ZRkk0Jg" + }, + "href" : "https://api.spotify.com/v1/artists/0ea0AGPmJm32GT2ZRkk0Jg", + "id" : "0ea0AGPmJm32GT2ZRkk0Jg", + "name" : "Marina Quaisse", + "type" : "artist", + "uri" : "spotify:artist:0ea0AGPmJm32GT2ZRkk0Jg" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 219500, + "explicit" : false, + "external_ids" : { + "isrc" : "FR2DK0680070" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/52q3SJSbNPPAoZsMiT1LTf" + }, + "href" : "https://api.spotify.com/v1/tracks/52q3SJSbNPPAoZsMiT1LTf", + "id" : "52q3SJSbNPPAoZsMiT1LTf", + "name" : "Positively Inclined", + "popularity" : 1, + "preview_url" : null, + "track_number" : 7, + "type" : "track", + "uri" : "spotify:track:52q3SJSbNPPAoZsMiT1LTf" + } + }, { + "added_at" : "2015-10-13T00:13:30Z", + "added_by" : { + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "is_local" : false, + "track" : { + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2jYMYP2SVifgmzNRQJx3SJ" + }, + "href" : "https://api.spotify.com/v1/artists/2jYMYP2SVifgmzNRQJx3SJ", + "id" : "2jYMYP2SVifgmzNRQJx3SJ", + "name" : "Modeselektor", + "type" : "artist", + "uri" : "spotify:artist:2jYMYP2SVifgmzNRQJx3SJ" + } ], + "available_markets" : [ ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/2Z7AK7LpEsnYU3T27VWlF1" + }, + "href" : "https://api.spotify.com/v1/albums/2Z7AK7LpEsnYU3T27VWlF1", + "id" : "2Z7AK7LpEsnYU3T27VWlF1", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/c734f57da5939baf09e1487849292bae536cbabf", + "width" : 640 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/e55fea6541e2522e27ee4ba63fb2d1f13b759401", + "width" : 300 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/2c190cdf32bfa29f3623c6638f04768469aa551a", + "width" : 64 + } ], + "name" : "Monkeytown", + "type" : "album", + "uri" : "spotify:album:2Z7AK7LpEsnYU3T27VWlF1" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/2jYMYP2SVifgmzNRQJx3SJ" + }, + "href" : "https://api.spotify.com/v1/artists/2jYMYP2SVifgmzNRQJx3SJ", + "id" : "2jYMYP2SVifgmzNRQJx3SJ", + "name" : "Modeselektor", + "type" : "artist", + "uri" : "spotify:artist:2jYMYP2SVifgmzNRQJx3SJ" + } ], + "available_markets" : [ ], + "disc_number" : 1, + "duration_ms" : 284080, + "explicit" : false, + "external_ids" : { + "isrc" : "DEOE81100115" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3VbqGHfucltB1dmJnUon03" + }, + "href" : "https://api.spotify.com/v1/tracks/3VbqGHfucltB1dmJnUon03", + "id" : "3VbqGHfucltB1dmJnUon03", + "name" : "Berlin - feat. Miss Platnum", + "popularity" : 5, + "preview_url" : null, + "track_number" : 6, + "type" : "track", + "uri" : "spotify:track:3VbqGHfucltB1dmJnUon03" + } + } ], + "limit" : 100, + "next" : "https://api.spotify.com/v1/users/fireno/playlists/6bLUG95qFf8RRlCRI51Gi3/tracks?offset=100&limit=100", + "offset" : 0, + "previous" : null, + "total" : 211 +} \ No newline at end of file diff --git a/spotify-structs.go b/spotify-structs.go new file mode 100644 index 0000000..e902ed7 --- /dev/null +++ b/spotify-structs.go @@ -0,0 +1,296 @@ +package main + +import ( + "time" +) + +type spotifyTrack struct { + Album struct { + AlbumType string `json:"album_type"` + Artists []struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"artists"` + AvailableMarkets []string `json:"available_markets"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Images []struct { + Height int `json:"height"` + URL string `json:"url"` + Width int `json:"width"` + } `json:"images"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"album"` + Artists []struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"artists"` + AvailableMarkets []string `json:"available_markets"` + DiscNumber int `json:"disc_number"` + DurationMs int `json:"duration_ms"` + Explicit bool `json:"explicit"` + ExternalIds struct { + Isrc string `json:"isrc"` + } `json:"external_ids"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Popularity int `json:"popularity"` + PreviewURL string `json:"preview_url"` + TrackNumber int `json:"track_number"` + Type string `json:"type"` + URI string `json:"uri"` + IsLocal bool `json:"is_local"` +} + +type spotifyPlaylist struct { + Collaborative bool `json:"collaborative"` + Description interface{} `json:"description"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Followers struct { + Href interface{} `json:"href"` + Total int `json:"total"` + } `json:"followers"` + Href string `json:"href"` + ID string `json:"id"` + Images []struct { + Height int `json:"height"` + URL string `json:"url"` + Width int `json:"width"` + } `json:"images"` + Name string `json:"name"` + Owner struct { + DisplayName interface{} `json:"display_name"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"owner"` + Public bool `json:"public"` + SnapshotID string `json:"snapshot_id"` + Tracks struct { + Href string `json:"href"` + Items []struct { + AddedAt time.Time `json:"added_at"` + AddedBy struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"added_by"` + IsLocal bool `json:"is_local"` + Track struct { + Album struct { + AlbumType string `json:"album_type"` + Artists []struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"artists"` + AvailableMarkets []interface{} `json:"available_markets"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Images []struct { + Height int `json:"height"` + URL string `json:"url"` + Width int `json:"width"` + } `json:"images"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"album"` + Artists []struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"artists"` + AvailableMarkets []interface{} `json:"available_markets"` + DiscNumber int `json:"disc_number"` + DurationMs int `json:"duration_ms"` + Explicit bool `json:"explicit"` + ExternalIds struct { + Isrc string `json:"isrc"` + } `json:"external_ids"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Popularity int `json:"popularity"` + PreviewURL interface{} `json:"preview_url"` + TrackNumber int `json:"track_number"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"track"` + } `json:"items"` + Limit int `json:"limit"` + Next string `json:"next"` + Offset int `json:"offset"` + Previous interface{} `json:"previous"` + Total int `json:"total"` + } `json:"tracks"` + Type string `json:"type"` + URI string `json:"uri"` +} + +type spotifyPlaylistsOfUser struct { + Href string `json:"href"` + Items []struct { + Collaborative bool `json:"collaborative"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Images []struct { + Height int `json:"height"` + URL string `json:"url"` + Width int `json:"width"` + } `json:"images"` + Name string `json:"name"` + Owner struct { + DisplayName interface{} `json:"display_name"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"owner"` + Public bool `json:"public"` + SnapshotID string `json:"snapshot_id"` + Tracks struct { + Href string `json:"href"` + Total int `json:"total"` + } `json:"tracks"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"items"` + Limit int `json:"limit"` + Next *string `json:"next"` + Offset int `json:"offset"` + Previous interface{} `json:"previous"` + Total int `json:"total"` +} + +type spotifyPlaylistsTracks struct { + Href string `json:"href"` + Items []struct { + AddedAt time.Time `json:"added_at"` + AddedBy struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"added_by"` + IsLocal bool `json:"is_local"` + Track struct { + Album struct { + AlbumType string `json:"album_type"` + Artists []struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"artists"` + AvailableMarkets []interface{} `json:"available_markets"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Images []struct { + Height int `json:"height"` + URL string `json:"url"` + Width int `json:"width"` + } `json:"images"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"album"` + Artists []struct { + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"artists"` + AvailableMarkets []interface{} `json:"available_markets"` + DiscNumber int `json:"disc_number"` + DurationMs int `json:"duration_ms"` + Explicit bool `json:"explicit"` + ExternalIds struct { + Isrc string `json:"isrc"` + } `json:"external_ids"` + ExternalUrls struct { + Spotify string `json:"spotify"` + } `json:"external_urls"` + Href string `json:"href"` + ID string `json:"id"` + Name string `json:"name"` + Popularity int `json:"popularity"` + PreviewURL interface{} `json:"preview_url"` + TrackNumber int `json:"track_number"` + Type string `json:"type"` + URI string `json:"uri"` + } `json:"track"` + } `json:"items"` + Limit int `json:"limit"` + Next *string `json:"next"` + Offset int `json:"offset"` + Previous *string `json:"previous"` + Total int `json:"total"` +} \ No newline at end of file diff --git a/spotify.go b/spotify.go new file mode 100644 index 0000000..dad59d7 --- /dev/null +++ b/spotify.go @@ -0,0 +1,167 @@ +package main + +import ( + "encoding/json" + // "log" + "fmt" + "net/http" + "github.com/zmb3/spotify" + "io/ioutil" +) + +const baseURL_track = "https://api.spotify.com/v1/tracks/" +const baseURL_playlist = "https://api.spotify.com/v1/playlists/" +const baseURL_playlists = "https://api.spotify.com/v1/me/playlists" + +func get_spotify_auth() (auth spotify.Authenticator){ + auth = spotify.NewAuthenticator(redirectURI, spotify.ScopeUserReadPrivate, spotify.ScopePlaylistReadPrivate, spotify.ScopePlaylistReadCollaborative, spotify.ScopeUserLibraryRead) + + return +} + +// TODO: write this fkn func +func check_if_track_is_valid(track_id string) (state bool) { + state = true + + // url := baseURL_track + track_id + + // httpClient := &http.Client{} + // req, _ := http.NewRequest("GET", url, nil) + // req.Header.Set("Authorization", "Bearer "+oauthToken) + // res, _ := httpClient.Do(req) + + // body, _ := ioutil.ReadAll(res.Body) + // data := new(spotifyTrack) + // json.Unmarshal(body, &data) + + // if data.IsLocal { + // state = false + // } + return state +} + +func download_all_playlist_of_user(owner_id string, folder string) { + url := baseURL_playlists + "?limit=50&offset=0" + + httpClient := &http.Client{} + req, _ := http.NewRequest("GET", url, nil) + req.Header.Set("Authorization", "Bearer "+oauthToken) + res, _ := httpClient.Do(req) + + body, _ := ioutil.ReadAll(res.Body) + data := new(spotifyPlaylistsOfUser) + json.Unmarshal(body, &data) + var counter = 0 + + for _,playlist := range data.Items { + fmt.Printf("Downloading Playlist => %s <=\n",playlist.Name) + download_playlist_to_folder(playlist.ID,playlist.Owner.ID,folder) + } + if data.Total > 50 { + for(data.Next != nil) { + nextUrl := *data.Next + request, _ := http.NewRequest("GET",nextUrl, nil) + request.Header.Set("Authorization", "Bearer "+oauthToken) + response, _ := httpClient.Do(request) + + body, _ = ioutil.ReadAll(response.Body) + json.Unmarshal(body, &data) + for _,playlist := range data.Items { + counter++ + fmt.Printf("Downloading Playlist: => %s <=\n",playlist.Name) + download_playlist_to_folder(playlist.ID,playlist.Owner.ID,folder) + } + } + } +} + +func download_playlist_to_folder(playlist_id string, owner_id string, folder string) { + playlist_name := get_name_of_playlist(playlist_id,owner_id) + + url := baseURL_playlist + playlist_id + "/tracks?limit=100&offset=0" + + httpClient := &http.Client{} + req, _ := http.NewRequest("GET", url, nil) + req.Header.Set("Authorization", "Bearer "+oauthToken) + res, _ := httpClient.Do(req) + + body, _ := ioutil.ReadAll(res.Body) + data := new(spotifyPlaylistsTracks) + json.Unmarshal(body, &data) + folder = folder + playlist_name+"/" + var counter = 0 + + for _,track := range data.Items { + counter++ + fmt.Println("Nr: ",counter," | Title: ",track.Track.Name," | Artist: ",track.Track.Artists[0].Name) + if track.Track.ID == "" { + // TODO: add file to manual_download list if no spotify id exist + fmt.Printf("track '%s - %s' is a local file. please download this track manually",track.Track.Artists[0].Name,track.Track.Name) + } else { + download_track_to_folder(track.Track.ID,folder) + } + } + + if data.Total > 100 { + for(data.Next != nil) { + nextUrl := *data.Next + request, _ := http.NewRequest("GET",nextUrl, nil) + request.Header.Set("Authorization", "Bearer "+oauthToken) + response, _ := httpClient.Do(request) + + body, _ = ioutil.ReadAll(response.Body) + json.Unmarshal(body, &data) + for _,track := range data.Items { + counter++ + fmt.Println("Nr: ",counter," | Title: ",track.Track.Name," | Artist: ",track.Track.Artists[0].Name) + if track.Track.ID == "" { + // TODO: add file to manual_download list if no spotify id exist + fmt.Printf("track '%s - %s' is a local file. please download this track manually\n",track.Track.Artists[0].Name,track.Track.Name) + } else { + download_track_to_folder(track.Track.ID,folder) + } + } + } + } + fmt.Println("--------------------") +} + +func get_name_of_playlist(playlist_id string, owner_id string) (name string) { + url := baseURL_playlist + playlist_id + + httpClient := &http.Client{} + req, _ := http.NewRequest("GET", url, nil) + req.Header.Set("Authorization", "Bearer "+oauthToken) + res, _ := httpClient.Do(req) + + body, _ := ioutil.ReadAll(res.Body) + data := new(spotifyPlaylist) + json.Unmarshal(body, &data) + + name = data.Name + return +} + +func download_track_to_folder(track_id string, folder string) { + track_name, artist_name := get_track_and_artist_name(track_id) + filename := track_name+" - "+artist_name + youtube_url := search_on_youtube(filename) + download_mp3_from_youtube(youtube_url,folder,filename) +} + +// TODO: return error on failure +func get_track_and_artist_name(track_id string) (track_name string, artist_name string){ + url := baseURL_track + track_id + "?market=DE" + + httpClient := &http.Client{} + req, _ := http.NewRequest("GET", url, nil) + req.Header.Set("Authorization", "Bearer "+oauthToken) + res, _ := httpClient.Do(req) + + body, _ := ioutil.ReadAll(res.Body) + data := new(spotifyTrack) + json.Unmarshal(body, &data) + + return data.Name, data.Artists[0].Name +} + diff --git a/static/tables.css b/static/tables.css new file mode 100644 index 0000000..f99c7e8 --- /dev/null +++ b/static/tables.css @@ -0,0 +1,71 @@ +/* jailOverview */ +table.overview { + overflow:hidden; + border:2px solid #d3d3d3; + width:100%; + margin:0% auto 0; + -moz-border-radius:9px; /* FF1+ */ + -webkit-border-radius:5px; /* Saf3-4 */ + border-radius:9px; + -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); +} + +tr.overview:nth-child(even) {background: #CCC} +th.overview { + text-align: left; +} + +/* jailDetails */ +table.details { + overflow:hidden; + border:1px solid #d3d3d3; + width:25%; + margin:2% 0; + -moz-border-radius:9px; /* FF1+ */ + -webkit-border-radius:5px; /* Saf3-4 */ + border-radius:9px; + -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); +} + +table.state { +display: block; + text-align: left; + overflow:hidden; + border:2px solid #d3d3d3; + width:15%; + margin-left: 50px; + -moz-border-radius:9px; /* FF1+ */ + -webkit-border-radius:5px; /* Saf3-4 */ + border-radius:9px; + -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); + -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); +} + +table.not-running { + background: red; +} +table.running { + background: green; +} + +table.details tr:hover {background-color: #f5f5f5} +table.details th { + text-align: left; +} + +.status-light { + height: 20px; + width: 20px; + + margin-right: 10px; + border-radius: 50%; + margin-left: 10px; +} +.status-light.up { + background-color: #0b0; +} +.status-light.down { + background-color: #b00; +} diff --git a/track.json b/track.json new file mode 100644 index 0000000..8c5a58c --- /dev/null +++ b/track.json @@ -0,0 +1,65 @@ +{ + "album" : { + "album_type" : "album", + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0C0XlULifJtAgn6ZNCW2eu" + }, + "href" : "https://api.spotify.com/v1/artists/0C0XlULifJtAgn6ZNCW2eu", + "id" : "0C0XlULifJtAgn6ZNCW2eu", + "name" : "The Killers", + "type" : "artist", + "uri" : "spotify:artist:0C0XlULifJtAgn6ZNCW2eu" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY", "VN" ], + "external_urls" : { + "spotify" : "https://open.spotify.com/album/4OHNH3sDzIxnmUADXzv2kT" + }, + "href" : "https://api.spotify.com/v1/albums/4OHNH3sDzIxnmUADXzv2kT", + "id" : "4OHNH3sDzIxnmUADXzv2kT", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ac68a9e4a867ec3ce8249cd90a2d7c73755fb487", + "width" : 629 + }, { + "height" : 300, + "url" : "https://i.scdn.co/image/d0186ad64df7d6fc5f65c20c7d16f4279ffeb815", + "width" : 295 + }, { + "height" : 64, + "url" : "https://i.scdn.co/image/7c3ec33d478f5f517eeb5339c2f75f150e4d601e", + "width" : 63 + } ], + "name" : "Hot Fuss (Deluxe Version)", + "type" : "album", + "uri" : "spotify:album:4OHNH3sDzIxnmUADXzv2kT" + }, + "artists" : [ { + "external_urls" : { + "spotify" : "https://open.spotify.com/artist/0C0XlULifJtAgn6ZNCW2eu" + }, + "href" : "https://api.spotify.com/v1/artists/0C0XlULifJtAgn6ZNCW2eu", + "id" : "0C0XlULifJtAgn6ZNCW2eu", + "name" : "The Killers", + "type" : "artist", + "uri" : "spotify:artist:0C0XlULifJtAgn6ZNCW2eu" + } ], + "available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CA", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GB", "GR", "GT", "HK", "HN", "HU", "ID", "IE", "IS", "IT", "JP", "LI", "LT", "LU", "LV", "MC", "MT", "MX", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "SE", "SG", "SK", "SV", "TH", "TR", "TW", "US", "UY", "VN" ], + "disc_number" : 1, + "duration_ms" : 222200, + "explicit" : false, + "external_ids" : { + "isrc" : "GBFFP0300052" + }, + "external_urls" : { + "spotify" : "https://open.spotify.com/track/3n3Ppam7vgaVa1iaRUc9Lp" + }, + "href" : "https://api.spotify.com/v1/tracks/3n3Ppam7vgaVa1iaRUc9Lp", + "id" : "3n3Ppam7vgaVa1iaRUc9Lp", + "name" : "Mr. Brightside", + "popularity" : 82, + "preview_url" : "https://p.scdn.co/mp3-preview/4839b070015ab7d6de9fec1756e1f3096d908fba?cid=aebff49ecd9e446ba573989feda8cb05", + "track_number" : 2, + "type" : "track", + "uri" : "spotify:track:3n3Ppam7vgaVa1iaRUc9Lp" +} \ No newline at end of file diff --git a/user_playlists.json b/user_playlists.json new file mode 100644 index 0000000..d4eff6f --- /dev/null +++ b/user_playlists.json @@ -0,0 +1,669 @@ +{ + "href" : "https://api.spotify.com/v1/users/fireno/playlists?offset=0&limit=20", + "items" : [ { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/5SakrMHEosUtR34BCvuIB4" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/5SakrMHEosUtR34BCvuIB4", + "id" : "5SakrMHEosUtR34BCvuIB4", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/63cf47c5df6fa98c10fc26f1bb6c54e05761f961", + "width" : 640 + } ], + "name" : "Wermonster – Katalyst Sessions, Vol. 2", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "HrTm3haQXscVBeJEI2i2d0t6EqeY/VIYe6GNdbZSuOfjYd5fFQXmj5PjmsyLp8K8", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/5SakrMHEosUtR34BCvuIB4/tracks", + "total" : 11 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:5SakrMHEosUtR34BCvuIB4" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/spudodud/playlist/2rJq9tx7Oq7ugp8LtIU1Sq" + }, + "href" : "https://api.spotify.com/v1/users/spudodud/playlists/2rJq9tx7Oq7ugp8LtIU1Sq", + "id" : "2rJq9tx7Oq7ugp8LtIU1Sq", + "images" : [ { + "height" : 640, + "url" : "https://mosaic.scdn.co/640/34c7435de0f8bcec06fa4290fd995bd3a719b1b615718e786d040966ce6b14be51481f0440d7fa1a1204cb8c2590bc23a08213b489442ddc17392a91770de29f3912e2ac8b69dd61c05871e287bfe71f", + "width" : 640 + }, { + "height" : 300, + "url" : "https://mosaic.scdn.co/300/34c7435de0f8bcec06fa4290fd995bd3a719b1b615718e786d040966ce6b14be51481f0440d7fa1a1204cb8c2590bc23a08213b489442ddc17392a91770de29f3912e2ac8b69dd61c05871e287bfe71f", + "width" : 300 + }, { + "height" : 60, + "url" : "https://mosaic.scdn.co/60/34c7435de0f8bcec06fa4290fd995bd3a719b1b615718e786d040966ce6b14be51481f0440d7fa1a1204cb8c2590bc23a08213b489442ddc17392a91770de29f3912e2ac8b69dd61c05871e287bfe71f", + "width" : 60 + } ], + "name" : "Cabvno - F e e l i n g s", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/spudodud" + }, + "href" : "https://api.spotify.com/v1/users/spudodud", + "id" : "spudodud", + "type" : "user", + "uri" : "spotify:user:spudodud" + }, + "public" : false, + "snapshot_id" : "LGfDqFtGvnlOnmWQDsJlPAPfPDx2ZCWeeKOUgySmZ3vpoZu5S+EuU7i15t0lqaUB", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/spudodud/playlists/2rJq9tx7Oq7ugp8LtIU1Sq/tracks", + "total" : 16 + }, + "type" : "playlist", + "uri" : "spotify:user:spudodud:playlist:2rJq9tx7Oq7ugp8LtIU1Sq" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/1138694516/playlist/3ZeOTuO6V51syAUQ0SxRCr" + }, + "href" : "https://api.spotify.com/v1/users/1138694516/playlists/3ZeOTuO6V51syAUQ0SxRCr", + "id" : "3ZeOTuO6V51syAUQ0SxRCr", + "images" : [ { + "height" : 640, + "url" : "https://mosaic.scdn.co/640/1a7fbb2c31ef7f97f29e5199d229fde047a7beea9b5be0773fe25bc5a34a66f237a08758528500aad19096594fe2d8a972629ac0fe1ecaa5f6c0b13594a13f0b0a4acd42bf2f8d72b5b0b9447235d6ce", + "width" : 640 + }, { + "height" : 300, + "url" : "https://mosaic.scdn.co/300/1a7fbb2c31ef7f97f29e5199d229fde047a7beea9b5be0773fe25bc5a34a66f237a08758528500aad19096594fe2d8a972629ac0fe1ecaa5f6c0b13594a13f0b0a4acd42bf2f8d72b5b0b9447235d6ce", + "width" : 300 + }, { + "height" : 60, + "url" : "https://mosaic.scdn.co/60/1a7fbb2c31ef7f97f29e5199d229fde047a7beea9b5be0773fe25bc5a34a66f237a08758528500aad19096594fe2d8a972629ac0fe1ecaa5f6c0b13594a13f0b0a4acd42bf2f8d72b5b0b9447235d6ce", + "width" : 60 + } ], + "name" : "Chaos Computer Club", + "owner" : { + "display_name" : "Max Jakob", + "external_urls" : { + "spotify" : "https://open.spotify.com/user/1138694516" + }, + "href" : "https://api.spotify.com/v1/users/1138694516", + "id" : "1138694516", + "type" : "user", + "uri" : "spotify:user:1138694516" + }, + "public" : false, + "snapshot_id" : "yNg/Gg9EiK3sJaxWx5ir56snYMONwrPS3XnUS297nwvGmYGWOHMKzcVf8Zq1CdPw", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/1138694516/playlists/3ZeOTuO6V51syAUQ0SxRCr/tracks", + "total" : 120 + }, + "type" : "playlist", + "uri" : "spotify:user:1138694516:playlist:3ZeOTuO6V51syAUQ0SxRCr" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/1NFtmluZwJwjSyYg01C4ci" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/1NFtmluZwJwjSyYg01C4ci", + "id" : "1NFtmluZwJwjSyYg01C4ci", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/a7e3151a7f9d8b4acf6c60002d3ce51820a8a906", + "width" : 640 + } ], + "name" : "Monophonics — Sound of Sinning", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "kQ7tUJvphWbhapFWOV9wDVCoVE8BlBZqiBnTyaVUryNut7IbDjYKxsboqe3BT+P8", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/1NFtmluZwJwjSyYg01C4ci/tracks", + "total" : 11 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:1NFtmluZwJwjSyYg01C4ci" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/spotify/playlist/37i9dQZF1E9KaZS06fvYeF" + }, + "href" : "https://api.spotify.com/v1/users/spotify/playlists/37i9dQZF1E9KaZS06fvYeF", + "id" : "37i9dQZF1E9KaZS06fvYeF", + "images" : [ { + "height" : null, + "url" : "https://lineup-images.scdn.co/your-top-songs-2017_DEFAULT-en.jpg", + "width" : null + } ], + "name" : "Your Top Songs 2017", + "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" + }, + "public" : false, + "snapshot_id" : "MAJs40+OEEDiN6WXWsV2+ULBssCJKIkQZP11ns+iOvy9nJK2YkqSv1wWhce0k8H/NdaY6iHEEns=", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/spotify/playlists/37i9dQZF1E9KaZS06fvYeF/tracks", + "total" : 100 + }, + "type" : "playlist", + "uri" : "spotify:user:spotify:playlist:37i9dQZF1E9KaZS06fvYeF" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/0g6NEmZTsiiWTOqpiK0haQ" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/0g6NEmZTsiiWTOqpiK0haQ", + "id" : "0g6NEmZTsiiWTOqpiK0haQ", + "images" : [ { + "height" : 640, + "url" : "https://mosaic.scdn.co/640/b2819b73e847485a96534c94f51d80d61762596480f4d7cd0dc9d0d095b469b698804c502baaf0bd95b83949bcbcf6391e1100239e73644e144edb0aa38fa4e806f58470a4c0a899f79f1c49e9299be0", + "width" : 640 + }, { + "height" : 300, + "url" : "https://mosaic.scdn.co/300/b2819b73e847485a96534c94f51d80d61762596480f4d7cd0dc9d0d095b469b698804c502baaf0bd95b83949bcbcf6391e1100239e73644e144edb0aa38fa4e806f58470a4c0a899f79f1c49e9299be0", + "width" : 300 + }, { + "height" : 60, + "url" : "https://mosaic.scdn.co/60/b2819b73e847485a96534c94f51d80d61762596480f4d7cd0dc9d0d095b469b698804c502baaf0bd95b83949bcbcf6391e1100239e73644e144edb0aa38fa4e806f58470a4c0a899f79f1c49e9299be0", + "width" : 60 + } ], + "name" : "The Ones That Got Away", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "ZtdUslCA0tFlmpKMeG/J+LUJ2BRqp1OUi/8pjddmY3uKeC5DUH44DPjkcmB8J+AL", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/0g6NEmZTsiiWTOqpiK0haQ/tracks", + "total" : 30 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:0g6NEmZTsiiWTOqpiK0haQ" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/0lcf7RFedS7iASJwVNVO2z" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/0lcf7RFedS7iASJwVNVO2z", + "id" : "0lcf7RFedS7iASJwVNVO2z", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/005b3e947c5496795a20168cd0de619fe44ad611", + "width" : 640 + } ], + "name" : "Spitkid – Punk Is Dad", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "aU3zrm4ciec16HfcIzb8e6j7vSuz58pH28H5qsjOEVLTTaJeIzorkQ4Er25nzxMl", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/0lcf7RFedS7iASJwVNVO2z/tracks", + "total" : 5 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:0lcf7RFedS7iASJwVNVO2z" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/4hx02vTCeVkU5qOsfVKLUx" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/4hx02vTCeVkU5qOsfVKLUx", + "id" : "4hx02vTCeVkU5qOsfVKLUx", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/b8bd07481c4a13efac013aba7f51d6fb55fa002b", + "width" : 640 + } ], + "name" : "6 Feet Beneath the Moon", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : true, + "snapshot_id" : "3E0WEU+RYHwfoHTqOIiF+9rRfhqSotsJTk4tQTK9MFjOL+JtEZ86zfOH+B/Mm6Ns", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/4hx02vTCeVkU5qOsfVKLUx/tracks", + "total" : 14 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:4hx02vTCeVkU5qOsfVKLUx" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/1138581523/playlist/6jlYVxyao58RK5R8Awvw4L" + }, + "href" : "https://api.spotify.com/v1/users/1138581523/playlists/6jlYVxyao58RK5R8Awvw4L", + "id" : "6jlYVxyao58RK5R8Awvw4L", + "images" : [ { + "height" : null, + "url" : "https://pl.scdn.co/images/pl/default/44c71263440bab6033b7b0e81c61a7c895a3f955", + "width" : null + } ], + "name" : "Gott zieht alles.", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/1138581523" + }, + "href" : "https://api.spotify.com/v1/users/1138581523", + "id" : "1138581523", + "type" : "user", + "uri" : "spotify:user:1138581523" + }, + "public" : false, + "snapshot_id" : "XCDqMhkHDlCcE4dGFjnuzZD1Lfw/97l0wkajPGq/Jh/QSWU942cak0r2ln026eXE", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/1138581523/playlists/6jlYVxyao58RK5R8Awvw4L/tracks", + "total" : 505 + }, + "type" : "playlist", + "uri" : "spotify:user:1138581523:playlist:6jlYVxyao58RK5R8Awvw4L" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/chillhopmusic/playlist/74sUjcvpGfdOvCHvgzNEDO" + }, + "href" : "https://api.spotify.com/v1/users/chillhopmusic/playlists/74sUjcvpGfdOvCHvgzNEDO", + "id" : "74sUjcvpGfdOvCHvgzNEDO", + "images" : [ { + "height" : null, + "url" : "https://pl.scdn.co/images/pl/default/ceaa77e94addd83567eb2eafeea3db5b912f5aa8", + "width" : null + } ], + "name" : "lofi hip hop beats [lo-fi hip hop] Chillhop Music \\ Chilledcow", + "owner" : { + "display_name" : "Chillhop Music", + "external_urls" : { + "spotify" : "https://open.spotify.com/user/chillhopmusic" + }, + "href" : "https://api.spotify.com/v1/users/chillhopmusic", + "id" : "chillhopmusic", + "type" : "user", + "uri" : "spotify:user:chillhopmusic" + }, + "public" : false, + "snapshot_id" : "ZJ+886d2bJtcFeJKO4uk983aNF+gTBCX7PIA4xNPBb0aqQMkUxHR1Bhbgb4XD18n", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/chillhopmusic/playlists/74sUjcvpGfdOvCHvgzNEDO/tracks", + "total" : 150 + }, + "type" : "playlist", + "uri" : "spotify:user:chillhopmusic:playlist:74sUjcvpGfdOvCHvgzNEDO" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/3ZNXU8xlURnX63R3KLTJZB" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/3ZNXU8xlURnX63R3KLTJZB", + "id" : "3ZNXU8xlURnX63R3KLTJZB", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/2d8dd23437aaed8331fe93a7a944cf39ffd0dbf1", + "width" : 640 + } ], + "name" : "Lee Hazlewood – Lounge Legends: Lee Hazelwood", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "rUtjLfYGcy+AbCacQJF2Qh6oiDT2sUyb2tratprNKYvNjS+JP0FyQfrePFvno+Lx", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/3ZNXU8xlURnX63R3KLTJZB/tracks", + "total" : 20 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:3ZNXU8xlURnX63R3KLTJZB" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/6xLSmobth6DhSBr5MgWxjF" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6xLSmobth6DhSBr5MgWxjF", + "id" : "6xLSmobth6DhSBr5MgWxjF", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/ea33d6ce252ca8c556c67ee500f5c2891dc0dcbc", + "width" : 640 + } ], + "name" : "Vini Vici – Future Classics", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "YeZbovTdyerZIqkefPE+1DwbngUf1GSn2fFv1Wo56W0oXMarj64tbx0sk1Zp4s2b", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6xLSmobth6DhSBr5MgWxjF/tracks", + "total" : 9 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:6xLSmobth6DhSBr5MgWxjF" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/7oSTKcnx9xzfkj7NaJYpAX" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/7oSTKcnx9xzfkj7NaJYpAX", + "id" : "7oSTKcnx9xzfkj7NaJYpAX", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/d9b728446d892db1627ef5c1f1f6990d934e2517", + "width" : 640 + } ], + "name" : "Judas Priest – Painkiller", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "B1GAuizaIMuYqUVkEtNnWwk0YmvtZC9PKIxVmtIEUe2C+8aUFxym7XaleRJOatFk", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/7oSTKcnx9xzfkj7NaJYpAX/tracks", + "total" : 12 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:7oSTKcnx9xzfkj7NaJYpAX" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/6kgeO8Mo44Kw6aNYkvc5Wq" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6kgeO8Mo44Kw6aNYkvc5Wq", + "id" : "6kgeO8Mo44Kw6aNYkvc5Wq", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/f526bf6ad7ba2907a95cf96db6e134f61d92bef0", + "width" : 640 + } ], + "name" : "Prong – Cleansing", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "2lnKxC0dD48eVJB/kYD9HwpRfGBpYRcMet6rzfTj80pb1amMY4JrwNv49OTDCJLn", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/6kgeO8Mo44Kw6aNYkvc5Wq/tracks", + "total" : 12 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:6kgeO8Mo44Kw6aNYkvc5Wq" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/cahwilms/playlist/2aPPzVTFqvhTFkjVesKGF4" + }, + "href" : "https://api.spotify.com/v1/users/cahwilms/playlists/2aPPzVTFqvhTFkjVesKGF4", + "id" : "2aPPzVTFqvhTFkjVesKGF4", + "images" : [ { + "height" : 640, + "url" : "https://mosaic.scdn.co/640/072567be42da35e4320d85b209e7008283af521f3ba36422dc3cc216c6c039d182a6237383360999da66ee97e80ceba8af4c04ff931a4ade9a97713c38d3737416634d1af503643ca6fc011a45322dab", + "width" : 640 + }, { + "height" : 300, + "url" : "https://mosaic.scdn.co/300/072567be42da35e4320d85b209e7008283af521f3ba36422dc3cc216c6c039d182a6237383360999da66ee97e80ceba8af4c04ff931a4ade9a97713c38d3737416634d1af503643ca6fc011a45322dab", + "width" : 300 + }, { + "height" : 60, + "url" : "https://mosaic.scdn.co/60/072567be42da35e4320d85b209e7008283af521f3ba36422dc3cc216c6c039d182a6237383360999da66ee97e80ceba8af4c04ff931a4ade9a97713c38d3737416634d1af503643ca6fc011a45322dab", + "width" : 60 + } ], + "name" : "Anders", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/cahwilms" + }, + "href" : "https://api.spotify.com/v1/users/cahwilms", + "id" : "cahwilms", + "type" : "user", + "uri" : "spotify:user:cahwilms" + }, + "public" : false, + "snapshot_id" : "R2SlBvks37Ig91TgWHjgMgNG5OCGrUt6tyE27WW5V0Eyx90HCle/Bc+Iuahz2wwO", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/cahwilms/playlists/2aPPzVTFqvhTFkjVesKGF4/tracks", + "total" : 36 + }, + "type" : "playlist", + "uri" : "spotify:user:cahwilms:playlist:2aPPzVTFqvhTFkjVesKGF4" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/4yzjygtb9g0s7RjTbGtykg" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/4yzjygtb9g0s7RjTbGtykg", + "id" : "4yzjygtb9g0s7RjTbGtykg", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/fbba1f95f668d8a8189fd56a44bb8140965a4dcf", + "width" : 640 + } ], + "name" : "Limp Bizkit – Results May Vary", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "928IsyzrP7f95eI0MHIOzAJ5Y1O8re825AIIc+Pzd5r8NHaPlQMj/e+Gj8T9NwyA", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/4yzjygtb9g0s7RjTbGtykg/tracks", + "total" : 18 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:4yzjygtb9g0s7RjTbGtykg" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/4VHuFikSCbrbsAOBNZMuc0" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/4VHuFikSCbrbsAOBNZMuc0", + "id" : "4VHuFikSCbrbsAOBNZMuc0", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/995f6d56c0930a316f025e88f1b67d046fc785ce", + "width" : 640 + } ], + "name" : "Limp Bizkit – New Old Songs", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "IOqztjtE8QOBiAMcEpzg5Zc0iKRvVyPUCfzkRn8cgHksWxCRXeiEIricxG+ARbWp", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/4VHuFikSCbrbsAOBNZMuc0/tracks", + "total" : 16 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:4VHuFikSCbrbsAOBNZMuc0" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/1166762945/playlist/16SVZnYC3bIffe8wzeec2g" + }, + "href" : "https://api.spotify.com/v1/users/1166762945/playlists/16SVZnYC3bIffe8wzeec2g", + "id" : "16SVZnYC3bIffe8wzeec2g", + "images" : [ { + "height" : 640, + "url" : "https://mosaic.scdn.co/640/6d62004edf00a46a0a405e2a3e26f16f4758729ca096eb8d085c2ad3967684a3ce3e329e5ded731f6793b455c8cfc0852ee13bca5cb5e6ad575377d11f2c920d3f98d0d69608fddedaef133b43afe325", + "width" : 640 + }, { + "height" : 300, + "url" : "https://mosaic.scdn.co/300/6d62004edf00a46a0a405e2a3e26f16f4758729ca096eb8d085c2ad3967684a3ce3e329e5ded731f6793b455c8cfc0852ee13bca5cb5e6ad575377d11f2c920d3f98d0d69608fddedaef133b43afe325", + "width" : 300 + }, { + "height" : 60, + "url" : "https://mosaic.scdn.co/60/6d62004edf00a46a0a405e2a3e26f16f4758729ca096eb8d085c2ad3967684a3ce3e329e5ded731f6793b455c8cfc0852ee13bca5cb5e6ad575377d11f2c920d3f98d0d69608fddedaef133b43afe325", + "width" : 60 + } ], + "name" : "Hotline Miami 2 OST", + "owner" : { + "display_name" : "Szczepan Kozal", + "external_urls" : { + "spotify" : "https://open.spotify.com/user/1166762945" + }, + "href" : "https://api.spotify.com/v1/users/1166762945", + "id" : "1166762945", + "type" : "user", + "uri" : "spotify:user:1166762945" + }, + "public" : false, + "snapshot_id" : "WJqWiq1eJI0UhSiPk2ZG962ijsgiFMrNmGkO87fW+vkVHjE5Y0eF6xDsj0kipSM0", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/1166762945/playlists/16SVZnYC3bIffe8wzeec2g/tracks", + "total" : 40 + }, + "type" : "playlist", + "uri" : "spotify:user:1166762945:playlist:16SVZnYC3bIffe8wzeec2g" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/2ETuPRlZewzyOQqD2mRENg" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/2ETuPRlZewzyOQqD2mRENg", + "id" : "2ETuPRlZewzyOQqD2mRENg", + "images" : [ { + "height" : 640, + "url" : "https://i.scdn.co/image/b32b1124650dbd323cd111dbbccbb49be8e65057", + "width" : 640 + } ], + "name" : "winter / metals", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "Zc5+uJIE8K9YfulH3BOgmW//tNxWUyKBsz9qfjyzLuIZFXPLRFNTvX+xZttLYixT", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/2ETuPRlZewzyOQqD2mRENg/tracks", + "total" : 1 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:2ETuPRlZewzyOQqD2mRENg" + }, { + "collaborative" : false, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno/playlist/7geF25MVtBAgrT2D5wZWCS" + }, + "href" : "https://api.spotify.com/v1/users/fireno/playlists/7geF25MVtBAgrT2D5wZWCS", + "id" : "7geF25MVtBAgrT2D5wZWCS", + "images" : [ { + "height" : null, + "url" : "https://pl.scdn.co/images/pl/default/49eb388d415f6b5765fa7f666ca2a8f9c68c05f0", + "width" : null + } ], + "name" : "dark souls", + "owner" : { + "display_name" : null, + "external_urls" : { + "spotify" : "https://open.spotify.com/user/fireno" + }, + "href" : "https://api.spotify.com/v1/users/fireno", + "id" : "fireno", + "type" : "user", + "uri" : "spotify:user:fireno" + }, + "public" : false, + "snapshot_id" : "8cfsxUDwg1p9xjDNparGBtskV3Y88F9NpD3vtY9TbFEU0tdt8d4kTh1/Sav7zw56", + "tracks" : { + "href" : "https://api.spotify.com/v1/users/fireno/playlists/7geF25MVtBAgrT2D5wZWCS/tracks", + "total" : 8 + }, + "type" : "playlist", + "uri" : "spotify:user:fireno:playlist:7geF25MVtBAgrT2D5wZWCS" + } ], + "limit" : 20, + "next" : "https://api.spotify.com/v1/users/fireno/playlists?offset=20&limit=20", + "offset" : 0, + "previous" : null, + "total" : 71 +} \ No newline at end of file diff --git a/utils.go b/utils.go new file mode 100644 index 0000000..cc723e0 --- /dev/null +++ b/utils.go @@ -0,0 +1,17 @@ +package main + +import ( + "fmt" + "regexp" +) + +func waitForInput() { + var dummy string + _, _ = fmt.Scanln(&dummy) +} + +func cleanString(s string) (cleans string){ + reg, _ := regexp.Compile("[^a-zA-Z0-9 ]+") + cleans = reg.ReplaceAllString(s, "") + return +} \ No newline at end of file diff --git a/web.go b/web.go new file mode 100644 index 0000000..3528ffc --- /dev/null +++ b/web.go @@ -0,0 +1,107 @@ +package main + +import ( + // "os" + "fmt" + "net/http" + "html/template" + "regexp" + "io/ioutil" + "encoding/json" +) + +var templates = template.Must(template.ParseGlob("pages/*.html")) +var validPath = regexp.MustCompile("^/(webclient)/(.*)$") + +type Page struct { + Title string + Body []byte +} + +// func makeHandler(fn func(http.ResponseWriter, *http.Request, string)) http.HandlerFunc { +// fmt.Println("Running makeHandler") +// return func(w http.ResponseWriter, r *http.Request) { +// m := validPath.FindStringSubmatch(r.URL.Path) +// if m == nil { +// http.NotFound(w, r) +// return +// } +// fmt.Println("makeHandler::request::" + r.RequestURI) +// fn(w, r, m[2]) +// } +// } + +type testStructForWeb struct { + ID string + Name string + Owner string +} + +type Context struct { + Items []testStructForWeb +} + +func serveSingle(pattern string, filename string) { + http.HandleFunc(pattern, func(w http.ResponseWriter, r *http.Request) { + http.ServeFile(w, r, filename) + }) +} + +func webclientHandler(w http.ResponseWriter, r *http.Request) { + fmt.Println("webclientHandler called") + + var result []testStructForWeb + + url := baseURL_playlists + "?limit=50&offset=0" + + httpClient := &http.Client{} + req, _ := http.NewRequest("GET", url, nil) + req.Header.Set("Authorization", "Bearer "+oauthToken) + res, _ := httpClient.Do(req) + + body, _ := ioutil.ReadAll(res.Body) + data := new(spotifyPlaylistsOfUser) + json.Unmarshal(body, &data) + var counter = 0 + + for _,playlist := range data.Items { + counter++ + result = append(result, testStructForWeb{ID: playlist.ID, Name: playlist.Name, Owner: (playlist.Owner.ID)}) + } + if data.Total > 50 { + for(data.Next != nil) { + nextUrl := *data.Next + request, _ := http.NewRequest("GET",nextUrl, nil) + request.Header.Set("Authorization", "Bearer "+oauthToken) + response, _ := httpClient.Do(request) + + body, _ = ioutil.ReadAll(response.Body) + json.Unmarshal(body, &data) + for _,playlist := range data.Items { + counter++ + result = append(result, testStructForWeb{ID: playlist.ID, Name: playlist.Name, Owner: playlist.Owner.ID}) + } + } + } + + + playlists := Context{Items: result} + + templates.ExecuteTemplate(w, "playlists", playlists) +} + +func submitDownloadQueueHandler(w http.ResponseWriter, r *http.Request) { + // for playlist_id in all_playlists + // if r.PostFormValue(playlist_id) + // end for +} + +func startWebServer() { + http.HandleFunc("/webclient/", webclientHandler) + http.HandleFunc("/submitDownloadQueue/", submitDownloadQueueHandler) + + serveSingle("/static/tables.css", "./static/tables.css") + + fmt.Println("http://localhost:8088/webclient") + http.ListenAndServe("localhost:8088", nil) +} diff --git a/youtube-dl.go b/youtube-dl.go new file mode 100644 index 0000000..38d1362 --- /dev/null +++ b/youtube-dl.go @@ -0,0 +1,26 @@ +package main + +import ( + // "fmt" + // "net/http" + // "net/url" + // "strings" +) + + +// TODO: make POST url global configurable +func download_mp3_from_youtube(youtube_url string, folder string, filename string) { + if (youtube_url != "" && folder != "" && filename != "") { + // form := url.Values{} + // form.Add("url", youtube_url) + // form.Add("folder", folder) + // form.Add("filename", filename) + + // httpClient := &http.Client{} + // req, _ := http.NewRequest("POST", "http://127.0.0.1:1234/work", strings.NewReader(form.Encode())) + // _, err := httpClient.Do(req) + // if err != nil { + // fmt.Printf("Command finished with error: %v", err) + // } + } +} \ No newline at end of file diff --git a/youtube-structs.go b/youtube-structs.go new file mode 100644 index 0000000..6b47bfa --- /dev/null +++ b/youtube-structs.go @@ -0,0 +1,49 @@ +package main + +import( + "time" +) + +type youtubeSearchResult struct { + Kind string `json:"kind"` + Etag string `json:"etag"` + NextPageToken string `json:"nextPageToken"` + RegionCode string `json:"regionCode"` + PageInfo struct { + TotalResults int `json:"totalResults"` + ResultsPerPage int `json:"resultsPerPage"` + } `json:"pageInfo"` + Items []struct { + Kind string `json:"kind"` + Etag string `json:"etag"` + ID struct { + Kind string `json:"kind"` + VideoID string `json:"videoId"` + } `json:"id"` + Snippet struct { + PublishedAt time.Time `json:"publishedAt"` + ChannelID string `json:"channelId"` + Title string `json:"title"` + Description string `json:"description"` + Thumbnails struct { + Default struct { + URL string `json:"url"` + Width int `json:"width"` + Height int `json:"height"` + } `json:"default"` + Medium struct { + URL string `json:"url"` + Width int `json:"width"` + Height int `json:"height"` + } `json:"medium"` + High struct { + URL string `json:"url"` + Width int `json:"width"` + Height int `json:"height"` + } `json:"high"` + } `json:"thumbnails"` + ChannelTitle string `json:"channelTitle"` + LiveBroadcastContent string `json:"liveBroadcastContent"` + } `json:"snippet"` + } `json:"items"` +} \ No newline at end of file diff --git a/youtube.go b/youtube.go new file mode 100644 index 0000000..d946bbb --- /dev/null +++ b/youtube.go @@ -0,0 +1,58 @@ +package main + +import( + "fmt" + "log" + "encoding/json" + "os" + "net/http" + "net/url" + "io/ioutil" + "regexp" +) + +var youtubeToken = os.Getenv("YOUTUBE_TOKEN") +var youtube_api = "https://www.googleapis.com/youtube/v3/search" +var youtube_video_baseurl = "https://youtube.com/watch?v=" + +func search_on_youtube(searchString string) (youtube_url string) { + reg, _ := regexp.Compile("[^a-zA-Z0-9 -]+") + processedString := reg.ReplaceAllString(searchString, "") + t := &url.URL{Path: processedString} + http_request := t.String() + http_request_encoded := (youtube_api+"?part=snippet&maxResults=1&q="+http_request+"&key="+youtubeToken) + + response, err := http.Get(http_request_encoded) + if err != nil { + fmt.Printf("%s", err) + os.Exit(1) + } else { + defer response.Body.Close() + contents, err := ioutil.ReadAll(response.Body) + if err != nil { + fmt.Printf("%s", err) + os.Exit(1) + } + + data := new(youtubeSearchResult) + json.Unmarshal(contents, &data) + + if len(data.Items) > 0 { + youtube_url = youtube_video_baseurl + data.Items[0].ID.VideoID + } else { + // TODO: put this spotify track on 'manual donwload queue' + // youtube_url = "could not find track on yt" + f, err := os.OpenFile("manual-download.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) + if err != nil { + log.Fatal(err) + } + if _, err := f.Write([]byte(searchString+"\n")); err != nil { + log.Fatal(err) + } + if err := f.Close(); err != nil { + log.Fatal(err) + } + } + } + return +}