Skip to content

Instantly share code, notes, and snippets.

@cliffxuan
Last active August 29, 2015 14:19
Show Gist options
  • Save cliffxuan/73ce6b6f6ff81a582f57 to your computer and use it in GitHub Desktop.
Save cliffxuan/73ce6b6f6ff81a582f57 to your computer and use it in GitHub Desktop.
Responsive flip menu. Pure CSS.
class Album extends React.Component {
constructor(props) {
super(props);
this.state = {isChecked: false};
}
handleChange() {
this.setState({isChecked: !this.state.isChecked});
}
render () {
var image = _.chain(this.props.images)
.filter(x => Math.abs(x.width - 300) < 100)
.first().value();
return (
<section className="flip-item-wrap">
<img className="fake-image" src="record.jpg" alt="" />
<input type="checkbox" className="flipper" id={this.props.id} onChange={this.handleChange.bind(this)} checked={this.state.isChecked} hidden />
<label htmlFor={this.props.id} className="flip-item">
<figure className="front"><img src={image.url} alt=""></img></figure>
<figure className="back">
<img src={image.url} alt=""></img>
<div className="flip-item-desc">
<h4 className="flip-item-title">{this.props.name}</h4>
<p>{new Date(Date.parse(this.props.release_date)).getFullYear()}</p>
<a className="artist-link" href={this.props.artists[0].uri}><p>{this.props.artists[0].name}</p></a>
<a className="play-button" href={this.props.uri}><i className="fa fa-play-circle-o fa-4x"></i></a>
</div>
</figure>
</label>
</section>
);
}
}
class Albums extends React.Component {
constructor() {
this.all_years = [1950, 1960, 1970, 1980, 1990, 2000, 2010];
this.state = {years: this.all_years};
}
componentDidMount () {
superagent.get(this.props.source)
.end(function(res) {
this.setState({albums: res.body});
}.bind(this));
}
handleYearUpdate (years) {
this.setState({years: years});
}
_randomPick(albums, years, cnt) {
var ids = _.chain(albums)
.keys()
.filter(id => _.any(years.map(year => {
var release_year = new Date(Date.parse(albums[id].release_date)).getFullYear(),
diff = release_year - year;
return 0 < diff && diff < 10;})))
.sort(x => 0.5 - Math.random())
.slice(0, cnt)
.value();
return ids;
}
render() {
var ids = this._randomPick(this.state.albums, [1980], 10);
return (
<div id="albums">
<YearMenu handleUpdate={this.handleYearUpdate.bind(this)} all_years={this.all_years} />
<div className="grids">
{ids.map(id => React.createElement(Album, this.state.albums[id]))}
</div>
</div>
);
}
}
class YearMenu extends React.Component {
constructor() {
this.state = {years: []};
}
handleClick(year, checked) {
var years = this.state.years;
if (checked) {
years.push(year);
} else {
years = years.filter(x => x != year);
}
this.props.handleUpdate(years.length > 0 ? years : this.props.all_years);
this.setState({years: years});
}
render() {
return (
<div className="pure-menu pure-menu-horizontal fixed-top">
<label className="pure-menu-heading">Release Year</label>
<ul className="pure-menu-list">
{this.props.all_years.map(year => React.createElement(
YearButton, {year: year, handleClick: this.handleClick.bind(this)}))}
</ul>
</div>
);
}
}
class YearButton extends React.Component {
constructor() {
this.state = {selected: false};
}
onChange() {
var selected = !this.state.selected;
this.setState({selected: selected});
this.props.handleClick(this.props.year, selected);
}
render() {
var labelStyle;
if (this.state.selected) {
labelStyle = { backgroundColor: '#d8d8d8' };
} else {
labelStyle = {};
}
return (
<li className="pure-menu-item" onChange={this.onChange.bind(this)} >
<label style={labelStyle} className="pure-menu-link toggle">
<input name="years" type="checkbox"
checked={this.state.selected} value={this.props.year} hidden/>
{this.props.year}s
</label>
</li>
);
}
}
React.render(<Albums source="data.json" />,
document.getElementById('container'));
{
"7sIFcFS96iFIdzLuETglbq": {
"name": "Oar",
"release_date": "1969",
"uri": "spotify:album:7sIFcFS96iFIdzLuETglbq",
"artists": [
{
"name": "Alexander 'Skip' Spence",
"external_urls": {
"spotify": "https://open.spotify.com/artist/25e8CxfStX7gVfGIQL2qMd"
},
"uri": "spotify:artist:25e8CxfStX7gVfGIQL2qMd",
"href": "https://api.spotify.com/v1/artists/25e8CxfStX7gVfGIQL2qMd",
"type": "artist",
"id": "25e8CxfStX7gVfGIQL2qMd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/697db890a2a2063d37a7dadf39dbdd49662e1eda",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2aefc4a5919015ae43d4dd38f3f09d68527a61d6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f84b9af93cdfb02ceecbff365d695098f4cf9131",
"width": 64,
"height": 64
}
],
"id": "7sIFcFS96iFIdzLuETglbq"
},
"0jMxhxH5JW3aUdVoeRKjWl": {
"name": "Talking With the Taxman About Poetry",
"release_date": "1986",
"uri": "spotify:album:0jMxhxH5JW3aUdVoeRKjWl",
"artists": [
{
"name": "Billy Bragg",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5yXAFDZNUNyO92l5WTImkO"
},
"uri": "spotify:artist:5yXAFDZNUNyO92l5WTImkO",
"href": "https://api.spotify.com/v1/artists/5yXAFDZNUNyO92l5WTImkO",
"type": "artist",
"id": "5yXAFDZNUNyO92l5WTImkO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/45e0d3eaa1398baebcd9844e9140f148e83ef339",
"width": 640,
"height": 576
},
{
"url": "https://i.scdn.co/image/91d3ec107a3a87f11d01b7fd1dd0a966f53ada85",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/67e946dfbe1167939942e965bdadedf40c64cecb",
"width": 64,
"height": 58
}
],
"id": "0jMxhxH5JW3aUdVoeRKjWl"
},
"3Dg3quPRLDCsEqnzgPl6PE": {
"name": "The Slider",
"release_date": "1972-07-21",
"uri": "spotify:album:3Dg3quPRLDCsEqnzgPl6PE",
"artists": [
{
"name": "T. Rex",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3dBVyJ7JuOMt4GE9607Qin"
},
"uri": "spotify:artist:3dBVyJ7JuOMt4GE9607Qin",
"href": "https://api.spotify.com/v1/artists/3dBVyJ7JuOMt4GE9607Qin",
"type": "artist",
"id": "3dBVyJ7JuOMt4GE9607Qin"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fbb5ca50e7a200398f8451b9877b7f866eb28f61",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f4dded31ebc9f5d744bf43325c908d084a6cf3c0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3bd8ea4cd3b4396b98a9bf3201d26b03ac910aac",
"width": 64,
"height": 64
}
],
"id": "3Dg3quPRLDCsEqnzgPl6PE"
},
"1LgpJjBJIRQhkJ01oZR3Cn": {
"name": "Dog Man Star (Remastered)",
"release_date": "1994-10-10",
"uri": "spotify:album:1LgpJjBJIRQhkJ01oZR3Cn",
"artists": [
{
"name": "Suede",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6PHIK3kjWggLtVygsOtpqS"
},
"uri": "spotify:artist:6PHIK3kjWggLtVygsOtpqS",
"href": "https://api.spotify.com/v1/artists/6PHIK3kjWggLtVygsOtpqS",
"type": "artist",
"id": "6PHIK3kjWggLtVygsOtpqS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f759ba63626dd786d1c53e46787f672fa1898c85",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cd65e838f5bb2fa2052f5e63fae8e3c3fbe1d592",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ccd8a5001a82baf4e0865b80c2e0e7f69368e178",
"width": 64,
"height": 64
}
],
"id": "1LgpJjBJIRQhkJ01oZR3Cn"
},
"3DRlG4ezNna6WCi3uPGcDL": {
"name": "Exile In Guyville",
"release_date": "1993",
"uri": "spotify:album:3DRlG4ezNna6WCi3uPGcDL",
"artists": [
{
"name": "Liz Phair",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2LXeJdQVcFkhkWydphLI74"
},
"uri": "spotify:artist:2LXeJdQVcFkhkWydphLI74",
"href": "https://api.spotify.com/v1/artists/2LXeJdQVcFkhkWydphLI74",
"type": "artist",
"id": "2LXeJdQVcFkhkWydphLI74"
}
],
"images": [
{
"url": "https://i.scdn.co/image/be4a1cdeffdbd69588e634321838409ab7e7c64d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/771aeabed96a4eb99cb7a56314b3abf81b2df8b9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9d6e291f16806baed763ee361c66f6b910758b28",
"width": 64,
"height": 64
}
],
"id": "3DRlG4ezNna6WCi3uPGcDL"
},
"010qZDvXVmszJv4ncbEZBh": {
"name": "Fear and Whiskey",
"release_date": "1985-01-01",
"uri": "spotify:album:010qZDvXVmszJv4ncbEZBh",
"artists": [
{
"name": "Mekons",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1Ag6UM6dow2OH9V06mxzV5"
},
"uri": "spotify:artist:1Ag6UM6dow2OH9V06mxzV5",
"href": "https://api.spotify.com/v1/artists/1Ag6UM6dow2OH9V06mxzV5",
"type": "artist",
"id": "1Ag6UM6dow2OH9V06mxzV5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6e3369454c0f218a0c84a275c7762eab0e0ae2e2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/add1a760f0b7814dcd3bac18eb980025ae4c011e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e0e981d38520f80f601e747f482c8af71ed82fa9",
"width": 64,
"height": 64
}
],
"id": "010qZDvXVmszJv4ncbEZBh"
},
"1oiC3mdgLddL5kHZsf4DK7": {
"name": "Junkyard",
"release_date": "1982",
"uri": "spotify:album:1oiC3mdgLddL5kHZsf4DK7",
"artists": [
{
"name": "The Birthday Party",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5I2hMUcztc6QbzkyLskdt4"
},
"uri": "spotify:artist:5I2hMUcztc6QbzkyLskdt4",
"href": "https://api.spotify.com/v1/artists/5I2hMUcztc6QbzkyLskdt4",
"type": "artist",
"id": "5I2hMUcztc6QbzkyLskdt4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6f0a07651bb40dc342be5999f7e6ba518dca22eb",
"width": 640,
"height": 624
},
{
"url": "https://i.scdn.co/image/cd03498dce7b1ecd22509d3d7d585330146cb62c",
"width": 300,
"height": 292
},
{
"url": "https://i.scdn.co/image/3b8a73b94ddfb88d196a9bf8e986efe3953834d0",
"width": 64,
"height": 62
}
],
"id": "1oiC3mdgLddL5kHZsf4DK7"
},
"0elHWyUbF2KLuHl8GjlzEM": {
"name": "Bat Out Of Hell",
"release_date": "1977",
"uri": "spotify:album:0elHWyUbF2KLuHl8GjlzEM",
"artists": [
{
"name": "Meat Loaf",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7dnB1wSxbYa8CejeVg98hz"
},
"uri": "spotify:artist:7dnB1wSxbYa8CejeVg98hz",
"href": "https://api.spotify.com/v1/artists/7dnB1wSxbYa8CejeVg98hz",
"type": "artist",
"id": "7dnB1wSxbYa8CejeVg98hz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/123a32e80b8373e90511dae14ca59cb23d440e79",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/24811e7b3bc5ee8aaac1222f79157de0d6b8fcd8",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/102dd9fffc78907df145fc4182180af0ff44b4e4",
"width": 64,
"height": 64
}
],
"id": "0elHWyUbF2KLuHl8GjlzEM"
},
"1nkB6F63xkKusB4M8I5zR6": {
"name": "Beauty And The Beat (30th Anniversary Deluxe Edition)",
"release_date": "2011-05-13",
"uri": "spotify:album:1nkB6F63xkKusB4M8I5zR6",
"artists": [
{
"name": "The Go-Go's",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2mG8HHQ9S9kcbjcrb5N1FE"
},
"uri": "spotify:artist:2mG8HHQ9S9kcbjcrb5N1FE",
"href": "https://api.spotify.com/v1/artists/2mG8HHQ9S9kcbjcrb5N1FE",
"type": "artist",
"id": "2mG8HHQ9S9kcbjcrb5N1FE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d0cb669f419462fb84a4f146a640920c3e8109e8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/24480c134ee757d62c03f193e80611cdcf351d8f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ec5f2d38dd5e14d0eb0a1dbbf87cfc4a4c0c4679",
"width": 64,
"height": 64
}
],
"id": "1nkB6F63xkKusB4M8I5zR6"
},
"4lGS8HxU3NYaQxfU0wx2r1": {
"name": "Listen Without Prejudice Vol. 1",
"release_date": "1990-09-03",
"uri": "spotify:album:4lGS8HxU3NYaQxfU0wx2r1",
"artists": [
{
"name": "George Michael",
"external_urls": {
"spotify": "https://open.spotify.com/artist/19ra5tSw0tWufvUp8GotLo"
},
"uri": "spotify:artist:19ra5tSw0tWufvUp8GotLo",
"href": "https://api.spotify.com/v1/artists/19ra5tSw0tWufvUp8GotLo",
"type": "artist",
"id": "19ra5tSw0tWufvUp8GotLo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/46fe08e9249442a3973f0fba948be3940c746956",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8ac7658395b53371bdcac8f5fd7cdc018ac52d16",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eb85568d69ecc91bb6770d075f7d60ee04badfaf",
"width": 64,
"height": 64
}
],
"id": "4lGS8HxU3NYaQxfU0wx2r1"
},
"4sTAgYLZy5zwqR3kT1g0oh": {
"name": "World Clique",
"release_date": "1990",
"uri": "spotify:album:4sTAgYLZy5zwqR3kT1g0oh",
"artists": [
{
"name": "Deee-Lite",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4eQJIXFEujzhTVVS1gIfu5"
},
"uri": "spotify:artist:4eQJIXFEujzhTVVS1gIfu5",
"href": "https://api.spotify.com/v1/artists/4eQJIXFEujzhTVVS1gIfu5",
"type": "artist",
"id": "4eQJIXFEujzhTVVS1gIfu5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/560d9e93055a2a01db7f49663b6464104e8bbdc1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/59e41006abe39b961929d0fd7e26c53c518ca810",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ed140451ee747e3b8ca84f25c36935ca587b8db6",
"width": 64,
"height": 64
}
],
"id": "4sTAgYLZy5zwqR3kT1g0oh"
},
"7K6JtyaSSVr7HidQsCHun0": {
"name": "Odessey And Oracle",
"release_date": "1968-04-19",
"uri": "spotify:album:7K6JtyaSSVr7HidQsCHun0",
"artists": [
{
"name": "The Zombies",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2jgPkn6LuUazBoBk6vvjh5"
},
"uri": "spotify:artist:2jgPkn6LuUazBoBk6vvjh5",
"href": "https://api.spotify.com/v1/artists/2jgPkn6LuUazBoBk6vvjh5",
"type": "artist",
"id": "2jgPkn6LuUazBoBk6vvjh5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/83a3d13ceab5a2105b59c9e0de05b80e8c579e20",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/d43900a63d336bcf6d208994a3ba21062db3b207",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f95f5223fe664f5d7d72191c3f1e9fc539a22a54",
"width": 64,
"height": 64
}
],
"id": "7K6JtyaSSVr7HidQsCHun0"
},
"1JAdpYypQlNaPjL3kHgRZm": {
"name": "My Generation (Remastered Mono Version)",
"release_date": "1965-12-03",
"uri": "spotify:album:1JAdpYypQlNaPjL3kHgRZm",
"artists": [
{
"name": "The Who",
"external_urls": {
"spotify": "https://open.spotify.com/artist/67ea9eGLXYMsO2eYQRui3w"
},
"uri": "spotify:artist:67ea9eGLXYMsO2eYQRui3w",
"href": "https://api.spotify.com/v1/artists/67ea9eGLXYMsO2eYQRui3w",
"type": "artist",
"id": "67ea9eGLXYMsO2eYQRui3w"
}
],
"images": [
{
"url": "https://i.scdn.co/image/de0fc5364245e9f3660591287a41234200ae9817",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b000e85e309ccce0087370dfe78e29291ffa177f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/09364357b26472e4c3e8b31381fdf7a83259e9a4",
"width": 64,
"height": 64
}
],
"id": "1JAdpYypQlNaPjL3kHgRZm"
},
"4ePl0meknOkJ892O9yszEY": {
"name": "Superunknown (20th Anniversary)",
"release_date": "2014-05-30",
"uri": "spotify:album:4ePl0meknOkJ892O9yszEY",
"artists": [
{
"name": "Soundgarden",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5xUf6j4upBrXZPg6AI4MRK"
},
"uri": "spotify:artist:5xUf6j4upBrXZPg6AI4MRK",
"href": "https://api.spotify.com/v1/artists/5xUf6j4upBrXZPg6AI4MRK",
"type": "artist",
"id": "5xUf6j4upBrXZPg6AI4MRK"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4f6465633ac76ca4ddabbfc680913d123df1aeba",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/9605a8c3ab4a85a637e1c20f466a441ea167d5c8",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/4cad628ee93ad8c640454349a1495ba4c8ce9bf9",
"width": 64,
"height": 63
}
],
"id": "4ePl0meknOkJ892O9yszEY"
},
"3AQgdwMNCiN7awXch5fAaG": {
"name": "Remain In Light (Deluxe Version)",
"release_date": "1980-10-08",
"uri": "spotify:album:3AQgdwMNCiN7awXch5fAaG",
"artists": [
{
"name": "Talking Heads",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2x9SpqnPi8rlE9pjHBwmSC"
},
"uri": "spotify:artist:2x9SpqnPi8rlE9pjHBwmSC",
"href": "https://api.spotify.com/v1/artists/2x9SpqnPi8rlE9pjHBwmSC",
"type": "artist",
"id": "2x9SpqnPi8rlE9pjHBwmSC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ef66af2631b8a3a8f118407be6bb6685836ae42f",
"width": 640,
"height": 570
},
{
"url": "https://i.scdn.co/image/6cd647135195ef216b9d58b475a4258d2699025f",
"width": 300,
"height": 267
},
{
"url": "https://i.scdn.co/image/bc5576aa6ccda1019f5746ab64b4dbc47f0e4045",
"width": 64,
"height": 57
}
],
"id": "3AQgdwMNCiN7awXch5fAaG"
},
"0Oqi3Mm316FRX5H9mHjF0b": {
"name": "Low",
"release_date": "1977-01-14",
"uri": "spotify:album:0Oqi3Mm316FRX5H9mHjF0b",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/66d117167621f355b575886e35ee7fc4d51d6dbe",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5575191d033271bc55ed3c9547104b9b674e36fa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/044fd8dfd15bf7c00caf283ce26875e2ecc5645c",
"width": 64,
"height": 64
}
],
"id": "0Oqi3Mm316FRX5H9mHjF0b"
},
"5FCNQAQLw46CKYbv0n2H6V": {
"name": "Done By The Forces Of Nature",
"release_date": "1989-11-08",
"uri": "spotify:album:5FCNQAQLw46CKYbv0n2H6V",
"artists": [
{
"name": "Jungle Brothers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2iclO3rlyF0YVNE46ctYRj"
},
"uri": "spotify:artist:2iclO3rlyF0YVNE46ctYRj",
"href": "https://api.spotify.com/v1/artists/2iclO3rlyF0YVNE46ctYRj",
"type": "artist",
"id": "2iclO3rlyF0YVNE46ctYRj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ad194d3307aaa4b41c57c99902a04e4d180984de",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fff0f6b2a6f2c31cf5437fbb007d4831007057d4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fbafa853157ccd551fad8b8409e5feb0afe02ecc",
"width": 64,
"height": 64
}
],
"id": "5FCNQAQLw46CKYbv0n2H6V"
},
"70Yl2w1p00whfnC7fj94ox": {
"name": "Everybody Knows This Is Nowhere (Remastered Version)",
"release_date": "1977-09-01",
"uri": "spotify:album:70Yl2w1p00whfnC7fj94ox",
"artists": [
{
"name": "Neil Young & Crazy Horse",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1jVuLlkfKibBT0hXDnzQjp"
},
"uri": "spotify:artist:1jVuLlkfKibBT0hXDnzQjp",
"href": "https://api.spotify.com/v1/artists/1jVuLlkfKibBT0hXDnzQjp",
"type": "artist",
"id": "1jVuLlkfKibBT0hXDnzQjp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5cb8817792e03600f7d259ec402173461b6ad8ec",
"width": 628,
"height": 640
},
{
"url": "https://i.scdn.co/image/6630021ec9393b27bfc55b2536bd66b018403e49",
"width": 294,
"height": 300
},
{
"url": "https://i.scdn.co/image/99f876660e74875f670f5a9be497e3e5d74e464e",
"width": 63,
"height": 64
}
],
"id": "70Yl2w1p00whfnC7fj94ox"
},
"5xifZlByZcZecgkP7sYSoW": {
"name": "The Marshall Mathers LP",
"release_date": "2000-08-31",
"uri": "spotify:album:5xifZlByZcZecgkP7sYSoW",
"artists": [
{
"name": "Eminem",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7dGJo4pcD2V6oG8kP0tJRR"
},
"uri": "spotify:artist:7dGJo4pcD2V6oG8kP0tJRR",
"href": "https://api.spotify.com/v1/artists/7dGJo4pcD2V6oG8kP0tJRR",
"type": "artist",
"id": "7dGJo4pcD2V6oG8kP0tJRR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2cdee8b0dd96ca108db92f3894366c574055f959",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/fecb7dd81b11e8612abc3f2a8e35026f29358612",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/96b9f3985a554cae34f0ed495221da83f798703b",
"width": 64,
"height": 63
}
],
"id": "5xifZlByZcZecgkP7sYSoW"
},
"11LBxnHc4oRCvPd6tk8jJZ": {
"name": "Armed Forces",
"release_date": "1979",
"uri": "spotify:album:11LBxnHc4oRCvPd6tk8jJZ",
"artists": [
{
"name": "Elvis Costello & The Attractions",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4qmHkMxr6pTWh5Zo74odpH"
},
"uri": "spotify:artist:4qmHkMxr6pTWh5Zo74odpH",
"href": "https://api.spotify.com/v1/artists/4qmHkMxr6pTWh5Zo74odpH",
"type": "artist",
"id": "4qmHkMxr6pTWh5Zo74odpH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3804debcb2a08f978be3640fa7e6b27dbe970ac7",
"width": 640,
"height": 576
},
{
"url": "https://i.scdn.co/image/340f290b960f286159976d1638c2f0a4f731393e",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/e36d6a90f592253c5b2b97d113a14fdadba291da",
"width": 64,
"height": 58
}
],
"id": "11LBxnHc4oRCvPd6tk8jJZ"
},
"0FfznGuH83Y2lHcJrfiD4N": {
"name": "Hot Buttered Soul (Deluxe Remaster w/bonus Interview)",
"release_date": "1969",
"uri": "spotify:album:0FfznGuH83Y2lHcJrfiD4N",
"artists": [
{
"name": "Isaac Hayes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3IKV7o6WPphDB7cCWXaG3E"
},
"uri": "spotify:artist:3IKV7o6WPphDB7cCWXaG3E",
"href": "https://api.spotify.com/v1/artists/3IKV7o6WPphDB7cCWXaG3E",
"type": "artist",
"id": "3IKV7o6WPphDB7cCWXaG3E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a1a0e36b506c60201f83f9c12fa5424dca025781",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6f32ba0e4d6bff557b2a61a288caf3857b5753d9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1aef67c8f41a9a417db6d28dba20db41605688b5",
"width": 64,
"height": 64
}
],
"id": "0FfznGuH83Y2lHcJrfiD4N"
},
"3KFWViJ1wIHAdOVLFTVzjD": {
"name": "Non-Stop Erotic Cabaret",
"release_date": "1981",
"uri": "spotify:album:3KFWViJ1wIHAdOVLFTVzjD",
"artists": [
{
"name": "Soft Cell",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6aq8T2RcspxVOGgMrTzjWc"
},
"uri": "spotify:artist:6aq8T2RcspxVOGgMrTzjWc",
"href": "https://api.spotify.com/v1/artists/6aq8T2RcspxVOGgMrTzjWc",
"type": "artist",
"id": "6aq8T2RcspxVOGgMrTzjWc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4442b942250a8439e1195308f6d692ab77b78ad6",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/89c9762ce5961a07c59f4c5e10fc3f1726c55aad",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/d477e0bc4a562b6281e82c3ce9fd37450fc7598a",
"width": 64,
"height": 63
}
],
"id": "3KFWViJ1wIHAdOVLFTVzjD"
},
"7iwS1r6JHYJe9xpPjzmWqD": {
"name": "Stand",
"release_date": "1969-05-03",
"uri": "spotify:album:7iwS1r6JHYJe9xpPjzmWqD",
"artists": [
{
"name": "Sly & The Family Stone",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5m8H6zSadhu1j9Yi04VLqD"
},
"uri": "spotify:artist:5m8H6zSadhu1j9Yi04VLqD",
"href": "https://api.spotify.com/v1/artists/5m8H6zSadhu1j9Yi04VLqD",
"type": "artist",
"id": "5m8H6zSadhu1j9Yi04VLqD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/178278f98ca9e59338bcbab3620ce8755ca78ec5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/17be8c2064a5d0e4d9f5e5ba24d403040ffc5e29",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b843934aa6a415b0f8dcd1bd68405ea361a0be26",
"width": 64,
"height": 64
}
],
"id": "7iwS1r6JHYJe9xpPjzmWqD"
},
"2mphJIKasQffdN66vEKGJD": {
"name": "A Short Album About Love",
"release_date": "1997-02",
"uri": "spotify:album:2mphJIKasQffdN66vEKGJD",
"artists": [
{
"name": "The Divine Comedy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7EV6jW6dotBdvsHj6xPixi"
},
"uri": "spotify:artist:7EV6jW6dotBdvsHj6xPixi",
"href": "https://api.spotify.com/v1/artists/7EV6jW6dotBdvsHj6xPixi",
"type": "artist",
"id": "7EV6jW6dotBdvsHj6xPixi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2b313f5304d77d9beab6dc6afee6bc1482872b52",
"width": 640,
"height": 573
},
{
"url": "https://i.scdn.co/image/d5a54ae5cbcc8461e10606d57943044f69a1d855",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/ba4bc199d02e4b0a8c5b2edc5781b68ae561df43",
"width": 64,
"height": 57
}
],
"id": "2mphJIKasQffdN66vEKGJD"
},
"5Gb3kmmc2SIvlxbTBxzfI8": {
"name": "Want Two",
"release_date": "2004-01-01",
"uri": "spotify:album:5Gb3kmmc2SIvlxbTBxzfI8",
"artists": [
{
"name": "Rufus Wainwright",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2PfBzriIMRsCXPDtSy9vg8"
},
"uri": "spotify:artist:2PfBzriIMRsCXPDtSy9vg8",
"href": "https://api.spotify.com/v1/artists/2PfBzriIMRsCXPDtSy9vg8",
"type": "artist",
"id": "2PfBzriIMRsCXPDtSy9vg8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1050b2606c83d4632064cd7b584e11284443dd27",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/01fbd3de010a4aea5e18608fba30705e5d81844d",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/96cf95f0e53a3565c85f59ad77959d1af56fbb87",
"width": 64,
"height": 63
}
],
"id": "5Gb3kmmc2SIvlxbTBxzfI8"
},
"4kdOH3s9cRL9YykvHFpSlD": {
"name": "The Essential Paul Simon",
"release_date": "2007",
"uri": "spotify:album:4kdOH3s9cRL9YykvHFpSlD",
"artists": [
{
"name": "Paul Simon",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2CvCyf1gEVhI0mX6aFXmVI"
},
"uri": "spotify:artist:2CvCyf1gEVhI0mX6aFXmVI",
"href": "https://api.spotify.com/v1/artists/2CvCyf1gEVhI0mX6aFXmVI",
"type": "artist",
"id": "2CvCyf1gEVhI0mX6aFXmVI"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8357e4aacfef9c782b7d039bb52ca6a253e402a2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a9614c282250cd9b50b0a27c7cdb77f869271dd9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bce85a8e4acbe0ce440372191e343b4190f3940a",
"width": 64,
"height": 64
}
],
"id": "4kdOH3s9cRL9YykvHFpSlD"
},
"6S9rbimtTmC0v6UBWqSpay": {
"name": "Songs The Lord Taught Us",
"release_date": "1980",
"uri": "spotify:album:6S9rbimtTmC0v6UBWqSpay",
"artists": [
{
"name": "The Cramps",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4lYtGx5NZQJHsMyhHc5iz3"
},
"uri": "spotify:artist:4lYtGx5NZQJHsMyhHc5iz3",
"href": "https://api.spotify.com/v1/artists/4lYtGx5NZQJHsMyhHc5iz3",
"type": "artist",
"id": "4lYtGx5NZQJHsMyhHc5iz3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/663ac2d330d1dd583e6d1d98528467949f0ca234",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1e3f337a3b692af9af39014c5156805a0a037965",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6da3152f2680d2894580e1cdabf0f03fe50610e8",
"width": 64,
"height": 64
}
],
"id": "6S9rbimtTmC0v6UBWqSpay"
},
"7KRXWeJYBkyUmwOFTayiQk": {
"name": "Phaedra",
"release_date": "1974-02-20",
"uri": "spotify:album:7KRXWeJYBkyUmwOFTayiQk",
"artists": [
{
"name": "Tangerine Dream",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1BGN1IdyiSR0ZYrkoKNchl"
},
"uri": "spotify:artist:1BGN1IdyiSR0ZYrkoKNchl",
"href": "https://api.spotify.com/v1/artists/1BGN1IdyiSR0ZYrkoKNchl",
"type": "artist",
"id": "1BGN1IdyiSR0ZYrkoKNchl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/487743e17d28eaecba14d4d3aa4fd7e28f2dd671",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/164a22796ef616e05a114729b7826b15ca1d6f24",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/542fa8d8efbe8f77af9a74aedae9eddee90bd191",
"width": 64,
"height": 64
}
],
"id": "7KRXWeJYBkyUmwOFTayiQk"
},
"5spnOKcCnsfRsIBtRrRqGV": {
"name": "Third/Sister Lovers",
"release_date": "1978",
"uri": "spotify:album:5spnOKcCnsfRsIBtRrRqGV",
"artists": [
{
"name": "Big Star",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3UvcmAOZt64oKpP95f6MMM"
},
"uri": "spotify:artist:3UvcmAOZt64oKpP95f6MMM",
"href": "https://api.spotify.com/v1/artists/3UvcmAOZt64oKpP95f6MMM",
"type": "artist",
"id": "3UvcmAOZt64oKpP95f6MMM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ae4bcda5bf7c39292847902e1f764503c06d7374",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/83b09e42a43d41bd0fb4b62cc9b385654e543d49",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e6e26fe6c67e80a8d4842853e9f4a23dc6b9faae",
"width": 64,
"height": 64
}
],
"id": "5spnOKcCnsfRsIBtRrRqGV"
},
"7lXAm2zYd3D3yrh2YuG6jB": {
"name": "My Aim Is True (Deluxe Edition)",
"release_date": "2007-01-01",
"uri": "spotify:album:7lXAm2zYd3D3yrh2YuG6jB",
"artists": [
{
"name": "Elvis Costello",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2BGRfQgtzikz1pzAD0kaEn"
},
"uri": "spotify:artist:2BGRfQgtzikz1pzAD0kaEn",
"href": "https://api.spotify.com/v1/artists/2BGRfQgtzikz1pzAD0kaEn",
"type": "artist",
"id": "2BGRfQgtzikz1pzAD0kaEn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/51851abbecea3a223d955988ab7444e1d11be668",
"width": 640,
"height": 575
},
{
"url": "https://i.scdn.co/image/55cf846b66eedce772239e80cf548d8fa7405668",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/49ab5c508eddaf7d7bdd4fff8095b7f027283e99",
"width": 64,
"height": 58
}
],
"id": "7lXAm2zYd3D3yrh2YuG6jB"
},
"2iNVUmIuWuri8dYNG37yie": {
"name": "Isn't Anything",
"release_date": "1988",
"uri": "spotify:album:2iNVUmIuWuri8dYNG37yie",
"artists": [
{
"name": "My Bloody Valentine",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3G3Gdm0ZRAOxLrbyjfhii5"
},
"uri": "spotify:artist:3G3Gdm0ZRAOxLrbyjfhii5",
"href": "https://api.spotify.com/v1/artists/3G3Gdm0ZRAOxLrbyjfhii5",
"type": "artist",
"id": "3G3Gdm0ZRAOxLrbyjfhii5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0c23e96405a0ac6c5ab9bc4e56280e1d3aea3e92",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f5cff66d1fafe8b5a1f3ab1119ea5540a73d539f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/84f7c183638219cea5d37601af9ee4cb2d1019d8",
"width": 64,
"height": 64
}
],
"id": "2iNVUmIuWuri8dYNG37yie"
},
"1KkMseKFaUHN3TXrXF3jHT": {
"name": "Q: Are We Not Men? A: We Are Devo / Devo Live",
"release_date": "1981",
"uri": "spotify:album:1KkMseKFaUHN3TXrXF3jHT",
"artists": [
{
"name": "Devo",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0UKfenbZb15sqhfPC6zbt3"
},
"uri": "spotify:artist:0UKfenbZb15sqhfPC6zbt3",
"href": "https://api.spotify.com/v1/artists/0UKfenbZb15sqhfPC6zbt3",
"type": "artist",
"id": "0UKfenbZb15sqhfPC6zbt3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c008c0b64f8a5e1594f32364490da850194ad2ed",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/17de5ecadd9c07e6a3df1f64949b5e31842621ba",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c1bb10abcccf4198d98b31cd8056bf566188f79f",
"width": 64,
"height": 64
}
],
"id": "1KkMseKFaUHN3TXrXF3jHT"
},
"2sHLF60ORpmqa1DXs2w5Lz": {
"name": "Nighthawks At The Diner",
"release_date": "1975-06-01",
"uri": "spotify:album:2sHLF60ORpmqa1DXs2w5Lz",
"artists": [
{
"name": "Tom Waits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7x83XhcMbOTl1UdYsPTuZM"
},
"uri": "spotify:artist:7x83XhcMbOTl1UdYsPTuZM",
"href": "https://api.spotify.com/v1/artists/7x83XhcMbOTl1UdYsPTuZM",
"type": "artist",
"id": "7x83XhcMbOTl1UdYsPTuZM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6ec4e392b1dccb935790c3440879b2e89c69785c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/72bd4ec47815ac4f3948e836182c7786eafefe46",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5c963733571a3e6d1973bf4513210a178e375a8d",
"width": 64,
"height": 64
}
],
"id": "2sHLF60ORpmqa1DXs2w5Lz"
},
"3wKouVhrEkGmdgnASErALn": {
"name": "Joan Armatrading",
"release_date": "1976-01-01",
"uri": "spotify:album:3wKouVhrEkGmdgnASErALn",
"artists": [
{
"name": "Joan Armatrading",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1bdAJUX6JPsnYHbTl5jbk6"
},
"uri": "spotify:artist:1bdAJUX6JPsnYHbTl5jbk6",
"href": "https://api.spotify.com/v1/artists/1bdAJUX6JPsnYHbTl5jbk6",
"type": "artist",
"id": "1bdAJUX6JPsnYHbTl5jbk6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f9c8b77bb9c98d4b655a5e86647cfa7cfcdadcf0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/388a87504f952b6a652b0297893261f343622306",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2a8e42f7be895cd081eebd017d740f2b0dc8ffaf",
"width": 64,
"height": 64
}
],
"id": "3wKouVhrEkGmdgnASErALn"
},
"5FTx6W84UUU14n29QV4saY": {
"name": "Tonight's The Night",
"release_date": "1975-06-20",
"uri": "spotify:album:5FTx6W84UUU14n29QV4saY",
"artists": [
{
"name": "Neil Young",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm"
},
"uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm",
"href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm",
"type": "artist",
"id": "6v8FB84lnmJs434UJf2Mrm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/57c083b2c4926ea393f32fc6926eb2d7b36a6e6b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5933955ae881313d99038b8ab1374c5bd2a586df",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0abae3af4bdd7e096912e2ee17ca48e3b1ac96af",
"width": 64,
"height": 64
}
],
"id": "5FTx6W84UUU14n29QV4saY"
},
"1HUMjB15ARg96KIypcGzYY": {
"name": "Halcyon Digest",
"release_date": "2010-09-27",
"uri": "spotify:album:1HUMjB15ARg96KIypcGzYY",
"artists": [
{
"name": "Deerhunter",
"external_urls": {
"spotify": "https://open.spotify.com/artist/38zTZcuN7nFvVJ6auhc6V3"
},
"uri": "spotify:artist:38zTZcuN7nFvVJ6auhc6V3",
"href": "https://api.spotify.com/v1/artists/38zTZcuN7nFvVJ6auhc6V3",
"type": "artist",
"id": "38zTZcuN7nFvVJ6auhc6V3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4675d82936d64d1bb9f08e4ab5ab0d2f75ab3538",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/867f3a78d7f22a812f6189c6ef4fb3ed3f74f6ad",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9f662c8e81ebe313cd76f2d8936e1d3e2a4fa89e",
"width": 64,
"height": 64
}
],
"id": "1HUMjB15ARg96KIypcGzYY"
},
"0YEmNXaNDq03tfgFmG4MOj": {
"name": "Black Monk Time",
"release_date": "1966-03-01",
"uri": "spotify:album:0YEmNXaNDq03tfgFmG4MOj",
"artists": [
{
"name": "The Monks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3VTNuQRp2wjrWzZX6CXxiy"
},
"uri": "spotify:artist:3VTNuQRp2wjrWzZX6CXxiy",
"href": "https://api.spotify.com/v1/artists/3VTNuQRp2wjrWzZX6CXxiy",
"type": "artist",
"id": "3VTNuQRp2wjrWzZX6CXxiy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/948ec436cfb20e6c2312d36b8ce3cb283306df4f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b14b4985e0c107fc8fec05f74e74690cad04f820",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ee6b7d11d4f1ebe5f5d6149ee853e0b25d26bc67",
"width": 64,
"height": 64
}
],
"id": "0YEmNXaNDq03tfgFmG4MOj"
},
"7rIwXFX7SXc8FVBMUnRIvJ": {
"name": "Gold",
"release_date": "2001-09-24",
"uri": "spotify:album:7rIwXFX7SXc8FVBMUnRIvJ",
"artists": [
{
"name": "Ryan Adams",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2qc41rNTtdLK0tV3mJn2Pm"
},
"uri": "spotify:artist:2qc41rNTtdLK0tV3mJn2Pm",
"href": "https://api.spotify.com/v1/artists/2qc41rNTtdLK0tV3mJn2Pm",
"type": "artist",
"id": "2qc41rNTtdLK0tV3mJn2Pm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6184d04b71730a8624bf3442d32b687891eecc15",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/e71b85a0a809a2d1fc517b49fe76f1ae1b6790cc",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/0569c68d59f07d0fdb5a2c6c9ce3b0be0517aad1",
"width": 64,
"height": 63
}
],
"id": "7rIwXFX7SXc8FVBMUnRIvJ"
},
"2wz3P1w89gQd3iXdmF1IA5": {
"name": "KE*A*H** (Psalm 69)",
"release_date": "1992-07-10",
"uri": "spotify:album:2wz3P1w89gQd3iXdmF1IA5",
"artists": [
{
"name": "Ministry",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1DXylZlWbVvlckNqwvjTEt"
},
"uri": "spotify:artist:1DXylZlWbVvlckNqwvjTEt",
"href": "https://api.spotify.com/v1/artists/1DXylZlWbVvlckNqwvjTEt",
"type": "artist",
"id": "1DXylZlWbVvlckNqwvjTEt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0b0d7053ad62eba244d227b8edc84aec563eadc4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/331a654bff1a81b6dc274f23891406bd14aff5be",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bc1322a9ce6711a5a8eaba9832d497df3ac27ff4",
"width": 64,
"height": 64
}
],
"id": "2wz3P1w89gQd3iXdmF1IA5"
},
"6S4f7yDtJlS0iQMEuCtIF0": {
"name": "Duck Rock",
"release_date": "1983",
"uri": "spotify:album:6S4f7yDtJlS0iQMEuCtIF0",
"artists": [
{
"name": "Malcolm McLaren",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4ihCM8I0fpWodgjo0mTlhZ"
},
"uri": "spotify:artist:4ihCM8I0fpWodgjo0mTlhZ",
"href": "https://api.spotify.com/v1/artists/4ihCM8I0fpWodgjo0mTlhZ",
"type": "artist",
"id": "4ihCM8I0fpWodgjo0mTlhZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ab79131de4baa4feffa58a82e6241385fac08df0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a7242d87a1b0f02cc78d3b7c95ceb68faeaf6094",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4c1a8589395c460fe17fb9e2f5ef19d8e294c4e6",
"width": 64,
"height": 64
}
],
"id": "6S4f7yDtJlS0iQMEuCtIF0"
},
"3icMmcNKFULWPSodX8jDEb": {
"name": "Underwater Moonlight",
"release_date": "1980",
"uri": "spotify:album:3icMmcNKFULWPSodX8jDEb",
"artists": [
{
"name": "The Soft Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/046wtejcUX9rhlzw2nlveT"
},
"uri": "spotify:artist:046wtejcUX9rhlzw2nlveT",
"href": "https://api.spotify.com/v1/artists/046wtejcUX9rhlzw2nlveT",
"type": "artist",
"id": "046wtejcUX9rhlzw2nlveT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/97350fd87bc05b253ea07dc70d4e6bd90d8097a9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/48f613ad1d865f8a9aedd8056a2240c0e5617f7b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3973b0ba445f325dca1c01f35b98190ff15f8cab",
"width": 64,
"height": 64
}
],
"id": "3icMmcNKFULWPSodX8jDEb"
},
"0745mDdMqet9J5nO5x7IQS": {
"name": "The Rise and Fall of Ziggy Stardust and the Spiders from Mars (Remastered Version)",
"release_date": "1972-06-06",
"uri": "spotify:album:0745mDdMqet9J5nO5x7IQS",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2e270fba66caa86720fdc1ab59fb9a7bb4717e5c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/45f499572ed94edaedef7062d8e6fb2a7316f763",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/008dcd1b69e41fdabadb35f610278b1ac3d7bb5f",
"width": 64,
"height": 64
}
],
"id": "0745mDdMqet9J5nO5x7IQS"
},
"1XsXHctYSQNyAd9BANCk2B": {
"name": "Sign 'O' The Times",
"release_date": "1987-03-30",
"uri": "spotify:album:1XsXHctYSQNyAd9BANCk2B",
"artists": [
{
"name": "Prince",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5a2EaR3hamoenG9rDuVn8j"
},
"uri": "spotify:artist:5a2EaR3hamoenG9rDuVn8j",
"href": "https://api.spotify.com/v1/artists/5a2EaR3hamoenG9rDuVn8j",
"type": "artist",
"id": "5a2EaR3hamoenG9rDuVn8j"
}
],
"images": [
{
"url": "https://i.scdn.co/image/419de70eef3d050b08020d1bca8a456bc69e95cd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ef092f3c3d75f8284b7f590e3ebc7d5e97bc06c6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/aa49cb193e79499169192772c915cf3a5f3df9c6",
"width": 64,
"height": 64
}
],
"id": "1XsXHctYSQNyAd9BANCk2B"
},
"79BolrDAU59MwJAa2jqwhi": {
"name": "Sunshine Superman - The Very Best Of Donovan",
"release_date": "2002",
"uri": "spotify:album:79BolrDAU59MwJAa2jqwhi",
"artists": [
{
"name": "Donovan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6vLlQYujOujIrm7zAKzEdG"
},
"uri": "spotify:artist:6vLlQYujOujIrm7zAKzEdG",
"href": "https://api.spotify.com/v1/artists/6vLlQYujOujIrm7zAKzEdG",
"type": "artist",
"id": "6vLlQYujOujIrm7zAKzEdG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6c2fa072d3ebeee162dde4aa2e4fafc25e6570e9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5147eb236de4a7444a1e8f414dc9d15d68145f2a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/514fa05f9977a9d16b3f43babbb49bc121f5a006",
"width": 64,
"height": 64
}
],
"id": "79BolrDAU59MwJAa2jqwhi"
},
"006Qsi10luS9xEBAcIWGTf": {
"name": "Automatic For The People",
"release_date": "1992-10-06",
"uri": "spotify:album:006Qsi10luS9xEBAcIWGTf",
"artists": [
{
"name": "R.E.M.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4KWTAlx2RvbpseOGMEmROg"
},
"uri": "spotify:artist:4KWTAlx2RvbpseOGMEmROg",
"href": "https://api.spotify.com/v1/artists/4KWTAlx2RvbpseOGMEmROg",
"type": "artist",
"id": "4KWTAlx2RvbpseOGMEmROg"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b58510fd507d689a50bd1a5616beb40df3847e95",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7ccf85b50307c9d32ec24ba26b673287fed84e42",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3759cf28389691695df43ab000c789366869d202",
"width": 64,
"height": 64
}
],
"id": "006Qsi10luS9xEBAcIWGTf"
},
"5B4PYA7wNN4WdEXdIJu58a": {
"name": "Ten",
"release_date": "1991-08-27",
"uri": "spotify:album:5B4PYA7wNN4WdEXdIJu58a",
"artists": [
{
"name": "Pearl Jam",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1w5Kfo2jwwIPruYS2UWh56"
},
"uri": "spotify:artist:1w5Kfo2jwwIPruYS2UWh56",
"href": "https://api.spotify.com/v1/artists/1w5Kfo2jwwIPruYS2UWh56",
"type": "artist",
"id": "1w5Kfo2jwwIPruYS2UWh56"
}
],
"images": [
{
"url": "https://i.scdn.co/image/742b73a04e074ca04bb48292f31e4df04bd61394",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/42bb4e98900ff6cbf1968f2908a1dff1754d67f4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2bb9a42b96a86c6bc1c0443066bc98ca9db62e7d",
"width": 64,
"height": 64
}
],
"id": "5B4PYA7wNN4WdEXdIJu58a"
},
"42bZeAnOGNE7wIv1gyc3Ai": {
"name": "Buck Owens - I\u2019ve Got a Tiger By the Tail",
"release_date": "2012-02-07",
"uri": "spotify:album:42bZeAnOGNE7wIv1gyc3Ai",
"artists": [
{
"name": "Buck Owens",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2FMZn5P3WATd7Il6FgPJNu"
},
"uri": "spotify:artist:2FMZn5P3WATd7Il6FgPJNu",
"href": "https://api.spotify.com/v1/artists/2FMZn5P3WATd7Il6FgPJNu",
"type": "artist",
"id": "2FMZn5P3WATd7Il6FgPJNu"
}
],
"images": [
{
"url": "https://i.scdn.co/image/de6133b52ece55f14644de20fb8c51717a52339c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0a31b6a25110d55af37337851161a2309eba11c6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5a18519067386f0c0fec0bc7619082f457e95499",
"width": 64,
"height": 64
}
],
"id": "42bZeAnOGNE7wIv1gyc3Ai"
},
"1at2GIPfbUeGwewAUQr4lw": {
"name": "Life's Too Good",
"release_date": "1988",
"uri": "spotify:album:1at2GIPfbUeGwewAUQr4lw",
"artists": [
{
"name": "The Sugarcubes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1G0Xwj8mza6b03iYkVdzDP"
},
"uri": "spotify:artist:1G0Xwj8mza6b03iYkVdzDP",
"href": "https://api.spotify.com/v1/artists/1G0Xwj8mza6b03iYkVdzDP",
"type": "artist",
"id": "1G0Xwj8mza6b03iYkVdzDP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8d428ed40f2981c5d4b0db9aa6123b4981a939c9",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/07828f91a785b891c2d7633e57aaa1368a11c199",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/f9b601e90cfa4c964a5e926af6bb93d9882290da",
"width": 64,
"height": 64
}
],
"id": "1at2GIPfbUeGwewAUQr4lw"
},
"2hR5HQzHdxgAiAjyvGqSI3": {
"name": "Southern Rock Opera",
"release_date": "2001",
"uri": "spotify:album:2hR5HQzHdxgAiAjyvGqSI3",
"artists": [
{
"name": "Drive-By Truckers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1rXr1ZnvbRoYBaedIl9v4v"
},
"uri": "spotify:artist:1rXr1ZnvbRoYBaedIl9v4v",
"href": "https://api.spotify.com/v1/artists/1rXr1ZnvbRoYBaedIl9v4v",
"type": "artist",
"id": "1rXr1ZnvbRoYBaedIl9v4v"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bd2c94a0fbdf35fdf81a9f162126633eb434a984",
"width": 640,
"height": 626
},
{
"url": "https://i.scdn.co/image/f8a4a58cae826073f6215f1bc5b994dbedcb5698",
"width": 300,
"height": 294
},
{
"url": "https://i.scdn.co/image/3e1c970c6a8e8ba3d3db5695ad39541f05c3d026",
"width": 64,
"height": 63
}
],
"id": "2hR5HQzHdxgAiAjyvGqSI3"
},
"4svRRLCgfp7s3ZXhSOa909": {
"name": "More...Or Less. The Specials Live",
"release_date": "2012-08-03",
"uri": "spotify:album:4svRRLCgfp7s3ZXhSOa909",
"artists": [
{
"name": "The Specials",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6xnvNmSzmeOE1bLKnYXKW3"
},
"uri": "spotify:artist:6xnvNmSzmeOE1bLKnYXKW3",
"href": "https://api.spotify.com/v1/artists/6xnvNmSzmeOE1bLKnYXKW3",
"type": "artist",
"id": "6xnvNmSzmeOE1bLKnYXKW3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fcdfc979ffed673ef8669e5fb48bfe5840f92b08",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d74eafeaed4569c7ad1be3747d904ede97fe1a08",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7cf55b7660e3cd1ae4316378bd510146e13d3c4c",
"width": 64,
"height": 64
}
],
"id": "4svRRLCgfp7s3ZXhSOa909"
},
"35V5TZ6drqYeYOoXY1Mp0i": {
"name": "Blood And Chocolate",
"release_date": "1986",
"uri": "spotify:album:35V5TZ6drqYeYOoXY1Mp0i",
"artists": [
{
"name": "Elvis Costello & The Attractions",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4qmHkMxr6pTWh5Zo74odpH"
},
"uri": "spotify:artist:4qmHkMxr6pTWh5Zo74odpH",
"href": "https://api.spotify.com/v1/artists/4qmHkMxr6pTWh5Zo74odpH",
"type": "artist",
"id": "4qmHkMxr6pTWh5Zo74odpH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ce5c5dd0d9eada42ff53007260b37fe07e973655",
"width": 640,
"height": 576
},
{
"url": "https://i.scdn.co/image/3403b07deaaa728e57be08e7c092c73e78db7f43",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/4a9e09c3b3bd1d771940ef666aa5a91d11479693",
"width": 64,
"height": 58
}
],
"id": "35V5TZ6drqYeYOoXY1Mp0i"
},
"6lU1MDxi3TqhKnYNQm555u": {
"name": "Before And After Science",
"release_date": "1977-11-01",
"uri": "spotify:album:6lU1MDxi3TqhKnYNQm555u",
"artists": [
{
"name": "Brian Eno",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MSUfLeTdDEoZiJPDSBXgi"
},
"uri": "spotify:artist:7MSUfLeTdDEoZiJPDSBXgi",
"href": "https://api.spotify.com/v1/artists/7MSUfLeTdDEoZiJPDSBXgi",
"type": "artist",
"id": "7MSUfLeTdDEoZiJPDSBXgi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8bf9a4120cee816757b0c43adde59b54930b8627",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6a7be4b0e38341ae32eab61922cacb041c415a48",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2c5e9cc4fec3bc7e92387ed83e388050626d96a6",
"width": 64,
"height": 64
}
],
"id": "6lU1MDxi3TqhKnYNQm555u"
},
"1m8ybrw0umxg8FbBC3pH7K": {
"name": "New Gold Dream (81/82/83/84)",
"release_date": "1982-09-13",
"uri": "spotify:album:1m8ybrw0umxg8FbBC3pH7K",
"artists": [
{
"name": "Simple Minds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6hN9F0iuULZYWXppob22Aj"
},
"uri": "spotify:artist:6hN9F0iuULZYWXppob22Aj",
"href": "https://api.spotify.com/v1/artists/6hN9F0iuULZYWXppob22Aj",
"type": "artist",
"id": "6hN9F0iuULZYWXppob22Aj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f17cb27e357a37ed134b4d8231b651a42ad493dc",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6a29382a357061f13abf3274c96ded94f79c1654",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/250aa71363fd4725388117ec8f728630c437163e",
"width": 64,
"height": 64
}
],
"id": "1m8ybrw0umxg8FbBC3pH7K"
},
"5LeFF1RfG7fTnBg8yqwlYM": {
"name": "Olympia 64",
"release_date": "1964",
"uri": "spotify:album:5LeFF1RfG7fTnBg8yqwlYM",
"artists": [
{
"name": "Jacques Brel",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4RN2vlFWepLa46qQIU2PHs"
},
"uri": "spotify:artist:4RN2vlFWepLa46qQIU2PHs",
"href": "https://api.spotify.com/v1/artists/4RN2vlFWepLa46qQIU2PHs",
"type": "artist",
"id": "4RN2vlFWepLa46qQIU2PHs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/af5e430d25d9f2fbc3fd7927c06c3c7302379553",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/6253c6e5da73ba6a90126531edcce82423964582",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/1e90a30c696f53f4695affa97a6da9f7af27fa10",
"width": 64,
"height": 62
}
],
"id": "5LeFF1RfG7fTnBg8yqwlYM"
},
"6q5MEna6Fg46powSoeZJe3": {
"name": "The Number Of The Beast",
"release_date": "1982",
"uri": "spotify:album:6q5MEna6Fg46powSoeZJe3",
"artists": [
{
"name": "Iron Maiden",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6mdiAmATAx73kdxrNrnlao"
},
"uri": "spotify:artist:6mdiAmATAx73kdxrNrnlao",
"href": "https://api.spotify.com/v1/artists/6mdiAmATAx73kdxrNrnlao",
"type": "artist",
"id": "6mdiAmATAx73kdxrNrnlao"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c7f055ce60d0eade25266c339715f78bf5bb30b4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9a6870d886df9554420d37f782d07f7e5f6092de",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c41aca8b5733349b5d75cdddab23ce3cb708f5e5",
"width": 64,
"height": 64
}
],
"id": "6q5MEna6Fg46powSoeZJe3"
},
"3VHW81P7SsBqPBGjiCJRXj": {
"name": "Young Americans",
"release_date": "1975-03-07",
"uri": "spotify:album:3VHW81P7SsBqPBGjiCJRXj",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7c3ca47b333cf0c0fcce0412e6d841d90a8a1f9b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7e3406b7781040f18d7916a8c8fff0da28361f7b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/647bf126bd7564a724dde36809a4b39ddc796099",
"width": 64,
"height": 64
}
],
"id": "3VHW81P7SsBqPBGjiCJRXj"
},
"0QOBJYviordwqHAgv5g9m3": {
"name": "Quiet Life",
"release_date": "1979",
"uri": "spotify:album:0QOBJYviordwqHAgv5g9m3",
"artists": [
{
"name": "Japan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7vPXrGlSGukcwpaPxUfKKR"
},
"uri": "spotify:artist:7vPXrGlSGukcwpaPxUfKKR",
"href": "https://api.spotify.com/v1/artists/7vPXrGlSGukcwpaPxUfKKR",
"type": "artist",
"id": "7vPXrGlSGukcwpaPxUfKKR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/abe1be54eceb8be11907f984f705fd3378f0bc1f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2741fe6876751e2be6e94e91aededa8585e17994",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a09a7fd6d143d3d2b96301514afe1cf6d53b33eb",
"width": 64,
"height": 64
}
],
"id": "0QOBJYviordwqHAgv5g9m3"
},
"0O6bPwyhtUKEONqPlrFjFf": {
"name": "Fractured Life",
"release_date": "2007-05-07",
"uri": "spotify:album:0O6bPwyhtUKEONqPlrFjFf",
"artists": [
{
"name": "Air Traffic",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22JIj3CQfRkAMH545pHNuY"
},
"uri": "spotify:artist:22JIj3CQfRkAMH545pHNuY",
"href": "https://api.spotify.com/v1/artists/22JIj3CQfRkAMH545pHNuY",
"type": "artist",
"id": "22JIj3CQfRkAMH545pHNuY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2a0ff78c90749c1a996b947f26da98907100b712",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/71906ae9973acb44eb33a805317770b3b52717cd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4efe007231cdda1d381934d405c3e4ff7a85c494",
"width": 64,
"height": 64
}
],
"id": "0O6bPwyhtUKEONqPlrFjFf"
},
"5VxTLm2IZsDQn3r9eX1qfa": {
"name": "Club Classics Vol. One",
"release_date": "1995-05-18",
"uri": "spotify:album:5VxTLm2IZsDQn3r9eX1qfa",
"artists": [
{
"name": "Soul II Soul",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2sIx6SmAMw9IBySG3Uj0jf"
},
"uri": "spotify:artist:2sIx6SmAMw9IBySG3Uj0jf",
"href": "https://api.spotify.com/v1/artists/2sIx6SmAMw9IBySG3Uj0jf",
"type": "artist",
"id": "2sIx6SmAMw9IBySG3Uj0jf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/abc770023af2f820f77fe62aa86819faac919b87",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3fac5b9fde8b7fcff1d16cb341273c7d11e3c88b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/45ffddb751b924c3f93d143cd1144ec56dda406f",
"width": 64,
"height": 64
}
],
"id": "5VxTLm2IZsDQn3r9eX1qfa"
},
"08Bjvwbg1cFsFfXSdhG23I": {
"name": "O.G. Original Gangster",
"release_date": "1991",
"uri": "spotify:album:08Bjvwbg1cFsFfXSdhG23I",
"artists": [
{
"name": "Ice T",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0eGh2jSWPBX5GuqIHoZJZG"
},
"uri": "spotify:artist:0eGh2jSWPBX5GuqIHoZJZG",
"href": "https://api.spotify.com/v1/artists/0eGh2jSWPBX5GuqIHoZJZG",
"type": "artist",
"id": "0eGh2jSWPBX5GuqIHoZJZG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/416df48479064996058eef8807376fd8fd78f803",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b4ecde540ec852092da7ee4a1b0ad10a2e9f6c7e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3124e79138c9e14ff2709d438132fa404d23834b",
"width": 64,
"height": 64
}
],
"id": "08Bjvwbg1cFsFfXSdhG23I"
},
"3wG8DcAJVgr7sbWNvKanzS": {
"name": "Birth Of The Cool (Rudy Van Gelder Edition)",
"release_date": "2000-12-28",
"uri": "spotify:album:3wG8DcAJVgr7sbWNvKanzS",
"artists": [
{
"name": "Miles Davis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0kbYTNQb4Pb1rPbbaF0pT4"
},
"uri": "spotify:artist:0kbYTNQb4Pb1rPbbaF0pT4",
"href": "https://api.spotify.com/v1/artists/0kbYTNQb4Pb1rPbbaF0pT4",
"type": "artist",
"id": "0kbYTNQb4Pb1rPbbaF0pT4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dc3f75dd45246eba18a9d01690d6f5aae333cd89",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/eb093c2c4092de06c7ee1034ad83856c42081cab",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c2ddecb93385a095c1b57a11bbeef540fbf5cc90",
"width": 64,
"height": 64
}
],
"id": "3wG8DcAJVgr7sbWNvKanzS"
},
"3yIFysHpeQKb1dAuHQICVW": {
"name": "Central Reservation",
"release_date": "1999-01-28",
"uri": "spotify:album:3yIFysHpeQKb1dAuHQICVW",
"artists": [
{
"name": "Beth Orton",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6cLEWhEKQl6nAvgr60M7zC"
},
"uri": "spotify:artist:6cLEWhEKQl6nAvgr60M7zC",
"href": "https://api.spotify.com/v1/artists/6cLEWhEKQl6nAvgr60M7zC",
"type": "artist",
"id": "6cLEWhEKQl6nAvgr60M7zC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4343b7bab42444d457d290856a8fb0697625e6f3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f43ec4e0694d85af745c615c5a2677f22b934f8d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eb98d45933de887fd945d73c7b2f46c99ec3c0bb",
"width": 64,
"height": 64
}
],
"id": "3yIFysHpeQKb1dAuHQICVW"
},
"7ojNQckNp7Tj2BkLJCiiUL": {
"name": "Sail Away",
"release_date": "2002-05-21",
"uri": "spotify:album:7ojNQckNp7Tj2BkLJCiiUL",
"artists": [
{
"name": "Randy Newman",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3HQyFCFFfJO3KKBlUfZsyW"
},
"uri": "spotify:artist:3HQyFCFFfJO3KKBlUfZsyW",
"href": "https://api.spotify.com/v1/artists/3HQyFCFFfJO3KKBlUfZsyW",
"type": "artist",
"id": "3HQyFCFFfJO3KKBlUfZsyW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/af1feeb53d6ac9925c5633acc0372311de98fed4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/14bf44a625fc896a21413fb0c49062e25831c0f9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/60b7b372ca935ff3c2fa5e76de71d81f5e2ce995",
"width": 64,
"height": 64
}
],
"id": "7ojNQckNp7Tj2BkLJCiiUL"
},
"3hErePSImi79vYHrSmypGw": {
"name": "Achtung Baby",
"release_date": "1991-11-18",
"uri": "spotify:album:3hErePSImi79vYHrSmypGw",
"artists": [
{
"name": "U2",
"external_urls": {
"spotify": "https://open.spotify.com/artist/51Blml2LZPmy7TTiAg47vQ"
},
"uri": "spotify:artist:51Blml2LZPmy7TTiAg47vQ",
"href": "https://api.spotify.com/v1/artists/51Blml2LZPmy7TTiAg47vQ",
"type": "artist",
"id": "51Blml2LZPmy7TTiAg47vQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a36762f6b7b96b9e6e525d1b2e1620a51ffa6c60",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0978ae288f1e1e17b1c3ecacfec2d354836877d1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c172343a1d2eb0e423a562b9a047c1e4dfbb4eec",
"width": 64,
"height": 64
}
],
"id": "3hErePSImi79vYHrSmypGw"
},
"3GmwKB1tgPZgXeRJZSm9WX": {
"name": "In The Wee Small Hours",
"release_date": "1955",
"uri": "spotify:album:3GmwKB1tgPZgXeRJZSm9WX",
"artists": [
{
"name": "Frank Sinatra",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1Mxqyy3pSjf8kZZL4QVxS0"
},
"uri": "spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0",
"href": "https://api.spotify.com/v1/artists/1Mxqyy3pSjf8kZZL4QVxS0",
"type": "artist",
"id": "1Mxqyy3pSjf8kZZL4QVxS0"
}
],
"images": [
{
"url": "https://i.scdn.co/image/85bbebd041d9171665780a9aa63660e4f2bbabaf",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/58493eba45ca8e8db54d0b6cddccaef511595cce",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c169b14c725b86ca08b8f07863b7e866d972e96b",
"width": 64,
"height": 64
}
],
"id": "3GmwKB1tgPZgXeRJZSm9WX"
},
"5XXzOIV2ZKw9GBALNoQoRr": {
"name": "The Coral",
"release_date": "2002-07-22",
"uri": "spotify:album:5XXzOIV2ZKw9GBALNoQoRr",
"artists": [
{
"name": "The Coral",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6OiHleP2bHM18dXq4aZQWt"
},
"uri": "spotify:artist:6OiHleP2bHM18dXq4aZQWt",
"href": "https://api.spotify.com/v1/artists/6OiHleP2bHM18dXq4aZQWt",
"type": "artist",
"id": "6OiHleP2bHM18dXq4aZQWt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b1eda891fb0724c25833bffd9f85ca560957238b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8792aca98e16b63cc264aebef5c0822cb7b1fe4f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/73b103ec1021ad1c8a06e5c2eba1bf8d91b8f493",
"width": 64,
"height": 64
}
],
"id": "5XXzOIV2ZKw9GBALNoQoRr"
},
"2pTyJZOTqFYn2UPP30zZNl": {
"name": "Songs From A Room",
"release_date": "1969-03-24",
"uri": "spotify:album:2pTyJZOTqFYn2UPP30zZNl",
"artists": [
{
"name": "Leonard Cohen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5l8VQNuIg0turYE1VtM9zV"
},
"uri": "spotify:artist:5l8VQNuIg0turYE1VtM9zV",
"href": "https://api.spotify.com/v1/artists/5l8VQNuIg0turYE1VtM9zV",
"type": "artist",
"id": "5l8VQNuIg0turYE1VtM9zV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0777b2e71e8111ff7b410134952da01cb1d3f0f3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/911600c39d2536a7e895557a42526c8fccbe32ca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/437feab5dcc4145ed544acc25e83686b13dba7aa",
"width": 64,
"height": 64
}
],
"id": "2pTyJZOTqFYn2UPP30zZNl"
},
"3706Kd7JanLR1mzDYrEiqm": {
"name": "Opus Dei",
"release_date": "1987",
"uri": "spotify:album:3706Kd7JanLR1mzDYrEiqm",
"artists": [
{
"name": "Laibach",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7l4LQfvN4yz8zbK4WY0AAg"
},
"uri": "spotify:artist:7l4LQfvN4yz8zbK4WY0AAg",
"href": "https://api.spotify.com/v1/artists/7l4LQfvN4yz8zbK4WY0AAg",
"type": "artist",
"id": "7l4LQfvN4yz8zbK4WY0AAg"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5fdbc7444a80f12fdb4d0a9991e5be43360b8c6d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4959db660c3f708d00ca0f6cacda6a84334d1229",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/36ca442cb8e688e53f5f07fca28c6db505bbdfe9",
"width": 64,
"height": 64
}
],
"id": "3706Kd7JanLR1mzDYrEiqm"
},
"29sIzkm9hHSRbTMXDofE1p": {
"name": "Second Toughest In The Infants",
"release_date": "1996",
"uri": "spotify:album:29sIzkm9hHSRbTMXDofE1p",
"artists": [
{
"name": "Underworld",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1PXHzxRDiLnjqNrRn2Xbsa"
},
"uri": "spotify:artist:1PXHzxRDiLnjqNrRn2Xbsa",
"href": "https://api.spotify.com/v1/artists/1PXHzxRDiLnjqNrRn2Xbsa",
"type": "artist",
"id": "1PXHzxRDiLnjqNrRn2Xbsa"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dafc60247f451d954ec430b79e15d11e65a03b3c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d470bc7e4b0c46351783f7901bc1e8ddb57166ea",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a8c7415a62070bce4256a88990afa0c28b44dac9",
"width": 64,
"height": 64
}
],
"id": "29sIzkm9hHSRbTMXDofE1p"
},
"2dL9Q5AtIv4Rw1L6lKcIUc": {
"name": "Slipknot 10th Anniversary Edition",
"release_date": "2009-09-09",
"uri": "spotify:album:2dL9Q5AtIv4Rw1L6lKcIUc",
"artists": [
{
"name": "Slipknot",
"external_urls": {
"spotify": "https://open.spotify.com/artist/05fG473iIaoy82BF1aGhL8"
},
"uri": "spotify:artist:05fG473iIaoy82BF1aGhL8",
"href": "https://api.spotify.com/v1/artists/05fG473iIaoy82BF1aGhL8",
"type": "artist",
"id": "05fG473iIaoy82BF1aGhL8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/47d1cc65a3b5ea1872d6ccf63cd484dcbe7ea4df",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/eb852de125c99319fbc5a58b6fc942c332dd68e4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a94c6eb5c336a767d298a87214d4631328ec8d30",
"width": 64,
"height": 64
}
],
"id": "2dL9Q5AtIv4Rw1L6lKcIUc"
},
"0dZF93WHyOhTWjz5EWM7yG": {
"name": "Fragile (Deluxe Version)",
"release_date": "1971-11-26",
"uri": "spotify:album:0dZF93WHyOhTWjz5EWM7yG",
"artists": [
{
"name": "Yes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7AC976RDJzL2asmZuz7qil"
},
"uri": "spotify:artist:7AC976RDJzL2asmZuz7qil",
"href": "https://api.spotify.com/v1/artists/7AC976RDJzL2asmZuz7qil",
"type": "artist",
"id": "7AC976RDJzL2asmZuz7qil"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d90f0c4ca9168a8d8496bcaea408f1878cb072d1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d3e172510e9ae5a38ae3c47f56a034a41628d898",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3f77834d4dd20c982415d307a911cf20ae36a12e",
"width": 64,
"height": 64
}
],
"id": "0dZF93WHyOhTWjz5EWM7yG"
},
"1Xi4oJP21fSeudrYdFI71n": {
"name": "The Scream (Remastered & Expanded)",
"release_date": "1978",
"uri": "spotify:album:1Xi4oJP21fSeudrYdFI71n",
"artists": [
{
"name": "Siouxsie And The Banshees",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1n65zfwYIj5kKEtNgxUlWb"
},
"uri": "spotify:artist:1n65zfwYIj5kKEtNgxUlWb",
"href": "https://api.spotify.com/v1/artists/1n65zfwYIj5kKEtNgxUlWb",
"type": "artist",
"id": "1n65zfwYIj5kKEtNgxUlWb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3c2b17758b41015ca19be90c37bed396f23f9eb1",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/fb78edaf12a2eb77395bab998477fc1621d44272",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/9f0794902146f261d7f3da8a673fa66843a49d6f",
"width": 64,
"height": 63
}
],
"id": "1Xi4oJP21fSeudrYdFI71n"
},
"2tm3Ht61kqqRZtIYsBjxEj": {
"name": "Stankonia",
"release_date": "2000-10-31",
"uri": "spotify:album:2tm3Ht61kqqRZtIYsBjxEj",
"artists": [
{
"name": "OutKast",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1G9G7WwrXka3Z1r7aIDjI7"
},
"uri": "spotify:artist:1G9G7WwrXka3Z1r7aIDjI7",
"href": "https://api.spotify.com/v1/artists/1G9G7WwrXka3Z1r7aIDjI7",
"type": "artist",
"id": "1G9G7WwrXka3Z1r7aIDjI7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e22454bac541aae05981a648afc407d9452ac52a",
"width": 640,
"height": 590
},
{
"url": "https://i.scdn.co/image/d9c8acf62afd165f9b50fac85688b54f4907557e",
"width": 300,
"height": 276
},
{
"url": "https://i.scdn.co/image/bf31fe66aa220c0e02bd19b36f2a7c06dc495d77",
"width": 64,
"height": 59
}
],
"id": "2tm3Ht61kqqRZtIYsBjxEj"
},
"0yCWLQW2MIBCoYjKedraUV": {
"name": "Trafalgar",
"release_date": "1971-09-01",
"uri": "spotify:album:0yCWLQW2MIBCoYjKedraUV",
"artists": [
{
"name": "Bee Gees",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1LZEQNv7sE11VDY3SdxQeN"
},
"uri": "spotify:artist:1LZEQNv7sE11VDY3SdxQeN",
"href": "https://api.spotify.com/v1/artists/1LZEQNv7sE11VDY3SdxQeN",
"type": "artist",
"id": "1LZEQNv7sE11VDY3SdxQeN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/be0f97c820e1f1d871b9e0737ec49fb08f3fe390",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f18acc356721c24beacee6060e57d90a2f73b8a8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b3f04b11dbf86dcd0a90ef6982a1a3d680c6facf",
"width": 64,
"height": 64
}
],
"id": "0yCWLQW2MIBCoYjKedraUV"
},
"37lWyRxkf3wQHCOlXM5WfX": {
"name": "Metallica",
"release_date": "1991-08-12",
"uri": "spotify:album:37lWyRxkf3wQHCOlXM5WfX",
"artists": [
{
"name": "Metallica",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ye2Wgw4gimLv2eAKyk1NB"
},
"uri": "spotify:artist:2ye2Wgw4gimLv2eAKyk1NB",
"href": "https://api.spotify.com/v1/artists/2ye2Wgw4gimLv2eAKyk1NB",
"type": "artist",
"id": "2ye2Wgw4gimLv2eAKyk1NB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bbd1f19477ee2cb30c1ae9cece461b156d2bb48d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/400dee6165a81c49b665d18637e3954213679ee8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/28674e2f4fbcbfb0028b6b8769af6fce1f44412f",
"width": 64,
"height": 64
}
],
"id": "37lWyRxkf3wQHCOlXM5WfX"
},
"3Zkggi5I9uH5x94DuN6u1S": {
"name": "Hits Back",
"release_date": "2013-08-23",
"uri": "spotify:album:3Zkggi5I9uH5x94DuN6u1S",
"artists": [
{
"name": "The Clash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3RGLhK1IP9jnYFH4BRFJBS"
},
"uri": "spotify:artist:3RGLhK1IP9jnYFH4BRFJBS",
"href": "https://api.spotify.com/v1/artists/3RGLhK1IP9jnYFH4BRFJBS",
"type": "artist",
"id": "3RGLhK1IP9jnYFH4BRFJBS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1f7dd1a0d867c5b60751ac8a99501debb9b3b968",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dd8afa8a257dea5c19e3e61f946c74611c4f9012",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/50be32827f5511056057b2c1106b17f233f02ca6",
"width": 64,
"height": 64
}
],
"id": "3Zkggi5I9uH5x94DuN6u1S"
},
"7unKb3Es7K7Uf8DdrHosoA": {
"name": "Tarkus",
"release_date": "1971",
"uri": "spotify:album:7unKb3Es7K7Uf8DdrHosoA",
"artists": [
{
"name": "Emerson, Lake & Palmer",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0nCiidE5GgDrc5kWN3NZgZ"
},
"uri": "spotify:artist:0nCiidE5GgDrc5kWN3NZgZ",
"href": "https://api.spotify.com/v1/artists/0nCiidE5GgDrc5kWN3NZgZ",
"type": "artist",
"id": "0nCiidE5GgDrc5kWN3NZgZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2095ba9b7e3bae9da60e39d64e2e2172288d2b7e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b8d6d19396354a8ee17ee5453806619dac354eb7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eacd959b190c740af8a446015b90dedb2e0145df",
"width": 64,
"height": 64
}
],
"id": "7unKb3Es7K7Uf8DdrHosoA"
},
"1Owp8VOaFEk4r7zkvGOHmE": {
"name": "Brown Sugar",
"release_date": "1995-07-03",
"uri": "spotify:album:1Owp8VOaFEk4r7zkvGOHmE",
"artists": [
{
"name": "D'Angelo",
"external_urls": {
"spotify": "https://open.spotify.com/artist/336vr2M3Va0FjyvB55lJEd"
},
"uri": "spotify:artist:336vr2M3Va0FjyvB55lJEd",
"href": "https://api.spotify.com/v1/artists/336vr2M3Va0FjyvB55lJEd",
"type": "artist",
"id": "336vr2M3Va0FjyvB55lJEd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d151175f64d87945a8207d9285ae74ae605a978c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dca4c614c96ff8d76414e2b9ea0cf515728289d8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/066e2b32e46041ec287fd0fb4a7b87ae048c3531",
"width": 64,
"height": 64
}
],
"id": "1Owp8VOaFEk4r7zkvGOHmE"
},
"3bzgbgiytguTDnwzflAZr2": {
"name": "Bookends",
"release_date": "1968-04-03",
"uri": "spotify:album:3bzgbgiytguTDnwzflAZr2",
"artists": [
{
"name": "Simon & Garfunkel",
"external_urls": {
"spotify": "https://open.spotify.com/artist/70cRZdQywnSFp9pnc2WTCE"
},
"uri": "spotify:artist:70cRZdQywnSFp9pnc2WTCE",
"href": "https://api.spotify.com/v1/artists/70cRZdQywnSFp9pnc2WTCE",
"type": "artist",
"id": "70cRZdQywnSFp9pnc2WTCE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ecee0ac48d28a1559815a3b2ddad98b367027af6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5bbedc46a9d07d85465ad1f86838963041261a4d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/10b48acaf2e0b44fd522bd6bdb1ba6c3dea7656d",
"width": 64,
"height": 64
}
],
"id": "3bzgbgiytguTDnwzflAZr2"
},
"3lAVvZxCFj5GZadoXB0g2u": {
"name": "Ute Lemper - Punishing Kiss",
"release_date": "2000-01-03",
"uri": "spotify:album:3lAVvZxCFj5GZadoXB0g2u",
"artists": [
{
"name": "Ute Lemper",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7DbmkhVKGV7UiwrbegHL9t"
},
"uri": "spotify:artist:7DbmkhVKGV7UiwrbegHL9t",
"href": "https://api.spotify.com/v1/artists/7DbmkhVKGV7UiwrbegHL9t",
"type": "artist",
"id": "7DbmkhVKGV7UiwrbegHL9t"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7fa82ff43a6e9ec1290f7626841c93b2b2adb616",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/b3df56d5fdf24d2a2681a582e003c9e9022742c7",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/16ad6ab082a3616fd25feb336ecbe6d51311edf4",
"width": 64,
"height": 63
}
],
"id": "3lAVvZxCFj5GZadoXB0g2u"
},
"0NGM3Ftwjw0dLNpAowmz3x": {
"name": "Aqualung",
"release_date": "1971-03-19",
"uri": "spotify:album:0NGM3Ftwjw0dLNpAowmz3x",
"artists": [
{
"name": "Jethro Tull",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6w6z8m4WXX7Tub4Rb6Lu7R"
},
"uri": "spotify:artist:6w6z8m4WXX7Tub4Rb6Lu7R",
"href": "https://api.spotify.com/v1/artists/6w6z8m4WXX7Tub4Rb6Lu7R",
"type": "artist",
"id": "6w6z8m4WXX7Tub4Rb6Lu7R"
}
],
"images": [
{
"url": "https://i.scdn.co/image/977c5868bda8829e4e309337d7e927bfe8211ae7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a5642f7ab6672a31cf642ce11ca0e90b6a0a9280",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d44f22e922455407decc8544432aa49d96f0d330",
"width": 64,
"height": 64
}
],
"id": "0NGM3Ftwjw0dLNpAowmz3x"
},
"6uoeezh45SYEb8lcT8gDTY": {
"name": "Another Green World",
"release_date": "1975-09-01",
"uri": "spotify:album:6uoeezh45SYEb8lcT8gDTY",
"artists": [
{
"name": "Brian Eno",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MSUfLeTdDEoZiJPDSBXgi"
},
"uri": "spotify:artist:7MSUfLeTdDEoZiJPDSBXgi",
"href": "https://api.spotify.com/v1/artists/7MSUfLeTdDEoZiJPDSBXgi",
"type": "artist",
"id": "7MSUfLeTdDEoZiJPDSBXgi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6a9d1989212633ef0c667dd908e427a5f3e358e9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0b6846c41480382e9c367806c506c04345962419",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f7257f34e36be2ff7641140971d603b2f6907d12",
"width": 64,
"height": 64
}
],
"id": "6uoeezh45SYEb8lcT8gDTY"
},
"3uFZf8rykoHo7XMIQVYW6r": {
"name": "Axis: Bold As Love",
"release_date": "1967-12-01",
"uri": "spotify:album:3uFZf8rykoHo7XMIQVYW6r",
"artists": [
{
"name": "Jimi Hendrix",
"external_urls": {
"spotify": "https://open.spotify.com/artist/776Uo845nYHJpNaStv1Ds4"
},
"uri": "spotify:artist:776Uo845nYHJpNaStv1Ds4",
"href": "https://api.spotify.com/v1/artists/776Uo845nYHJpNaStv1Ds4",
"type": "artist",
"id": "776Uo845nYHJpNaStv1Ds4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7727ed79cfb246f9a1f706d3583b5b259a099a7f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4b9994763bc8efbd74bd6b6429e111ad167523b7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d1211cda3ed4af2fac83212a5c08b19bf5013e37",
"width": 64,
"height": 64
}
],
"id": "3uFZf8rykoHo7XMIQVYW6r"
},
"1oZw4qudz6LEnJ5IAIFy8u": {
"name": "Jack Takes the Floor",
"release_date": "1958",
"uri": "spotify:album:1oZw4qudz6LEnJ5IAIFy8u",
"artists": [
{
"name": "Ramblin' Jack Elliott",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6iuM8yp1x2N0l6SONhyq4b"
},
"uri": "spotify:artist:6iuM8yp1x2N0l6SONhyq4b",
"href": "https://api.spotify.com/v1/artists/6iuM8yp1x2N0l6SONhyq4b",
"type": "artist",
"id": "6iuM8yp1x2N0l6SONhyq4b"
}
],
"images": [
{
"url": "https://i.scdn.co/image/aabb75d7f902f2c74792a2f7cdd1209f3d269c6b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/131d26f0cbb6354cacfa9c9fe46b29ea1da846e4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c1651a201ea970b4bcd83bbe7a8d05e60f3ee33c",
"width": 64,
"height": 64
}
],
"id": "1oZw4qudz6LEnJ5IAIFy8u"
},
"0PTVq4kaAAuROnfvfA7bHG": {
"name": "(What's The Story) Morning Glory",
"release_date": "1995-10-02",
"uri": "spotify:album:0PTVq4kaAAuROnfvfA7bHG",
"artists": [
{
"name": "Oasis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2DaxqgrOhkeH0fpeiQq2f4"
},
"uri": "spotify:artist:2DaxqgrOhkeH0fpeiQq2f4",
"href": "https://api.spotify.com/v1/artists/2DaxqgrOhkeH0fpeiQq2f4",
"type": "artist",
"id": "2DaxqgrOhkeH0fpeiQq2f4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e90f30204c762a8c6edf778ccef22e6e102da01b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/adb304d21869a2765f55ad2d58c0d314cfe984be",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/489eb5c23a3e4cce5e643cf30e381fbe29b97b62",
"width": 64,
"height": 64
}
],
"id": "0PTVq4kaAAuROnfvfA7bHG"
},
"5CnZjFfPDmxOX7KnWLLqpC": {
"name": "Protection",
"release_date": "1995-01-24",
"uri": "spotify:album:5CnZjFfPDmxOX7KnWLLqpC",
"artists": [
{
"name": "Massive Attack",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6FXMGgJwohJLUSr5nVlf9X"
},
"uri": "spotify:artist:6FXMGgJwohJLUSr5nVlf9X",
"href": "https://api.spotify.com/v1/artists/6FXMGgJwohJLUSr5nVlf9X",
"type": "artist",
"id": "6FXMGgJwohJLUSr5nVlf9X"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c8fd00465de6267eed8f9204aea75bad7d443b60",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1946f99c0408e958f88c1811f1d9d92df0a4b16f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/562049ffd99312eeb29f307067f9bad6475ec551",
"width": 64,
"height": 64
}
],
"id": "5CnZjFfPDmxOX7KnWLLqpC"
},
"0Em8m9kRctyH9S3MTXAHvY": {
"name": "Tres Hombres [Expanded & Remastered]",
"release_date": "1973-07-26",
"uri": "spotify:album:0Em8m9kRctyH9S3MTXAHvY",
"artists": [
{
"name": "ZZ Top",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2AM4ilv6UzW0uMRuqKtDgN"
},
"uri": "spotify:artist:2AM4ilv6UzW0uMRuqKtDgN",
"href": "https://api.spotify.com/v1/artists/2AM4ilv6UzW0uMRuqKtDgN",
"type": "artist",
"id": "2AM4ilv6UzW0uMRuqKtDgN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fe056d3355e07dbb8d502361c22dee401bfd25a3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/43c72019f87f646d2fa22e12b87c71a143e105c1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d1014989508a6f39132089476da2cb401c4cb8e4",
"width": 64,
"height": 64
}
],
"id": "0Em8m9kRctyH9S3MTXAHvY"
},
"2akjxkzFolkeV72Yyv5KrM": {
"name": "Court And Spark",
"release_date": "1974-01-17",
"uri": "spotify:album:2akjxkzFolkeV72Yyv5KrM",
"artists": [
{
"name": "Joni Mitchell",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5hW4L92KnC6dX9t7tYM4Ve"
},
"uri": "spotify:artist:5hW4L92KnC6dX9t7tYM4Ve",
"href": "https://api.spotify.com/v1/artists/5hW4L92KnC6dX9t7tYM4Ve",
"type": "artist",
"id": "5hW4L92KnC6dX9t7tYM4Ve"
}
],
"images": [
{
"url": "https://i.scdn.co/image/34c0135e46266d207bf11c5bc10d215f8a07aff2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2feb03af4de0c6e3c10453603155bc2dff4b1901",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/44496074ee8ff7de015f069d5375e2af6b80cb82",
"width": 64,
"height": 64
}
],
"id": "2akjxkzFolkeV72Yyv5KrM"
},
"1cHVBJY0QDg1ss4jsNXOvS": {
"name": "Ingenue",
"release_date": "1992-03-13",
"uri": "spotify:album:1cHVBJY0QDg1ss4jsNXOvS",
"artists": [
{
"name": "k.d. lang",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6W1BHDF0T4a4KYcSwzD586"
},
"uri": "spotify:artist:6W1BHDF0T4a4KYcSwzD586",
"href": "https://api.spotify.com/v1/artists/6W1BHDF0T4a4KYcSwzD586",
"type": "artist",
"id": "6W1BHDF0T4a4KYcSwzD586"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2da102c5dfe3c2665d90a35c109460b135468796",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a3e5a8225c384a98ce1085dfdc0115cf8698d8f7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/706ac340d6cbd893e8f07618bba8402bad59e095",
"width": 64,
"height": 64
}
],
"id": "1cHVBJY0QDg1ss4jsNXOvS"
},
"1jWmEhn3ggaL6isoyLfwBn": {
"name": "The Doors",
"release_date": "1967-01-04",
"uri": "spotify:album:1jWmEhn3ggaL6isoyLfwBn",
"artists": [
{
"name": "The Doors",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22WZ7M8sxp5THdruNY3gXt"
},
"uri": "spotify:artist:22WZ7M8sxp5THdruNY3gXt",
"href": "https://api.spotify.com/v1/artists/22WZ7M8sxp5THdruNY3gXt",
"type": "artist",
"id": "22WZ7M8sxp5THdruNY3gXt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d904cdba0fd16d6b2536b69082e69e529f5e099e",
"width": 640,
"height": 623
},
{
"url": "https://i.scdn.co/image/bc371b6b1115b50daf92dd2f6e211dc3aeff235e",
"width": 300,
"height": 292
},
{
"url": "https://i.scdn.co/image/c9a1e721b6c5426dffb9af741e29191d3809133f",
"width": 64,
"height": 62
}
],
"id": "1jWmEhn3ggaL6isoyLfwBn"
},
"69oeRoYEpSsNPGVuYRxfoB": {
"name": "...And Justice For All",
"release_date": "1988-08-25",
"uri": "spotify:album:69oeRoYEpSsNPGVuYRxfoB",
"artists": [
{
"name": "Metallica",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ye2Wgw4gimLv2eAKyk1NB"
},
"uri": "spotify:artist:2ye2Wgw4gimLv2eAKyk1NB",
"href": "https://api.spotify.com/v1/artists/2ye2Wgw4gimLv2eAKyk1NB",
"type": "artist",
"id": "2ye2Wgw4gimLv2eAKyk1NB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0b4e70e1ecbbe0085e5c169c447b1648cccf9b21",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/acb6fa806b845764a43775310e4378d2c9503f5f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cfd297084e8e46f48f123ca87f6d0f1c43db20e8",
"width": 64,
"height": 64
}
],
"id": "69oeRoYEpSsNPGVuYRxfoB"
},
"2S2ujEbkeFUblmiNjf1e0f": {
"name": "Heavy Weather",
"release_date": "1977",
"uri": "spotify:album:2S2ujEbkeFUblmiNjf1e0f",
"artists": [
{
"name": "Weather Report",
"external_urls": {
"spotify": "https://open.spotify.com/artist/162DCkd8aDKwvjBb74Gu8b"
},
"uri": "spotify:artist:162DCkd8aDKwvjBb74Gu8b",
"href": "https://api.spotify.com/v1/artists/162DCkd8aDKwvjBb74Gu8b",
"type": "artist",
"id": "162DCkd8aDKwvjBb74Gu8b"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7af7f992bc657d2e00bb09ada0219870b5c6173c",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/91d2dc664d67068ff275b6260724b45f6b17b65c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/304a1627a9e6fcaef18f3bc694500cbcdb9888fe",
"width": 64,
"height": 64
}
],
"id": "2S2ujEbkeFUblmiNjf1e0f"
},
"0JwHz5SSvpYWuuCNbtYZoV": {
"name": "Bridge Over Troubled Water",
"release_date": "1970-01-26",
"uri": "spotify:album:0JwHz5SSvpYWuuCNbtYZoV",
"artists": [
{
"name": "Simon & Garfunkel",
"external_urls": {
"spotify": "https://open.spotify.com/artist/70cRZdQywnSFp9pnc2WTCE"
},
"uri": "spotify:artist:70cRZdQywnSFp9pnc2WTCE",
"href": "https://api.spotify.com/v1/artists/70cRZdQywnSFp9pnc2WTCE",
"type": "artist",
"id": "70cRZdQywnSFp9pnc2WTCE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2731ab5abe0510ef27fde730fd0c24c8c191a8ad",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d77dc3db3a55f0bd5da1050995c67c7c1867b1a8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/dc906713d5a2f7bd8317b7fccfad9044cde6a602",
"width": 64,
"height": 64
}
],
"id": "0JwHz5SSvpYWuuCNbtYZoV"
},
"4pox3k0CGuwwAknR9GtcoX": {
"name": "She's So Unusual: A 30th Anniversary Celebration (Deluxe Edition)",
"release_date": "2014-03-28",
"uri": "spotify:album:4pox3k0CGuwwAknR9GtcoX",
"artists": [
{
"name": "Cyndi Lauper",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2BTZIqw0ntH9MvilQ3ewNY"
},
"uri": "spotify:artist:2BTZIqw0ntH9MvilQ3ewNY",
"href": "https://api.spotify.com/v1/artists/2BTZIqw0ntH9MvilQ3ewNY",
"type": "artist",
"id": "2BTZIqw0ntH9MvilQ3ewNY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2550aa0e9f3b16ac45f3f0f88d8450b13ec0076e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/49e108debb5e5428c8ab8a5d29125f973ac019c3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/de7dcc066e31f2652ab9a71045967bc5ff69064a",
"width": 64,
"height": 64
}
],
"id": "4pox3k0CGuwwAknR9GtcoX"
},
"6pJSkIvinycPLXlH8BG8lS": {
"name": "Virgin Suicides",
"release_date": "2000",
"uri": "spotify:album:6pJSkIvinycPLXlH8BG8lS",
"artists": [
{
"name": "Air",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1P6U1dCeHxPui5pIrGmndZ"
},
"uri": "spotify:artist:1P6U1dCeHxPui5pIrGmndZ",
"href": "https://api.spotify.com/v1/artists/1P6U1dCeHxPui5pIrGmndZ",
"type": "artist",
"id": "1P6U1dCeHxPui5pIrGmndZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/06d04cf0b5f233a63dce5d98dad425e5876b6a9c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2a7309b0bdddfa0b4ceadda320979e75f05d245c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/714bd06ab763f5d00613417c05079e8a5ce48376",
"width": 64,
"height": 64
}
],
"id": "6pJSkIvinycPLXlH8BG8lS"
},
"4GFWnwli2cVOBp2G1zqhV1": {
"name": "The Genius Of Ray Charles",
"release_date": "1959",
"uri": "spotify:album:4GFWnwli2cVOBp2G1zqhV1",
"artists": [
{
"name": "Ray Charles",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1eYhYunlNJlDoQhtYBvPsi"
},
"uri": "spotify:artist:1eYhYunlNJlDoQhtYBvPsi",
"href": "https://api.spotify.com/v1/artists/1eYhYunlNJlDoQhtYBvPsi",
"type": "artist",
"id": "1eYhYunlNJlDoQhtYBvPsi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3b38416a0d303dbb3255e67d2bb03d4a1139600c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/325ee8c3dad60f553e07e767792f21ff3c9cb75c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/532a449869097a027dc443a830dd5e34ea899238",
"width": 64,
"height": 64
}
],
"id": "4GFWnwli2cVOBp2G1zqhV1"
},
"0cJAiqO1obIJQGf4YI31q4": {
"name": "Stories From The City, Stories From The Sea",
"release_date": "2000-10-15",
"uri": "spotify:album:0cJAiqO1obIJQGf4YI31q4",
"artists": [
{
"name": "PJ Harvey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/12VaqyEhgwDRuFfEqbnrpz"
},
"uri": "spotify:artist:12VaqyEhgwDRuFfEqbnrpz",
"href": "https://api.spotify.com/v1/artists/12VaqyEhgwDRuFfEqbnrpz",
"type": "artist",
"id": "12VaqyEhgwDRuFfEqbnrpz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f1dd7827d0bbb75d69b82081c8049311b27ca371",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/d666c791fcc9f8e13842a5026e2d1eab672c7f77",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/4b898181c9da832fe919059f084da76d75d6628d",
"width": 64,
"height": 63
}
],
"id": "0cJAiqO1obIJQGf4YI31q4"
},
"5tXZfxvr2VaWibD74nw8VL": {
"name": "That's The Way Of The World",
"release_date": "1975-03-15",
"uri": "spotify:album:5tXZfxvr2VaWibD74nw8VL",
"artists": [
{
"name": "Earth, Wind & Fire",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4QQgXkCYTt3BlENzhyNETg"
},
"uri": "spotify:artist:4QQgXkCYTt3BlENzhyNETg",
"href": "https://api.spotify.com/v1/artists/4QQgXkCYTt3BlENzhyNETg",
"type": "artist",
"id": "4QQgXkCYTt3BlENzhyNETg"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bf1d3aebd24d9e33b9cf35c2a037668f8a146319",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0ca8bbfa67d324c06a290c9177385fd70f873ebd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9e066326a6ccc132516e96a7d77c25b0c53e03e9",
"width": 64,
"height": 64
}
],
"id": "5tXZfxvr2VaWibD74nw8VL"
},
"7MchqcYlL1fSLwZ20Z7zXP": {
"name": "Foxbase Alpha",
"release_date": "2009-01-01",
"uri": "spotify:album:7MchqcYlL1fSLwZ20Z7zXP",
"artists": [
{
"name": "Saint Etienne",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1N2FgBLehaq77UEdJhCt7f"
},
"uri": "spotify:artist:1N2FgBLehaq77UEdJhCt7f",
"href": "https://api.spotify.com/v1/artists/1N2FgBLehaq77UEdJhCt7f",
"type": "artist",
"id": "1N2FgBLehaq77UEdJhCt7f"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9936648142987ff97b40d85e355fadfafba8391f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8c15db6dbb2fb21e63bfef161e10c7ad457fd881",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c13a7e8a37ffe709979288c24c691d3913349563",
"width": 64,
"height": 64
}
],
"id": "7MchqcYlL1fSLwZ20Z7zXP"
},
"5V71sHQYacjPbHlLsLmk7i": {
"name": "Tommy (Remastered 2013 Super Deluxe Edition)",
"release_date": "1969-05-23",
"uri": "spotify:album:5V71sHQYacjPbHlLsLmk7i",
"artists": [
{
"name": "The Who",
"external_urls": {
"spotify": "https://open.spotify.com/artist/67ea9eGLXYMsO2eYQRui3w"
},
"uri": "spotify:artist:67ea9eGLXYMsO2eYQRui3w",
"href": "https://api.spotify.com/v1/artists/67ea9eGLXYMsO2eYQRui3w",
"type": "artist",
"id": "67ea9eGLXYMsO2eYQRui3w"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e2144d0b46aa5fbfc2193971f8adc7874de4136f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5daaea0ec82e562e7fae01b5200a5dee4a16d751",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4ca3b3e66782e6853e97e4a1dc3de6172e137b31",
"width": 64,
"height": 64
}
],
"id": "5V71sHQYacjPbHlLsLmk7i"
},
"7jfexk2w5aDI25njkN0UGg": {
"name": "Strangeways, Here We Come",
"release_date": "1987",
"uri": "spotify:album:7jfexk2w5aDI25njkN0UGg",
"artists": [
{
"name": "The Smiths",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3yY2gUcIsjMr8hjo51PoJ8"
},
"uri": "spotify:artist:3yY2gUcIsjMr8hjo51PoJ8",
"href": "https://api.spotify.com/v1/artists/3yY2gUcIsjMr8hjo51PoJ8",
"type": "artist",
"id": "3yY2gUcIsjMr8hjo51PoJ8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/db5376a4c54a790c0900616ea6db6d1248cc7e2d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/36e45af1c5002653d4aa16a568364cb300fe4390",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fff3ec63cb40f7381ea0c320c7180de7dad84d4e",
"width": 64,
"height": 64
}
],
"id": "7jfexk2w5aDI25njkN0UGg"
},
"244zFqV0oJvOTaC714IVvc": {
"name": "Darkdancer",
"release_date": "1999",
"uri": "spotify:album:244zFqV0oJvOTaC714IVvc",
"artists": [
{
"name": "Les Rythmes Digitales",
"external_urls": {
"spotify": "https://open.spotify.com/artist/02zMQvIvPXbVOLDdFqbFUn"
},
"uri": "spotify:artist:02zMQvIvPXbVOLDdFqbFUn",
"href": "https://api.spotify.com/v1/artists/02zMQvIvPXbVOLDdFqbFUn",
"type": "artist",
"id": "02zMQvIvPXbVOLDdFqbFUn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a84b2a050b25278be9ba7d6b5035f5e7d855c7bd",
"width": 600,
"height": 590
},
{
"url": "https://i.scdn.co/image/3c7a6459c90c7b362268e3764df65fa6b90bfc59",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/0cfc0bde85331bbcbb8340cac5723c590cb8b003",
"width": 64,
"height": 63
}
],
"id": "244zFqV0oJvOTaC714IVvc"
},
"7LDCjIEBt6XRKswMZhwDI2": {
"name": "Kenza",
"release_date": "1999-12-03",
"uri": "spotify:album:7LDCjIEBt6XRKswMZhwDI2",
"artists": [
{
"name": "Khaled",
"external_urls": {
"spotify": "https://open.spotify.com/artist/28ztjHIXceRRntmTUfnmUX"
},
"uri": "spotify:artist:28ztjHIXceRRntmTUfnmUX",
"href": "https://api.spotify.com/v1/artists/28ztjHIXceRRntmTUfnmUX",
"type": "artist",
"id": "28ztjHIXceRRntmTUfnmUX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/85a912b2d21c4f675db6b7fa7bfdf7ad152e67ab",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cf93cdf7b6e4adf7534508f719a4fda66d61d962",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3942415eb638f0cf83584ca336824f233ef8547e",
"width": 64,
"height": 64
}
],
"id": "7LDCjIEBt6XRKswMZhwDI2"
},
"3q8y9MBuOdOzwJb8QJfwBG": {
"name": "Exodus",
"release_date": "1977-01-01",
"uri": "spotify:album:3q8y9MBuOdOzwJb8QJfwBG",
"artists": [
{
"name": "Bob Marley & The Wailers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2QsynagSdAqZj3U9HgDzjD"
},
"uri": "spotify:artist:2QsynagSdAqZj3U9HgDzjD",
"href": "https://api.spotify.com/v1/artists/2QsynagSdAqZj3U9HgDzjD",
"type": "artist",
"id": "2QsynagSdAqZj3U9HgDzjD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1c2aa6ec6575e087ee42abd8e664d1c676a911a5",
"width": 640,
"height": 582
},
{
"url": "https://i.scdn.co/image/ce4719bc6bb02940cd5323a18f55b0e61e74f973",
"width": 300,
"height": 273
},
{
"url": "https://i.scdn.co/image/eb97c7ff38093c4b98e48f8c86a094a05def5b53",
"width": 64,
"height": 58
}
],
"id": "3q8y9MBuOdOzwJb8QJfwBG"
},
"1k3ldWSHD1BwUVHGiFMhyw": {
"name": "I Had Too Much To Dream (Last Night)",
"release_date": "1967",
"uri": "spotify:album:1k3ldWSHD1BwUVHGiFMhyw",
"artists": [
{
"name": "The Electric Prunes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1kkpNi8Ii5MhBMxmUhN5g9"
},
"uri": "spotify:artist:1kkpNi8Ii5MhBMxmUhN5g9",
"href": "https://api.spotify.com/v1/artists/1kkpNi8Ii5MhBMxmUhN5g9",
"type": "artist",
"id": "1kkpNi8Ii5MhBMxmUhN5g9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ed9a5d2fbbc984841251edc773b2ea5606e3f0e7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4234caf0c21fdbfa99d014595b2277a51f825dd7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4b4b85c7c1d8a91296525691971529462e70e63e",
"width": 64,
"height": 64
}
],
"id": "1k3ldWSHD1BwUVHGiFMhyw"
},
"4KdEMeJZeYMVDoEvJSnwuj": {
"name": "Paris 1919",
"release_date": "1973",
"uri": "spotify:album:4KdEMeJZeYMVDoEvJSnwuj",
"artists": [
{
"name": "John Cale",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5MWBg16f5UYiaSlyVhzlIW"
},
"uri": "spotify:artist:5MWBg16f5UYiaSlyVhzlIW",
"href": "https://api.spotify.com/v1/artists/5MWBg16f5UYiaSlyVhzlIW",
"type": "artist",
"id": "5MWBg16f5UYiaSlyVhzlIW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/09728ae7a842f0984a327337f00d29d489787712",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/ef41fcababaa036fafdaa4685e07acd72d18b5a6",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/ec2f8102106e397d22c8f6f06b8278225f0e0003",
"width": 64,
"height": 64
}
],
"id": "4KdEMeJZeYMVDoEvJSnwuj"
},
"1TdDJPPEFZCV7Gu6dwYdOs": {
"name": "Crime Of The Century (Deluxe)",
"release_date": "2010-01-01",
"uri": "spotify:album:1TdDJPPEFZCV7Gu6dwYdOs",
"artists": [
{
"name": "Supertramp",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3JsMj0DEzyWc0VDlHuy9Bx"
},
"uri": "spotify:artist:3JsMj0DEzyWc0VDlHuy9Bx",
"href": "https://api.spotify.com/v1/artists/3JsMj0DEzyWc0VDlHuy9Bx",
"type": "artist",
"id": "3JsMj0DEzyWc0VDlHuy9Bx"
}
],
"images": [
{
"url": "https://i.scdn.co/image/541fccd88eea771c4e60707ef3c3ea5dd7bd63ae",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9165409a331854e841672c30eaec9d0eacb85619",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a795db55b4a18473bc394a33c5f6a77d6af19849",
"width": 64,
"height": 64
}
],
"id": "1TdDJPPEFZCV7Gu6dwYdOs"
},
"0fwpH5fM5EvjmOVONRbL5o": {
"name": "One World",
"release_date": "1977",
"uri": "spotify:album:0fwpH5fM5EvjmOVONRbL5o",
"artists": [
{
"name": "John Martyn",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3JulrApLVT81sb2HkfwMks"
},
"uri": "spotify:artist:3JulrApLVT81sb2HkfwMks",
"href": "https://api.spotify.com/v1/artists/3JulrApLVT81sb2HkfwMks",
"type": "artist",
"id": "3JulrApLVT81sb2HkfwMks"
}
],
"images": [
{
"url": "https://i.scdn.co/image/475f16ab89ed7e435df4ee8971c10b6638f24693",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/b3f256728080f6f1165ffbd1e85867a6e1269aff",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/2ce8bf14dd7709da4d6718077ccd4550c13cc8e6",
"width": 64,
"height": 63
}
],
"id": "0fwpH5fM5EvjmOVONRbL5o"
},
"6WgGWYw6XXQyLTsWt7tXky": {
"name": "Graceland (25th Anniversary Deluxe Edition)",
"release_date": "1986-08-12",
"uri": "spotify:album:6WgGWYw6XXQyLTsWt7tXky",
"artists": [
{
"name": "Paul Simon",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2CvCyf1gEVhI0mX6aFXmVI"
},
"uri": "spotify:artist:2CvCyf1gEVhI0mX6aFXmVI",
"href": "https://api.spotify.com/v1/artists/2CvCyf1gEVhI0mX6aFXmVI",
"type": "artist",
"id": "2CvCyf1gEVhI0mX6aFXmVI"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2d30e0ac58fedb3ccd4c037c4497297b9286a3fb",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/758fd9098301a86cd92442b2efe3806a88e909da",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e7d1f1cb9cda10c454610992189bb4b2d0e959af",
"width": 64,
"height": 64
}
],
"id": "6WgGWYw6XXQyLTsWt7tXky"
},
"2Xy4kclO1HRW9TGMPgpK2B": {
"name": "Headquarters [Deluxe Edition]",
"release_date": "1967-05-22",
"uri": "spotify:album:2Xy4kclO1HRW9TGMPgpK2B",
"artists": [
{
"name": "The Monkees",
"external_urls": {
"spotify": "https://open.spotify.com/artist/320EPCSEezHt1rtbfwH6Ck"
},
"uri": "spotify:artist:320EPCSEezHt1rtbfwH6Ck",
"href": "https://api.spotify.com/v1/artists/320EPCSEezHt1rtbfwH6Ck",
"type": "artist",
"id": "320EPCSEezHt1rtbfwH6Ck"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a0161718e923eaded5709082dc3434adcf75d492",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8aaa5badec59505683f803f872ce25e411f52036",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/61efd67cd709b41b704a25a28c7f705f6407b875",
"width": 64,
"height": 64
}
],
"id": "2Xy4kclO1HRW9TGMPgpK2B"
},
"3UCpl2Q6HdjHV7LBWswhlx": {
"name": "Car Wheels On A Gravel Road (Deluxe Edition)",
"release_date": "2006-01-01",
"uri": "spotify:album:3UCpl2Q6HdjHV7LBWswhlx",
"artists": [
{
"name": "Lucinda Williams",
"external_urls": {
"spotify": "https://open.spotify.com/artist/60ht0hWRy1yjUDfNsLuHuP"
},
"uri": "spotify:artist:60ht0hWRy1yjUDfNsLuHuP",
"href": "https://api.spotify.com/v1/artists/60ht0hWRy1yjUDfNsLuHuP",
"type": "artist",
"id": "60ht0hWRy1yjUDfNsLuHuP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/63d7299a72e92ff07612b2a79468b12a0327674d",
"width": 640,
"height": 578
},
{
"url": "https://i.scdn.co/image/2e029af1e7cd22301b356d6d7264cc6f71c68ec8",
"width": 300,
"height": 271
},
{
"url": "https://i.scdn.co/image/aeaad38e1eda3723c2c7fd1df5fa5697fd73e8d4",
"width": 64,
"height": 58
}
],
"id": "3UCpl2Q6HdjHV7LBWswhlx"
},
"1MpYGjBsBZm2wW8fvf10OO": {
"name": "Fifth Dimension",
"release_date": "1966-07-18",
"uri": "spotify:album:1MpYGjBsBZm2wW8fvf10OO",
"artists": [
{
"name": "The Byrds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1PCZpxHJz7WAMF8EEq8bfc"
},
"uri": "spotify:artist:1PCZpxHJz7WAMF8EEq8bfc",
"href": "https://api.spotify.com/v1/artists/1PCZpxHJz7WAMF8EEq8bfc",
"type": "artist",
"id": "1PCZpxHJz7WAMF8EEq8bfc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3c6e11e3b27091c882244a0c353535dc504063fb",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8cbbe9f241d964fb06ce8c021b6e6e7229f8368a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8331b2eecdba21b5c3f27035908023491aac7d84",
"width": 64,
"height": 64
}
],
"id": "1MpYGjBsBZm2wW8fvf10OO"
},
"2xk6vjune34Ym0oUumMeaC": {
"name": "Hard Again",
"release_date": "1977",
"uri": "spotify:album:2xk6vjune34Ym0oUumMeaC",
"artists": [
{
"name": "Muddy Waters",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R"
},
"uri": "spotify:artist:4y6J8jwRAwO4dssiSmN91R",
"href": "https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R",
"type": "artist",
"id": "4y6J8jwRAwO4dssiSmN91R"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5efe3eae336f5fe962e200a92bd5caab0367a243",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3626bcf75f21aca1156d0ac65f21827bd593947a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/97cb0044edca69224db7d1424af05f4d7a08135b",
"width": 64,
"height": 64
}
],
"id": "2xk6vjune34Ym0oUumMeaC"
},
"2G9onFLGqlMJd1ThYf0vIB": {
"name": "Violent Femmes",
"release_date": "1983",
"uri": "spotify:album:2G9onFLGqlMJd1ThYf0vIB",
"artists": [
{
"name": "Violent Femmes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0rpMdBzQXf7aYRnu5fDBJy"
},
"uri": "spotify:artist:0rpMdBzQXf7aYRnu5fDBJy",
"href": "https://api.spotify.com/v1/artists/0rpMdBzQXf7aYRnu5fDBJy",
"type": "artist",
"id": "0rpMdBzQXf7aYRnu5fDBJy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/930d20a282dac0b097c446b1ba2d94dbbd3e76ad",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f7747e2399bdb8714d056131083d6a128c77af23",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/de07ceca3db976e449b357ad2e0c662264af37a2",
"width": 64,
"height": 64
}
],
"id": "2G9onFLGqlMJd1ThYf0vIB"
},
"0RHX9XECH8IVI3LNgWDpmQ": {
"name": "A Rush Of Blood To The Head",
"release_date": "2002-08-26",
"uri": "spotify:album:0RHX9XECH8IVI3LNgWDpmQ",
"artists": [
{
"name": "Coldplay",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU"
},
"uri": "spotify:artist:4gzpq5DPGxSnKTe4SA8HAU",
"href": "https://api.spotify.com/v1/artists/4gzpq5DPGxSnKTe4SA8HAU",
"type": "artist",
"id": "4gzpq5DPGxSnKTe4SA8HAU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1bdf88a14e02969b30edb37140441dd19cb44216",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4a408081438be137b71b1e8afafb98795d53e9d6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/100f1b23ce0fd03c290e84982f228ab92386f63d",
"width": 64,
"height": 64
}
],
"id": "0RHX9XECH8IVI3LNgWDpmQ"
},
"5wc12ZsmXNIlppTmNFZFLU": {
"name": "Parallel Lines",
"release_date": "1978-09-01",
"uri": "spotify:album:5wc12ZsmXNIlppTmNFZFLU",
"artists": [
{
"name": "Blondie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4tpUmLEVLCGFr93o8hFFIB"
},
"uri": "spotify:artist:4tpUmLEVLCGFr93o8hFFIB",
"href": "https://api.spotify.com/v1/artists/4tpUmLEVLCGFr93o8hFFIB",
"type": "artist",
"id": "4tpUmLEVLCGFr93o8hFFIB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a773acb3dba27c6451e5d081b25bbab3ad637415",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d823559ac6ffa4c84c7ebb3b7ac2e2caa5206aba",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8dde9e6375595b068a525061d58c3548c6545efb",
"width": 64,
"height": 64
}
],
"id": "5wc12ZsmXNIlppTmNFZFLU"
},
"6G9fHYDCoyEErUkHrFYfs4": {
"name": "Remedy",
"release_date": "1999-05-10",
"uri": "spotify:album:6G9fHYDCoyEErUkHrFYfs4",
"artists": [
{
"name": "Basement Jaxx",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4YrKBkKSVeqDamzBPWVnSJ"
},
"uri": "spotify:artist:4YrKBkKSVeqDamzBPWVnSJ",
"href": "https://api.spotify.com/v1/artists/4YrKBkKSVeqDamzBPWVnSJ",
"type": "artist",
"id": "4YrKBkKSVeqDamzBPWVnSJ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c8a333ed3589ad6745da0288b3629fade6d6601c",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/5d120e225efa0fb00040e81bae3763dd3566315b",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/c0cf0d76b285d2ebab30e134c07653fed97c5028",
"width": 64,
"height": 62
}
],
"id": "6G9fHYDCoyEErUkHrFYfs4"
},
"2Uc0HAF0Cj0LAgyzYZX5e3": {
"name": "The Miseducation of Lauryn Hill",
"release_date": "1998-08-25",
"uri": "spotify:album:2Uc0HAF0Cj0LAgyzYZX5e3",
"artists": [
{
"name": "Lauryn Hill",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3elP7hppV9gTjSKucnXELy"
},
"uri": "spotify:artist:3elP7hppV9gTjSKucnXELy",
"href": "https://api.spotify.com/v1/artists/3elP7hppV9gTjSKucnXELy",
"type": "artist",
"id": "3elP7hppV9gTjSKucnXELy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/43660a1f9fd70e3463a782e5f7948a54f4e4cc99",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/517be4be20d34be9a9b27e1ff72d974a3ad86238",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/427ac24b200fb7c6ae2a9d62ea499309702d8675",
"width": 64,
"height": 64
}
],
"id": "2Uc0HAF0Cj0LAgyzYZX5e3"
},
"1Gs6iohznUttOXNjQcAqIN": {
"name": "Zombie",
"release_date": "2009",
"uri": "spotify:album:1Gs6iohznUttOXNjQcAqIN",
"artists": [
{
"name": "Fela Kuti",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5CG9X521RDFWCuAhlo6QoR"
},
"uri": "spotify:artist:5CG9X521RDFWCuAhlo6QoR",
"href": "https://api.spotify.com/v1/artists/5CG9X521RDFWCuAhlo6QoR",
"type": "artist",
"id": "5CG9X521RDFWCuAhlo6QoR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a4f87a48eb6209e6ae9909e91f5f97ef38895d95",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/138e88570c9c1771caf31d90e70687cce34764ea",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f16103471d13b6dfddb1924dbf9f9adfae7e2bfa",
"width": 64,
"height": 64
}
],
"id": "1Gs6iohznUttOXNjQcAqIN"
},
"0cbpcdI4UySacPh5RCpDfo": {
"name": "Unknown Pleasures",
"release_date": "1979",
"uri": "spotify:album:0cbpcdI4UySacPh5RCpDfo",
"artists": [
{
"name": "Joy Division",
"external_urls": {
"spotify": "https://open.spotify.com/artist/432R46LaYsJZV2Gmc4jUV5"
},
"uri": "spotify:artist:432R46LaYsJZV2Gmc4jUV5",
"href": "https://api.spotify.com/v1/artists/432R46LaYsJZV2Gmc4jUV5",
"type": "artist",
"id": "432R46LaYsJZV2Gmc4jUV5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/95929b7572aebd6ad79cb066a6647606bcf4cd3c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/faaa85287c58815147f471495fb97df2d1c3fa32",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7333b5a6bc02fb5a42fe459f4aa0248e2f80c7d8",
"width": 64,
"height": 64
}
],
"id": "0cbpcdI4UySacPh5RCpDfo"
},
"0FjSKIL4J4eJM7GnkJNtWL": {
"name": "Tidal",
"release_date": "1996-05-23",
"uri": "spotify:album:0FjSKIL4J4eJM7GnkJNtWL",
"artists": [
{
"name": "Fiona Apple",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3g2kUQ6tHLLbmkV7T4GPtL"
},
"uri": "spotify:artist:3g2kUQ6tHLLbmkV7T4GPtL",
"href": "https://api.spotify.com/v1/artists/3g2kUQ6tHLLbmkV7T4GPtL",
"type": "artist",
"id": "3g2kUQ6tHLLbmkV7T4GPtL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/578db65f8bc40b62874668ccf15720c594c0a3c5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0c1c28d8d93d26e0f95a86d16b718af370fdc2f2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2c7581db9ce26d13e4bc8287d107b8ebcf35f821",
"width": 64,
"height": 64
}
],
"id": "0FjSKIL4J4eJM7GnkJNtWL"
},
"36IxIOGEBAXVozDSiVs09B": {
"name": "Toys In The Attic",
"release_date": "1975",
"uri": "spotify:album:36IxIOGEBAXVozDSiVs09B",
"artists": [
{
"name": "Aerosmith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7Ey4PD4MYsKc5I2dolUwbH"
},
"uri": "spotify:artist:7Ey4PD4MYsKc5I2dolUwbH",
"href": "https://api.spotify.com/v1/artists/7Ey4PD4MYsKc5I2dolUwbH",
"type": "artist",
"id": "7Ey4PD4MYsKc5I2dolUwbH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6891cc1b976e0a24eae79bd6da15299695da6aea",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3a37fdb2d1e260fb79a879d83aad8331a2d9f475",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/06bb2838ee0f658b39809f86a14b5ca0fd48c62b",
"width": 64,
"height": 64
}
],
"id": "36IxIOGEBAXVozDSiVs09B"
},
"4lktnCTpQK5vV1im9Z3htY": {
"name": "Entertainment",
"release_date": "1979",
"uri": "spotify:album:4lktnCTpQK5vV1im9Z3htY",
"artists": [
{
"name": "Gang Of Four",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3AmWjMXXtBJOmNGpUFSOAl"
},
"uri": "spotify:artist:3AmWjMXXtBJOmNGpUFSOAl",
"href": "https://api.spotify.com/v1/artists/3AmWjMXXtBJOmNGpUFSOAl",
"type": "artist",
"id": "3AmWjMXXtBJOmNGpUFSOAl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0b8e220b65f0f9a3dbbfba8a5ed611577bda464b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/54a5f3a76472aeb846d0fd0b226ef8ef59b242dd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/499624cf45b96d2531ea3a66ad7e6f58a59eb008",
"width": 64,
"height": 64
}
],
"id": "4lktnCTpQK5vV1im9Z3htY"
},
"6W2Dg4Zf1clDeStniHimq1": {
"name": "Our Aim Is To Satisfy Red Snapper",
"release_date": "2000-10-09",
"uri": "spotify:album:6W2Dg4Zf1clDeStniHimq1",
"artists": [
{
"name": "Red Snapper",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1BQtFnxZvAvTCZgTMlED0Q"
},
"uri": "spotify:artist:1BQtFnxZvAvTCZgTMlED0Q",
"href": "https://api.spotify.com/v1/artists/1BQtFnxZvAvTCZgTMlED0Q",
"type": "artist",
"id": "1BQtFnxZvAvTCZgTMlED0Q"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f2609bea122a20cce79ed9a4ea73b8717593dd56",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9bf2a771d1dd6ddf6096f9a88b44daac0458561f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1c469ef7eaa5fd1b8765f47310fcbc44f2bbf527",
"width": 64,
"height": 64
}
],
"id": "6W2Dg4Zf1clDeStniHimq1"
},
"6BqoNCQsupSaLBkl8u1uME": {
"name": "Shaka Zulu",
"release_date": "1970-01-01",
"uri": "spotify:album:6BqoNCQsupSaLBkl8u1uME",
"artists": [
{
"name": "Ladysmith Black Mambazo",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3FdLhnmXynPvZkbILPpB6d"
},
"uri": "spotify:artist:3FdLhnmXynPvZkbILPpB6d",
"href": "https://api.spotify.com/v1/artists/3FdLhnmXynPvZkbILPpB6d",
"type": "artist",
"id": "3FdLhnmXynPvZkbILPpB6d"
}
],
"images": [
{
"url": "https://i.scdn.co/image/62acb09819173e3d1f3579d2c397ec95eacbbd44",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b9a1b1577ac9997aaf3f36b5da415d7c85115b16",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5fb846232747849a235149df176e3e3cfacb1b32",
"width": 64,
"height": 64
}
],
"id": "6BqoNCQsupSaLBkl8u1uME"
},
"1zCNrbPpz5OLSr6mSpPdKm": {
"name": "Greatest Hits",
"release_date": "2009-11-03",
"uri": "spotify:album:1zCNrbPpz5OLSr6mSpPdKm",
"artists": [
{
"name": "Foo Fighters",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7jy3rLJdDQY21OgRLCZ9sD"
},
"uri": "spotify:artist:7jy3rLJdDQY21OgRLCZ9sD",
"href": "https://api.spotify.com/v1/artists/7jy3rLJdDQY21OgRLCZ9sD",
"type": "artist",
"id": "7jy3rLJdDQY21OgRLCZ9sD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d181666ebeda1aa062a5f0250b85be6150badd0f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9ed1dc82d30f1b519a97659f401c2397cfd68878",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e08a4a69c8c83ecf2437f15ba706db3f35106a6b",
"width": 64,
"height": 64
}
],
"id": "1zCNrbPpz5OLSr6mSpPdKm"
},
"1LiJW9P04ZsMHux1obPGUq": {
"name": "White Light / White Heat (Deluxe Edition)",
"release_date": "1968-01-30",
"uri": "spotify:album:1LiJW9P04ZsMHux1obPGUq",
"artists": [
{
"name": "The Velvet Underground",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC"
},
"uri": "spotify:artist:1nJvji2KIlWSseXRSlNYsC",
"href": "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC",
"type": "artist",
"id": "1nJvji2KIlWSseXRSlNYsC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bb6a833971d6df04b17c918ac4fb2870a80fffed",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fe14ee6b1ffee0e9ecab65d087c4c50ff7439264",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a07271aeec1e0ea0a535c21090e9eff3cc646aff",
"width": 64,
"height": 64
}
],
"id": "1LiJW9P04ZsMHux1obPGUq"
},
"6myt0Ez6hGJIPQeZKgY8um": {
"name": "Forever Changes",
"release_date": "1967-11-01",
"uri": "spotify:album:6myt0Ez6hGJIPQeZKgY8um",
"artists": [
{
"name": "Love",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Q6OOkfssqoMSTtl11J5Uk"
},
"uri": "spotify:artist:3Q6OOkfssqoMSTtl11J5Uk",
"href": "https://api.spotify.com/v1/artists/3Q6OOkfssqoMSTtl11J5Uk",
"type": "artist",
"id": "3Q6OOkfssqoMSTtl11J5Uk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b75f62dc127de65f0f08dab5ab1fe0807c07f35",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/72c753398dc517ff137652a9d48d4ec9113491ee",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/fdbe62b34bda230349a50dc755d1ebf7ea9190b3",
"width": 64,
"height": 63
}
],
"id": "6myt0Ez6hGJIPQeZKgY8um"
},
"3z3HmV2Pq4y5ZMzW6prYrh": {
"name": "Pictures At An Exhibition",
"release_date": "2001",
"uri": "spotify:album:3z3HmV2Pq4y5ZMzW6prYrh",
"artists": [
{
"name": "Emerson, Lake & Palmer",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0nCiidE5GgDrc5kWN3NZgZ"
},
"uri": "spotify:artist:0nCiidE5GgDrc5kWN3NZgZ",
"href": "https://api.spotify.com/v1/artists/0nCiidE5GgDrc5kWN3NZgZ",
"type": "artist",
"id": "0nCiidE5GgDrc5kWN3NZgZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ebf71dbcc75e8488f89f21bf4167e6b9bdff37a1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7d411122abc56d6ad098f9b122fa2f4021f381bc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/761340e13c2ea466385db9be154896ecc50eb0f8",
"width": 64,
"height": 64
}
],
"id": "3z3HmV2Pq4y5ZMzW6prYrh"
},
"38lyLeszq1p2sck1lB53dq": {
"name": "Rattus Norvegicus",
"release_date": "1977",
"uri": "spotify:album:38lyLeszq1p2sck1lB53dq",
"artists": [
{
"name": "The Stranglers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0RUEHcBiENFEqxgicqS2ig"
},
"uri": "spotify:artist:0RUEHcBiENFEqxgicqS2ig",
"href": "https://api.spotify.com/v1/artists/0RUEHcBiENFEqxgicqS2ig",
"type": "artist",
"id": "0RUEHcBiENFEqxgicqS2ig"
}
],
"images": [
{
"url": "https://i.scdn.co/image/65d45ae0de2f5c4ff8de298c86b82dbf36e44e6e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6f5481efcca5ecc284eeddbdd73a1baafd6291db",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c405c2d362a6a78116c96f95035eba6044acfc2c",
"width": 64,
"height": 64
}
],
"id": "38lyLeszq1p2sck1lB53dq"
},
"3gxOtUSRzweDWBKlpj7cG6": {
"name": "Dummy",
"release_date": "1994-01-01",
"uri": "spotify:album:3gxOtUSRzweDWBKlpj7cG6",
"artists": [
{
"name": "Portishead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6liAMWkVf5LH7YR9yfFy1Y"
},
"uri": "spotify:artist:6liAMWkVf5LH7YR9yfFy1Y",
"href": "https://api.spotify.com/v1/artists/6liAMWkVf5LH7YR9yfFy1Y",
"type": "artist",
"id": "6liAMWkVf5LH7YR9yfFy1Y"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b72a514a7a7ba3cd9084192ca6dbe96ec69845bc",
"width": 631,
"height": 640
},
{
"url": "https://i.scdn.co/image/9ca833f19ec7df74eda25221b5d6abb9af3b4755",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/2d232105986681b3ea02c2dddd3541952663742f",
"width": 63,
"height": 64
}
],
"id": "3gxOtUSRzweDWBKlpj7cG6"
},
"3hSTADlFxeDx5Tncm3YfPB": {
"name": "You're Living All Over Me",
"release_date": "1987",
"uri": "spotify:album:3hSTADlFxeDx5Tncm3YfPB",
"artists": [
{
"name": "Dinosaur Jr.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/267VY6GX5LyU5c9M85ECZQ"
},
"uri": "spotify:artist:267VY6GX5LyU5c9M85ECZQ",
"href": "https://api.spotify.com/v1/artists/267VY6GX5LyU5c9M85ECZQ",
"type": "artist",
"id": "267VY6GX5LyU5c9M85ECZQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1a40ad5cfe11ed9e419f25d48faddcca107b61ec",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4fd50453364222d9530a244022e3dccc72cab36e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/869249831bbe764da2210dabfb158d2462b4a6ec",
"width": 64,
"height": 64
}
],
"id": "3hSTADlFxeDx5Tncm3YfPB"
},
"3VDxQFwfQHE1Gze1GK7Yoq": {
"name": "Lazer Guided Melodies",
"release_date": "1992-03-30",
"uri": "spotify:album:3VDxQFwfQHE1Gze1GK7Yoq",
"artists": [
{
"name": "Spiritualized",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6DKmuXxXASTF6xaJwcTfjv"
},
"uri": "spotify:artist:6DKmuXxXASTF6xaJwcTfjv",
"href": "https://api.spotify.com/v1/artists/6DKmuXxXASTF6xaJwcTfjv",
"type": "artist",
"id": "6DKmuXxXASTF6xaJwcTfjv"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0007a50b4bd69005ff9254cbeb245bc259368add",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/ac8a7e86ff594d35cf82e6842d27b3d2b368c564",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/92274e1280224f08f006951faa74bf215350c9fe",
"width": 64,
"height": 63
}
],
"id": "3VDxQFwfQHE1Gze1GK7Yoq"
},
"6cuNyrSmRjBeekioLdLkvI": {
"name": "Ray Of Light",
"release_date": "1998-03-03",
"uri": "spotify:album:6cuNyrSmRjBeekioLdLkvI",
"artists": [
{
"name": "Madonna",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6tbjWDEIzxoDsBA1FuhfPW"
},
"uri": "spotify:artist:6tbjWDEIzxoDsBA1FuhfPW",
"href": "https://api.spotify.com/v1/artists/6tbjWDEIzxoDsBA1FuhfPW",
"type": "artist",
"id": "6tbjWDEIzxoDsBA1FuhfPW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/246565c45ea4085d5b3889619fa1112ec6d42eed",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f89849d36862a9dd2807be1d6d07eb0159c26673",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cfa2d86696ff7cd8ea862f50ed05d086f1d66521",
"width": 64,
"height": 64
}
],
"id": "6cuNyrSmRjBeekioLdLkvI"
},
"1GJwrOcVkg2kCtI8RUZEdy": {
"name": "Beautiful Freak",
"release_date": "1996-01-01",
"uri": "spotify:album:1GJwrOcVkg2kCtI8RUZEdy",
"artists": [
{
"name": "Eels",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3zunDAtRDg7kflREzWAhxl"
},
"uri": "spotify:artist:3zunDAtRDg7kflREzWAhxl",
"href": "https://api.spotify.com/v1/artists/3zunDAtRDg7kflREzWAhxl",
"type": "artist",
"id": "3zunDAtRDg7kflREzWAhxl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4004a44cd71377c9f90606c92afc3c3a8f433e8a",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/681a7a50cf9ae86e2f82e6373c50957a605fa309",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/cf86f8a31981de77f63970b8df74fa802db963c7",
"width": 64,
"height": 63
}
],
"id": "1GJwrOcVkg2kCtI8RUZEdy"
},
"3ls7tE9D2SIvjTmRuEtsQY": {
"name": "Dare!",
"release_date": "1981",
"uri": "spotify:album:3ls7tE9D2SIvjTmRuEtsQY",
"artists": [
{
"name": "The Human League",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1aX2dmV8XoHYCOQRxjPESG"
},
"uri": "spotify:artist:1aX2dmV8XoHYCOQRxjPESG",
"href": "https://api.spotify.com/v1/artists/1aX2dmV8XoHYCOQRxjPESG",
"type": "artist",
"id": "1aX2dmV8XoHYCOQRxjPESG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6c79c64d4e0c7bbbfbc77e2841a7590c46c2b1fb",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/308b02bdc6e929b91a15f3bbc56f193b8a465f31",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ee8c9aa45cfd7b9988893da2ea33148d4e403500",
"width": 64,
"height": 64
}
],
"id": "3ls7tE9D2SIvjTmRuEtsQY"
},
"4L1Qw49gKwFuQwQovBxsKI": {
"name": "In-A-Gadda-Da-Vida",
"release_date": "1968-06-14",
"uri": "spotify:album:4L1Qw49gKwFuQwQovBxsKI",
"artists": [
{
"name": "Iron Butterfly",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3cdvlbCYf4WoBdy89RWkNS"
},
"uri": "spotify:artist:3cdvlbCYf4WoBdy89RWkNS",
"href": "https://api.spotify.com/v1/artists/3cdvlbCYf4WoBdy89RWkNS",
"type": "artist",
"id": "3cdvlbCYf4WoBdy89RWkNS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8fb00b6eb29df5cec438a90b284c6920ac97fc46",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8e9ec7d6132c97972fff032cab601e6bc5743f7f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e86f5d01022564a2698a6f2066ce0d478d86cd57",
"width": 64,
"height": 64
}
],
"id": "4L1Qw49gKwFuQwQovBxsKI"
},
"3I9Z1nDCL4E0cP62flcbI5": {
"name": "Appetite For Destruction",
"release_date": "1987",
"uri": "spotify:album:3I9Z1nDCL4E0cP62flcbI5",
"artists": [
{
"name": "Guns N' Roses",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3qm84nBOXUEQ2vnTfUTTFC"
},
"uri": "spotify:artist:3qm84nBOXUEQ2vnTfUTTFC",
"href": "https://api.spotify.com/v1/artists/3qm84nBOXUEQ2vnTfUTTFC",
"type": "artist",
"id": "3qm84nBOXUEQ2vnTfUTTFC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9161b5e282bbe652c80d7a364a6af8871a7a4d4e",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/257237fe469affd86b4d18bb3f81ee5ad2839159",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/d9503afbbd8f9a2580ff0bcc3437bf7b68fc016c",
"width": 64,
"height": 63
}
],
"id": "3I9Z1nDCL4E0cP62flcbI5"
},
"32NQ56VZDTXSH3SMv4XSGN": {
"name": "Machine Head (Remastered)",
"release_date": "1972-03-01",
"uri": "spotify:album:32NQ56VZDTXSH3SMv4XSGN",
"artists": [
{
"name": "Deep Purple",
"external_urls": {
"spotify": "https://open.spotify.com/artist/568ZhdwyaiCyOGJRtNYhWf"
},
"uri": "spotify:artist:568ZhdwyaiCyOGJRtNYhWf",
"href": "https://api.spotify.com/v1/artists/568ZhdwyaiCyOGJRtNYhWf",
"type": "artist",
"id": "568ZhdwyaiCyOGJRtNYhWf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/64e19950ef66f58f00c49ab078ff7f569f04bf51",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0405a5f1db4cc0078f8b3ef35855c628f01da76d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fb07a0b2555b38891d4a93b134d902a9d3516538",
"width": 64,
"height": 64
}
],
"id": "32NQ56VZDTXSH3SMv4XSGN"
},
"3H0cWLh4X4x5TB8TTkE3LE": {
"name": "Broken English",
"release_date": "1979",
"uri": "spotify:album:3H0cWLh4X4x5TB8TTkE3LE",
"artists": [
{
"name": "Marianne Faithfull",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7mlge4peaoNgzTsY6M32RB"
},
"uri": "spotify:artist:7mlge4peaoNgzTsY6M32RB",
"href": "https://api.spotify.com/v1/artists/7mlge4peaoNgzTsY6M32RB",
"type": "artist",
"id": "7mlge4peaoNgzTsY6M32RB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/788186664514d0afdabe33554cd1a361274c1bb6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c8675b6193b1bef2e9a2322ed53a0ae581d79358",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/053a72812d8f595b14759a8f9914b4759ea75c04",
"width": 64,
"height": 64
}
],
"id": "3H0cWLh4X4x5TB8TTkE3LE"
},
"5izHWBylmEjk1yTVPAYJWj": {
"name": "Licensed To Ill",
"release_date": "1986-11-15",
"uri": "spotify:album:5izHWBylmEjk1yTVPAYJWj",
"artists": [
{
"name": "Beastie Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/03r4iKL2g2442PT9n2UKsx"
},
"uri": "spotify:artist:03r4iKL2g2442PT9n2UKsx",
"href": "https://api.spotify.com/v1/artists/03r4iKL2g2442PT9n2UKsx",
"type": "artist",
"id": "03r4iKL2g2442PT9n2UKsx"
}
],
"images": [
{
"url": "https://i.scdn.co/image/54604f19dcab9d7dfe344efdc335519ff310d28f",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/3e5eed9ad426ab2e08d10b5f54440f7edf316c35",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/16669afd4c05cc9123eaaf638b9432675dd22f0a",
"width": 64,
"height": 63
}
],
"id": "5izHWBylmEjk1yTVPAYJWj"
},
"5z090LQztiqh13wYspQvKQ": {
"name": "Electric Ladyland",
"release_date": "1968-10-25",
"uri": "spotify:album:5z090LQztiqh13wYspQvKQ",
"artists": [
{
"name": "Jimi Hendrix",
"external_urls": {
"spotify": "https://open.spotify.com/artist/776Uo845nYHJpNaStv1Ds4"
},
"uri": "spotify:artist:776Uo845nYHJpNaStv1Ds4",
"href": "https://api.spotify.com/v1/artists/776Uo845nYHJpNaStv1Ds4",
"type": "artist",
"id": "776Uo845nYHJpNaStv1Ds4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d82a5f8cae828822c86944960e23a5bee8658d37",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dee867bbe7a3dd97a37212de86cd40166ebf6dc5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e4f132327d986c8c482f59c1284098533c4ca732",
"width": 64,
"height": 64
}
],
"id": "5z090LQztiqh13wYspQvKQ"
},
"6MH35oajuCbpS9YBmwTrPf": {
"name": "Last Of The Independents",
"release_date": "1994-06-01",
"uri": "spotify:album:6MH35oajuCbpS9YBmwTrPf",
"artists": [
{
"name": "Pretenders",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0GByy3DcfbQwDvXGCWmzv9"
},
"uri": "spotify:artist:0GByy3DcfbQwDvXGCWmzv9",
"href": "https://api.spotify.com/v1/artists/0GByy3DcfbQwDvXGCWmzv9",
"type": "artist",
"id": "0GByy3DcfbQwDvXGCWmzv9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9c0454548520a4dea0d7fa2feafbab64c79f51b2",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/da154b6e7f14a0cc982fb87d10a6be4c2267c985",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/1f013d11596fc817d8a9458296c6a3391b3d0ddb",
"width": 64,
"height": 64
}
],
"id": "6MH35oajuCbpS9YBmwTrPf"
},
"6PmH3vQpsBfkQdnDr4AzLs": {
"name": "Shadowland",
"release_date": "1988-04-15",
"uri": "spotify:album:6PmH3vQpsBfkQdnDr4AzLs",
"artists": [
{
"name": "k.d. lang",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6W1BHDF0T4a4KYcSwzD586"
},
"uri": "spotify:artist:6W1BHDF0T4a4KYcSwzD586",
"href": "https://api.spotify.com/v1/artists/6W1BHDF0T4a4KYcSwzD586",
"type": "artist",
"id": "6W1BHDF0T4a4KYcSwzD586"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8a37d844697c31a3f1a5215c4851ba55328045f6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/27d71f8e3e7c58593f84649272b9f0b896a6bf78",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/34862567995cf3f8d82350fdc1573909eb24b41e",
"width": 64,
"height": 64
}
],
"id": "6PmH3vQpsBfkQdnDr4AzLs"
},
"74jn28Kr29iyh8eZXSvnwi": {
"name": "Here Come The Warm Jets",
"release_date": "1974-01-01",
"uri": "spotify:album:74jn28Kr29iyh8eZXSvnwi",
"artists": [
{
"name": "Brian Eno",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MSUfLeTdDEoZiJPDSBXgi"
},
"uri": "spotify:artist:7MSUfLeTdDEoZiJPDSBXgi",
"href": "https://api.spotify.com/v1/artists/7MSUfLeTdDEoZiJPDSBXgi",
"type": "artist",
"id": "7MSUfLeTdDEoZiJPDSBXgi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1e7c93501d5c55ffdf4184ffcff7f48578ecbbd0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/527f37e4af623bdb958093218fb481b8cdfc6f6e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c4afdde0ec2fe8d17836111a5382ee9e54d04e90",
"width": 64,
"height": 64
}
],
"id": "74jn28Kr29iyh8eZXSvnwi"
},
"4RrOVT9WGLuZuUdeVKF1rm": {
"name": "Merle Haggard - I\u2019m a Lonesome Fugitive",
"release_date": "2014-10-30",
"uri": "spotify:album:4RrOVT9WGLuZuUdeVKF1rm",
"artists": [
{
"name": "Merle Haggard",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ptmyXoL7poH6Zq62h1QT9"
},
"uri": "spotify:artist:2ptmyXoL7poH6Zq62h1QT9",
"href": "https://api.spotify.com/v1/artists/2ptmyXoL7poH6Zq62h1QT9",
"type": "artist",
"id": "2ptmyXoL7poH6Zq62h1QT9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9e3aaabe7719f0fcd89a06d4b725fb53398393a3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f919e0ffbc1061b424ae9601ebb0f062f61cefca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9f462e8ab460c60d9b1dbccfdaf38d8fcedfccbc",
"width": 64,
"height": 64
}
],
"id": "4RrOVT9WGLuZuUdeVKF1rm"
},
"0apKBDnFXYmhlMYfXt5zCB": {
"name": "Sister",
"release_date": "1987",
"uri": "spotify:album:0apKBDnFXYmhlMYfXt5zCB",
"artists": [
{
"name": "Sonic Youth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5UqTO8smerMvxHYA5xsXb6"
},
"uri": "spotify:artist:5UqTO8smerMvxHYA5xsXb6",
"href": "https://api.spotify.com/v1/artists/5UqTO8smerMvxHYA5xsXb6",
"type": "artist",
"id": "5UqTO8smerMvxHYA5xsXb6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ca33b805fa75a12fefa791e30623ec698725d13e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f6ea84f5943e4c891a25354923b0fd77906fb7d7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a1b41e33edc613049d910678e748bae177dc4a2c",
"width": 64,
"height": 64
}
],
"id": "0apKBDnFXYmhlMYfXt5zCB"
},
"4jwO7dt0trrGu0ozSVNRgo": {
"name": "Kimono My House",
"release_date": "1951-01-01",
"uri": "spotify:album:4jwO7dt0trrGu0ozSVNRgo",
"artists": [
{
"name": "Sparks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7pwjGKaqnfkvS7eQbHaqyH"
},
"uri": "spotify:artist:7pwjGKaqnfkvS7eQbHaqyH",
"href": "https://api.spotify.com/v1/artists/7pwjGKaqnfkvS7eQbHaqyH",
"type": "artist",
"id": "7pwjGKaqnfkvS7eQbHaqyH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2b0f2f87a41e4ef93def9b081a25ab78ea570f52",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/90bbda34115c2d2fd6254ffeec865232bbcf92ab",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/388c6bb547a930f93c508977e49b6190bd5ee792",
"width": 64,
"height": 63
}
],
"id": "4jwO7dt0trrGu0ozSVNRgo"
},
"4z5O2IeF5CUgy4i6HUElIg": {
"name": "Scott 4",
"release_date": "1969",
"uri": "spotify:album:4z5O2IeF5CUgy4i6HUElIg",
"artists": [
{
"name": "Scott Walker",
"external_urls": {
"spotify": "https://open.spotify.com/artist/04tBaW21jyUfeP5iqiKBVq"
},
"uri": "spotify:artist:04tBaW21jyUfeP5iqiKBVq",
"href": "https://api.spotify.com/v1/artists/04tBaW21jyUfeP5iqiKBVq",
"type": "artist",
"id": "04tBaW21jyUfeP5iqiKBVq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b7044c438eac8fc714fe71b2c8ae561af6e76505",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4220056a9e54c97f20b18a780077b4828870357c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/70a5c38440232474fd811005ce0beb0e5584394d",
"width": 64,
"height": 64
}
],
"id": "4z5O2IeF5CUgy4i6HUElIg"
},
"0zKjnOsXxs63unPR6TWoHq": {
"name": "School's Out",
"release_date": "1972",
"uri": "spotify:album:0zKjnOsXxs63unPR6TWoHq",
"artists": [
{
"name": "Alice Cooper",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3EhbVgyfGd7HkpsagwL9GS"
},
"uri": "spotify:artist:3EhbVgyfGd7HkpsagwL9GS",
"href": "https://api.spotify.com/v1/artists/3EhbVgyfGd7HkpsagwL9GS",
"type": "artist",
"id": "3EhbVgyfGd7HkpsagwL9GS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/54f455c4d27f6a6e5c43a44c9da483aa0371b3b0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/73cbbe9220a9ac5235d7fc5280c0c866b4bd64b2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a17c65b89c38afa1a1754b3379958ee78d099ddb",
"width": 64,
"height": 64
}
],
"id": "0zKjnOsXxs63unPR6TWoHq"
},
"4UY90kcO4N9ZPBl4xPLvvU": {
"name": "Good Old Boys",
"release_date": "1974",
"uri": "spotify:album:4UY90kcO4N9ZPBl4xPLvvU",
"artists": [
{
"name": "Randy Newman",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3HQyFCFFfJO3KKBlUfZsyW"
},
"uri": "spotify:artist:3HQyFCFFfJO3KKBlUfZsyW",
"href": "https://api.spotify.com/v1/artists/3HQyFCFFfJO3KKBlUfZsyW",
"type": "artist",
"id": "3HQyFCFFfJO3KKBlUfZsyW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a9c4ea3497e8f7b882958802653fac6a4b8b083c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/110a6ad756c9217dfd983eca48e5912a5111704a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b6b69b6c43ed7cdcc51760f89d87a333ebe8dfda",
"width": 64,
"height": 64
}
],
"id": "4UY90kcO4N9ZPBl4xPLvvU"
},
"3nB9DKUlU5REI0SBYyh8yG": {
"name": "Bert Jansch",
"release_date": "1965",
"uri": "spotify:album:3nB9DKUlU5REI0SBYyh8yG",
"artists": [
{
"name": "Bert Jansch",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1FqG6mhiJbhbMg43ohCT6D"
},
"uri": "spotify:artist:1FqG6mhiJbhbMg43ohCT6D",
"href": "https://api.spotify.com/v1/artists/1FqG6mhiJbhbMg43ohCT6D",
"type": "artist",
"id": "1FqG6mhiJbhbMg43ohCT6D"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8ac02ca7d3d4b42f4837202f979859dc09f28cd7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a033ba61720c8a48ecd58c16a74e30e2eb52db2b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c8ff99e94fdd5d94708d86d1c511f3cf3b9e6d02",
"width": 64,
"height": 64
}
],
"id": "3nB9DKUlU5REI0SBYyh8yG"
},
"3FVsJiQMI7dp0RfTBdWtMW": {
"name": "Skylarking",
"release_date": "1986",
"uri": "spotify:album:3FVsJiQMI7dp0RfTBdWtMW",
"artists": [
{
"name": "XTC",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2qT62DYO8Ajb276vUJmvhz"
},
"uri": "spotify:artist:2qT62DYO8Ajb276vUJmvhz",
"href": "https://api.spotify.com/v1/artists/2qT62DYO8Ajb276vUJmvhz",
"type": "artist",
"id": "2qT62DYO8Ajb276vUJmvhz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/362878519be635fb53e125d2fd2d7288978d76a3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/49655c10c814f39945cd70dfc0b5a8ceb74d6fd3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bdb5ce9f3943d56ebba408bbf5d3a230133bf93e",
"width": 64,
"height": 64
}
],
"id": "3FVsJiQMI7dp0RfTBdWtMW"
},
"5WDwQd1NNzitecaWN7BoUB": {
"name": "Band On The Run",
"release_date": "1973-12-05",
"uri": "spotify:album:5WDwQd1NNzitecaWN7BoUB",
"artists": [
{
"name": "Paul McCartney",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4STHEaNw4mPZ2tzheohgXB"
},
"uri": "spotify:artist:4STHEaNw4mPZ2tzheohgXB",
"href": "https://api.spotify.com/v1/artists/4STHEaNw4mPZ2tzheohgXB",
"type": "artist",
"id": "4STHEaNw4mPZ2tzheohgXB"
},
{
"name": "Wings",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3sFhA6G1N0gG1pszb6kk1m"
},
"uri": "spotify:artist:3sFhA6G1N0gG1pszb6kk1m",
"href": "https://api.spotify.com/v1/artists/3sFhA6G1N0gG1pszb6kk1m",
"type": "artist",
"id": "3sFhA6G1N0gG1pszb6kk1m"
}
],
"images": [
{
"url": "https://i.scdn.co/image/823ea135469cf5b7b3b24eb39d78db7d658beba8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4e70f951f60ccbce2ca5a0be502a7e97b16da02b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8ccd573d6670a8f4c2d6cfe04b8db4472112e217",
"width": 64,
"height": 64
}
],
"id": "5WDwQd1NNzitecaWN7BoUB"
},
"2TSFFHkzdUwNzsf8DKemzS": {
"name": "The Man Who",
"release_date": "1999",
"uri": "spotify:album:2TSFFHkzdUwNzsf8DKemzS",
"artists": [
{
"name": "Travis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3bUwxJgNakzYKkqAVgZLlh"
},
"uri": "spotify:artist:3bUwxJgNakzYKkqAVgZLlh",
"href": "https://api.spotify.com/v1/artists/3bUwxJgNakzYKkqAVgZLlh",
"type": "artist",
"id": "3bUwxJgNakzYKkqAVgZLlh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ec1e1f1d1536a6ce4f7b9194a7e790afb7f59622",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f5adf2280f55ff35c9688d8c687d7c7a0a68fd24",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4d0b8fa763ade6122806136d9296acaecc9d8785",
"width": 64,
"height": 64
}
],
"id": "2TSFFHkzdUwNzsf8DKemzS"
},
"7pMFJnQzOnQXviU4FPpQAn": {
"name": "Slippery When Wet (Remastered)",
"release_date": "1986",
"uri": "spotify:album:7pMFJnQzOnQXviU4FPpQAn",
"artists": [
{
"name": "Bon Jovi",
"external_urls": {
"spotify": "https://open.spotify.com/artist/58lV9VcRSjABbAbfWS6skp"
},
"uri": "spotify:artist:58lV9VcRSjABbAbfWS6skp",
"href": "https://api.spotify.com/v1/artists/58lV9VcRSjABbAbfWS6skp",
"type": "artist",
"id": "58lV9VcRSjABbAbfWS6skp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cf13d6f46cb879c370c2397710fe1697152a5e2d",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/2da883f3a09c741ebfa6c5ef3291816755e80af2",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/c144a8be667868739daffb9b03b419cbf23ed922",
"width": 64,
"height": 64
}
],
"id": "7pMFJnQzOnQXviU4FPpQAn"
},
"1DC2PiEbQa5HLJ0z7tsGfN": {
"name": "Personality Crisis",
"release_date": "2009-07-20",
"uri": "spotify:album:1DC2PiEbQa5HLJ0z7tsGfN",
"artists": [
{
"name": "The New York Dolls and Sylvain Sylvain",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3VTbBO3N35jwfi8xBrA4mK"
},
"uri": "spotify:artist:3VTbBO3N35jwfi8xBrA4mK",
"href": "https://api.spotify.com/v1/artists/3VTbBO3N35jwfi8xBrA4mK",
"type": "artist",
"id": "3VTbBO3N35jwfi8xBrA4mK"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0fd4ec870cbd42aff3b2869832eeca9cc4c6e8d7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/edb032a97ecd82fef6079d508f4533b8d275cca2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f74608bdf63cd769879a07a8ca6ea0a9c95dc041",
"width": 64,
"height": 64
}
],
"id": "1DC2PiEbQa5HLJ0z7tsGfN"
},
"6mTogGIl5SmUXJjRLwXihn": {
"name": "THE GRAND TOUR/ALONE AGAIN",
"release_date": "1999-07-12",
"uri": "spotify:album:6mTogGIl5SmUXJjRLwXihn",
"artists": [
{
"name": "George Jones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2OpqcUtj10HHvGG6h9VYC5"
},
"uri": "spotify:artist:2OpqcUtj10HHvGG6h9VYC5",
"href": "https://api.spotify.com/v1/artists/2OpqcUtj10HHvGG6h9VYC5",
"type": "artist",
"id": "2OpqcUtj10HHvGG6h9VYC5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9920f0f27e7e039e3aef3ae06f8684eee88d9dcb",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6fbc6e3dc3455ccee242216c340a1c487616379a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/124f7a2ccf75ce0331fad1a180536b0197946c00",
"width": 64,
"height": 64
}
],
"id": "6mTogGIl5SmUXJjRLwXihn"
},
"1vtsYpapUeoDNMJOWRql9b": {
"name": "Darklands",
"release_date": "1987",
"uri": "spotify:album:1vtsYpapUeoDNMJOWRql9b",
"artists": [
{
"name": "The Jesus And Mary Chain",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4rjlerN21ygkIhmUv55irs"
},
"uri": "spotify:artist:4rjlerN21ygkIhmUv55irs",
"href": "https://api.spotify.com/v1/artists/4rjlerN21ygkIhmUv55irs",
"type": "artist",
"id": "4rjlerN21ygkIhmUv55irs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/005bd653089502e8fff2b91cfcaad7e633bccfd3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9b011245c4add8c1d6b535a2baccda74a920b1bc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2209aef37947ae809631a411556d6edebcfc1ffd",
"width": 64,
"height": 64
}
],
"id": "1vtsYpapUeoDNMJOWRql9b"
},
"4ZfUPTosZ0jaVWa0EfGbly": {
"name": "Countdown To Ecstasy",
"release_date": "1973",
"uri": "spotify:album:4ZfUPTosZ0jaVWa0EfGbly",
"artists": [
{
"name": "Steely Dan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6P7H3ai06vU1sGvdpBwDmE"
},
"uri": "spotify:artist:6P7H3ai06vU1sGvdpBwDmE",
"href": "https://api.spotify.com/v1/artists/6P7H3ai06vU1sGvdpBwDmE",
"type": "artist",
"id": "6P7H3ai06vU1sGvdpBwDmE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/28ce1ac7b534eaca138c6438fede3bc5f782624a",
"width": 640,
"height": 629
},
{
"url": "https://i.scdn.co/image/2d23f930fc045dca2384e0e62cbf632712a0bd99",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/80aba22cab2b7d41cc13023f6066ec8a53074420",
"width": 64,
"height": 63
}
],
"id": "4ZfUPTosZ0jaVWa0EfGbly"
},
"0BBWJ3L9fhkmNLdt4zs4fu": {
"name": "Songs In The Key Of Life",
"release_date": "1976-01-01",
"uri": "spotify:album:0BBWJ3L9fhkmNLdt4zs4fu",
"artists": [
{
"name": "Stevie Wonder",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7guDJrEfX3qb6FEbdPA5qi"
},
"uri": "spotify:artist:7guDJrEfX3qb6FEbdPA5qi",
"href": "https://api.spotify.com/v1/artists/7guDJrEfX3qb6FEbdPA5qi",
"type": "artist",
"id": "7guDJrEfX3qb6FEbdPA5qi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8e79e679cb589f6790373bc878a820ba65ffe835",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/eac97467988a62e32e457903f7f34ecdeeaa4f68",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/c8500be5acf2cb477ff21b5b59462c4ccf0c0819",
"width": 64,
"height": 63
}
],
"id": "0BBWJ3L9fhkmNLdt4zs4fu"
},
"5yHF4wPPuaxeYVtwRKe4FS": {
"name": "Shoki Shoki",
"release_date": "1998-11-17",
"uri": "spotify:album:5yHF4wPPuaxeYVtwRKe4FS",
"artists": [
{
"name": "Femi Kuti",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6kgrtA0dlnVpWB6zjpXrRb"
},
"uri": "spotify:artist:6kgrtA0dlnVpWB6zjpXrRb",
"href": "https://api.spotify.com/v1/artists/6kgrtA0dlnVpWB6zjpXrRb",
"type": "artist",
"id": "6kgrtA0dlnVpWB6zjpXrRb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/388ffcd698eefe828f96602d26e4c08570a6bc47",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/d21a9246e58a85af2296e5fc7c3204d8d203d4ae",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/c6bc9d7b0a60ebc2d1a2503d188a08de33c3da26",
"width": 64,
"height": 63
}
],
"id": "5yHF4wPPuaxeYVtwRKe4FS"
},
"0530hyl3GtZKWPebWVMZkK": {
"name": "Funeral",
"release_date": "2004",
"uri": "spotify:album:0530hyl3GtZKWPebWVMZkK",
"artists": [
{
"name": "Arcade Fire",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3kjuyTCjPG1WMFCiyc5IuB"
},
"uri": "spotify:artist:3kjuyTCjPG1WMFCiyc5IuB",
"href": "https://api.spotify.com/v1/artists/3kjuyTCjPG1WMFCiyc5IuB",
"type": "artist",
"id": "3kjuyTCjPG1WMFCiyc5IuB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0545b22a34a2399ccf000951ce7b4425c720a836",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9f4688be9768a6f6d799fba26479b54746361fe2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/41f62fc918b0e51641e002ac884c57cdb00684d0",
"width": 64,
"height": 64
}
],
"id": "0530hyl3GtZKWPebWVMZkK"
},
"24TAupSNVWSAHL0R7n71vm": {
"name": "Bad 25th Anniversary",
"release_date": "2012-09-18",
"uri": "spotify:album:24TAupSNVWSAHL0R7n71vm",
"artists": [
{
"name": "Michael Jackson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3fMbdgg4jU18AjLCKBhRSm"
},
"uri": "spotify:artist:3fMbdgg4jU18AjLCKBhRSm",
"href": "https://api.spotify.com/v1/artists/3fMbdgg4jU18AjLCKBhRSm",
"type": "artist",
"id": "3fMbdgg4jU18AjLCKBhRSm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ae7f1397024f8fa62668612af930c22915108302",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/37a9261bec26c730d99a3687c09cabf4bd4cf186",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3c439c3ef3fc8ec0484cbd3c3cf6b9333b1b58e9",
"width": 64,
"height": 64
}
],
"id": "24TAupSNVWSAHL0R7n71vm"
},
"6IwGxrod9AL4TuYiVDo91O": {
"name": "Mask",
"release_date": "1981-10",
"uri": "spotify:album:6IwGxrod9AL4TuYiVDo91O",
"artists": [
{
"name": "Bauhaus",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5N5tQ9Dx1h8Od7aRmGj7Fi"
},
"uri": "spotify:artist:5N5tQ9Dx1h8Od7aRmGj7Fi",
"href": "https://api.spotify.com/v1/artists/5N5tQ9Dx1h8Od7aRmGj7Fi",
"type": "artist",
"id": "5N5tQ9Dx1h8Od7aRmGj7Fi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/32beb4e03a7c20d70aaf969bd9401c470633f12d",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/760fe51abc539be22a07bd44781a24310fbd46dc",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/894314cf0f3e841eaadecf344cac99226cac7a29",
"width": 64,
"height": 62
}
],
"id": "6IwGxrod9AL4TuYiVDo91O"
},
"3fRCOoTbBsOITBWlCRCJQr": {
"name": "Something/Anything?",
"release_date": "1972",
"uri": "spotify:album:3fRCOoTbBsOITBWlCRCJQr",
"artists": [
{
"name": "Todd Rundgren",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0Lpr5wXzWLtDWm1SjNbpPb"
},
"uri": "spotify:artist:0Lpr5wXzWLtDWm1SjNbpPb",
"href": "https://api.spotify.com/v1/artists/0Lpr5wXzWLtDWm1SjNbpPb",
"type": "artist",
"id": "0Lpr5wXzWLtDWm1SjNbpPb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9a129203c3ba39a30ee3bf3a8b1bf66d1ac9fa6a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/99cd4f94fb2e31a82a01bb1cf16c79736b444c23",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ad2c408ee9e34b8a121d8f1ffa58167dde14d3aa",
"width": 64,
"height": 64
}
],
"id": "3fRCOoTbBsOITBWlCRCJQr"
},
"2rogKfOpmCFuqNhtGKf2dX": {
"name": "Cheap Thrills",
"release_date": "1968-08-12",
"uri": "spotify:album:2rogKfOpmCFuqNhtGKf2dX",
"artists": [
{
"name": "Big Brother & The Holding Company",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4J69yWrKwWJgjv3DKTZcGo"
},
"uri": "spotify:artist:4J69yWrKwWJgjv3DKTZcGo",
"href": "https://api.spotify.com/v1/artists/4J69yWrKwWJgjv3DKTZcGo",
"type": "artist",
"id": "4J69yWrKwWJgjv3DKTZcGo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e7e2a998bf29072bdefc9151935fe90cf531a73c",
"width": 638,
"height": 640
},
{
"url": "https://i.scdn.co/image/2a9c40327a42521d69e11af7f76c61e39d5af3d6",
"width": 299,
"height": 300
},
{
"url": "https://i.scdn.co/image/3969c729decdb36ade710bf66ba9b43d60adc173",
"width": 64,
"height": 64
}
],
"id": "2rogKfOpmCFuqNhtGKf2dX"
},
"0xzaemKucrJpYhyl7TltAk": {
"name": "Imagine",
"release_date": "1971-09-09",
"uri": "spotify:album:0xzaemKucrJpYhyl7TltAk",
"artists": [
{
"name": "John Lennon",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4x1nvY2FN8jxqAFA0DA02H"
},
"uri": "spotify:artist:4x1nvY2FN8jxqAFA0DA02H",
"href": "https://api.spotify.com/v1/artists/4x1nvY2FN8jxqAFA0DA02H",
"type": "artist",
"id": "4x1nvY2FN8jxqAFA0DA02H"
},
{
"name": "The Plastic Ono Band",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4m2kfAHEnK7Z7qLGxeWtro"
},
"uri": "spotify:artist:4m2kfAHEnK7Z7qLGxeWtro",
"href": "https://api.spotify.com/v1/artists/4m2kfAHEnK7Z7qLGxeWtro",
"type": "artist",
"id": "4m2kfAHEnK7Z7qLGxeWtro"
},
{
"name": "The Flux Fiddlers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5JRQN1PslNH3W77jakgryr"
},
"uri": "spotify:artist:5JRQN1PslNH3W77jakgryr",
"href": "https://api.spotify.com/v1/artists/5JRQN1PslNH3W77jakgryr",
"type": "artist",
"id": "5JRQN1PslNH3W77jakgryr"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d93d22956919a0878b494f5b09230074b1c5dd43",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ddb3533b14c68aa130e4cf01fabb4a501ec8f405",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/31d156280116c07a66430ce5312e8ee292e968c1",
"width": 64,
"height": 64
}
],
"id": "0xzaemKucrJpYhyl7TltAk"
},
"0oiS0f0gbyZBKfdoCBgutN": {
"name": "Too Rye Ay",
"release_date": "1993-02-13",
"uri": "spotify:album:0oiS0f0gbyZBKfdoCBgutN",
"artists": [
{
"name": "Dexys Midnight Runners",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4QTVePrFu1xuGM9K0kNXkk"
},
"uri": "spotify:artist:4QTVePrFu1xuGM9K0kNXkk",
"href": "https://api.spotify.com/v1/artists/4QTVePrFu1xuGM9K0kNXkk",
"type": "artist",
"id": "4QTVePrFu1xuGM9K0kNXkk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f9a8161a598b1a5231dcd763201c38f124d77d4e",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/364702d5490a7c494b4bc4d3324120020e69345f",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/03e2ed4986baadc8124ddcf867239b6547b7b6ba",
"width": 64,
"height": 63
}
],
"id": "0oiS0f0gbyZBKfdoCBgutN"
},
"6s2RwYTyC230S3piObC4ei": {
"name": "Crooked Rain Crooked Rain (Deluxe Edition)",
"release_date": "1994",
"uri": "spotify:album:6s2RwYTyC230S3piObC4ei",
"artists": [
{
"name": "Pavement",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3inCNiUr4R6XQ3W43s9Aqi"
},
"uri": "spotify:artist:3inCNiUr4R6XQ3W43s9Aqi",
"href": "https://api.spotify.com/v1/artists/3inCNiUr4R6XQ3W43s9Aqi",
"type": "artist",
"id": "3inCNiUr4R6XQ3W43s9Aqi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d495ebd8845418c580282827ef7cd5115c1f91be",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3454a4c72cc45f9d3abc519a67da1e253748f9b9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7f98c8aedbc19f3c401621da50ce470b53d5c842",
"width": 64,
"height": 64
}
],
"id": "6s2RwYTyC230S3piObC4ei"
},
"0QVoYzGd1p8Z3ohEaM0lsc": {
"name": "Elvis 30 #1 Hits",
"release_date": "2002-09-23",
"uri": "spotify:album:0QVoYzGd1p8Z3ohEaM0lsc",
"artists": [
{
"name": "Elvis Presley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/43ZHCT0cAZBISjO8DG9PnE"
},
"uri": "spotify:artist:43ZHCT0cAZBISjO8DG9PnE",
"href": "https://api.spotify.com/v1/artists/43ZHCT0cAZBISjO8DG9PnE",
"type": "artist",
"id": "43ZHCT0cAZBISjO8DG9PnE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/725c77471dea914e9f4c59fa802b57661c452bfd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/96bfadbe248ad7015da263483c84162c3ee24db0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8baee915db2d43d19c56b43c6e7a8dabf0a9cd8f",
"width": 64,
"height": 64
}
],
"id": "0QVoYzGd1p8Z3ohEaM0lsc"
},
"3EeZu1PTUY341mnNEiyiYl": {
"name": "Is This It",
"release_date": "2001-08-24",
"uri": "spotify:album:3EeZu1PTUY341mnNEiyiYl",
"artists": [
{
"name": "The Strokes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0epOFNiUfyON9EYx7Tpr6V"
},
"uri": "spotify:artist:0epOFNiUfyON9EYx7Tpr6V",
"href": "https://api.spotify.com/v1/artists/0epOFNiUfyON9EYx7Tpr6V",
"type": "artist",
"id": "0epOFNiUfyON9EYx7Tpr6V"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b845ef21b16f3acc4c9b0a31250d286a34a430e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4f399666325158516073a0bdeebeded9ebb6893d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b83736aa92e3897ebd1bca64d2246df36b26aaa5",
"width": 64,
"height": 64
}
],
"id": "3EeZu1PTUY341mnNEiyiYl"
},
"6tCPiWGLQCg8UzceiH008f": {
"name": "Cloud Nine",
"release_date": "1969-01-01",
"uri": "spotify:album:6tCPiWGLQCg8UzceiH008f",
"artists": [
{
"name": "The Temptations",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3RwQ26hR2tJtA8F9p2n7jG"
},
"uri": "spotify:artist:3RwQ26hR2tJtA8F9p2n7jG",
"href": "https://api.spotify.com/v1/artists/3RwQ26hR2tJtA8F9p2n7jG",
"type": "artist",
"id": "3RwQ26hR2tJtA8F9p2n7jG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8371b063af7d397dedfb5d6fbd7596e4864bc5e0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/81a12b0f8762d057c3e8ed0fdef7cf7b9ae9e4dc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/47b469bc1dbdc503da821e32ee07892b6b4018eb",
"width": 64,
"height": 64
}
],
"id": "6tCPiWGLQCg8UzceiH008f"
},
"0kT4F2mSpvTk3stwiaEStp": {
"name": "Kick Out The Jams (Live)",
"release_date": "1969",
"uri": "spotify:album:0kT4F2mSpvTk3stwiaEStp",
"artists": [
{
"name": "MC5",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4WquJweZPIK9qcfVFhTKvf"
},
"uri": "spotify:artist:4WquJweZPIK9qcfVFhTKvf",
"href": "https://api.spotify.com/v1/artists/4WquJweZPIK9qcfVFhTKvf",
"type": "artist",
"id": "4WquJweZPIK9qcfVFhTKvf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/39506a8b3b53bf52ac04f1bba12466d68228adae",
"width": 632,
"height": 640
},
{
"url": "https://i.scdn.co/image/992444bc1404d9b9c8b68edd1108841c6dee1074",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/a1234c5395abb0c271d4a144e8c29d32ea33e6b1",
"width": 63,
"height": 64
}
],
"id": "0kT4F2mSpvTk3stwiaEStp"
},
"51NPMfa9QfxsYtqzcB2VfY": {
"name": "Colour By Numbers",
"release_date": "1983-10-01",
"uri": "spotify:album:51NPMfa9QfxsYtqzcB2VfY",
"artists": [
{
"name": "Culture Club",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6kz53iCdBSqhQCZ21CoLcc"
},
"uri": "spotify:artist:6kz53iCdBSqhQCZ21CoLcc",
"href": "https://api.spotify.com/v1/artists/6kz53iCdBSqhQCZ21CoLcc",
"type": "artist",
"id": "6kz53iCdBSqhQCZ21CoLcc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/98c282b9e8b1779f4808e5cc2d563ecdb3db80f4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ea4ae9cf6ef46029ebd69253ea6a93b3ca763c76",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6697af505d60ff2ff2ed722beedc77e9de861e5a",
"width": 64,
"height": 64
}
],
"id": "51NPMfa9QfxsYtqzcB2VfY"
},
"0HkrY28rXvdAX5K15W2zdK": {
"name": "Laugh? I Nearly Bought One!",
"release_date": "1992",
"uri": "spotify:album:0HkrY28rXvdAX5K15W2zdK",
"artists": [
{
"name": "Killing Joke",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0Zy4ncr8h1jd7Nzr9946fD"
},
"uri": "spotify:artist:0Zy4ncr8h1jd7Nzr9946fD",
"href": "https://api.spotify.com/v1/artists/0Zy4ncr8h1jd7Nzr9946fD",
"type": "artist",
"id": "0Zy4ncr8h1jd7Nzr9946fD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d749e47bdabc23629eee0afc5621acbba3eab705",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9afbee85b7f5dde458735dc9084a6c998084a287",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e75bf8a8015f8f995a39fd7abd9baff646d910e9",
"width": 64,
"height": 64
}
],
"id": "0HkrY28rXvdAX5K15W2zdK"
},
"4NGWe17wxoQvF0an1ps49l": {
"name": "Psychocandy",
"release_date": "1985-11-18",
"uri": "spotify:album:4NGWe17wxoQvF0an1ps49l",
"artists": [
{
"name": "The Jesus And Mary Chain",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4rjlerN21ygkIhmUv55irs"
},
"uri": "spotify:artist:4rjlerN21ygkIhmUv55irs",
"href": "https://api.spotify.com/v1/artists/4rjlerN21ygkIhmUv55irs",
"type": "artist",
"id": "4rjlerN21ygkIhmUv55irs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/76d3d6fc3e6a6668f1e0405e710c98e2d8229f8a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b7dc1185a009f9d1a1d4e147872e62afe17d9a12",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/61f6c187b1331ddfa40ae3b2aa4152894ffb9894",
"width": 64,
"height": 64
}
],
"id": "4NGWe17wxoQvF0an1ps49l"
},
"7rShDcOhzRIRNAowXWCxbA": {
"name": "Murder Ballads (Remastered)",
"release_date": "1996-02-05",
"uri": "spotify:album:7rShDcOhzRIRNAowXWCxbA",
"artists": [
{
"name": "Nick Cave & The Bad Seeds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4UXJsSlnKd7ltsrHebV79Q"
},
"uri": "spotify:artist:4UXJsSlnKd7ltsrHebV79Q",
"href": "https://api.spotify.com/v1/artists/4UXJsSlnKd7ltsrHebV79Q",
"type": "artist",
"id": "4UXJsSlnKd7ltsrHebV79Q"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bcb393e6b8ffb0e5ab00184451a3fe2c291eda40",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9eb80bde744dab709ce19f0953c78654deb4d81f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3f1d24fa137cd7cd2636c7767c019376485a84cf",
"width": 64,
"height": 64
}
],
"id": "7rShDcOhzRIRNAowXWCxbA"
},
"6evLFi930oxXqMhKRmGMaX": {
"name": "Triangle",
"release_date": "1967",
"uri": "spotify:album:6evLFi930oxXqMhKRmGMaX",
"artists": [
{
"name": "The Beau Brummels",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4DQj1q0unpi9KF8jO1Wqks"
},
"uri": "spotify:artist:4DQj1q0unpi9KF8jO1Wqks",
"href": "https://api.spotify.com/v1/artists/4DQj1q0unpi9KF8jO1Wqks",
"type": "artist",
"id": "4DQj1q0unpi9KF8jO1Wqks"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e8bd0e905fc422d7c663c8ecdecd413cfd629a32",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/821053d978bd04412880abe7e7ee515157722602",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5c3d3b558b02cec280fb7e53908534cd7a69a359",
"width": 64,
"height": 64
}
],
"id": "6evLFi930oxXqMhKRmGMaX"
},
"1DxkKAQDMX4H1TlXCJAYyS": {
"name": "It's A Shame About Ray [Expanded Edition]",
"release_date": "1992",
"uri": "spotify:album:1DxkKAQDMX4H1TlXCJAYyS",
"artists": [
{
"name": "The Lemonheads",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6w7fc6IZlo5zwBaKT5jU1X"
},
"uri": "spotify:artist:6w7fc6IZlo5zwBaKT5jU1X",
"href": "https://api.spotify.com/v1/artists/6w7fc6IZlo5zwBaKT5jU1X",
"type": "artist",
"id": "6w7fc6IZlo5zwBaKT5jU1X"
}
],
"images": [
{
"url": "https://i.scdn.co/image/56c422c1209ad51914280594bc8defc4ce7a121a",
"width": 640,
"height": 604
},
{
"url": "https://i.scdn.co/image/bb378a9d1ace40b7c219db0db91547699dc78aa6",
"width": 300,
"height": 283
},
{
"url": "https://i.scdn.co/image/17090d92286965c69a155179192f8bd55a6eb791",
"width": 64,
"height": 60
}
],
"id": "1DxkKAQDMX4H1TlXCJAYyS"
},
"6RgX6mXKrsJYgGpX5K2JQJ": {
"name": "Let's Get It On (Deluxe Edition)",
"release_date": "1973",
"uri": "spotify:album:6RgX6mXKrsJYgGpX5K2JQJ",
"artists": [
{
"name": "Marvin Gaye",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3koiLjNrgRTNbOwViDipeA"
},
"uri": "spotify:artist:3koiLjNrgRTNbOwViDipeA",
"href": "https://api.spotify.com/v1/artists/3koiLjNrgRTNbOwViDipeA",
"type": "artist",
"id": "3koiLjNrgRTNbOwViDipeA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e9b95f37a2f1fc451df23d55ecb3519579d69770",
"width": 640,
"height": 582
},
{
"url": "https://i.scdn.co/image/d87f705b34cbd043b2a293a564e25e93e96da4f2",
"width": 300,
"height": 273
},
{
"url": "https://i.scdn.co/image/75346bc8455758a0145aa2143fc15986b1264711",
"width": 64,
"height": 58
}
],
"id": "6RgX6mXKrsJYgGpX5K2JQJ"
},
"2l7RPWC3E6eStJJLBsUeCI": {
"name": "Surfer Rosa & Come On Pilgrim",
"release_date": "1988",
"uri": "spotify:album:2l7RPWC3E6eStJJLBsUeCI",
"artists": [
{
"name": "Pixies",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zvul52xwTWzilBZl6BUbT"
},
"uri": "spotify:artist:6zvul52xwTWzilBZl6BUbT",
"href": "https://api.spotify.com/v1/artists/6zvul52xwTWzilBZl6BUbT",
"type": "artist",
"id": "6zvul52xwTWzilBZl6BUbT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bb62af8b7ae7cacc76533790c6fe7320564fe3fe",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/34dd60556eaf7be6e9e0377a5ded6c6a3e611869",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9bf3ad2f0954dd692d5894a31ff33b2163ec62f0",
"width": 64,
"height": 64
}
],
"id": "2l7RPWC3E6eStJJLBsUeCI"
},
"4OfGDQC3Z2CdHMknAQMdig": {
"name": "Rattlesnakes",
"release_date": "1984-01-01",
"uri": "spotify:album:4OfGDQC3Z2CdHMknAQMdig",
"artists": [
{
"name": "Lloyd Cole And The Commotions",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6juuiuCv8jRHZOcvP2BqKp"
},
"uri": "spotify:artist:6juuiuCv8jRHZOcvP2BqKp",
"href": "https://api.spotify.com/v1/artists/6juuiuCv8jRHZOcvP2BqKp",
"type": "artist",
"id": "6juuiuCv8jRHZOcvP2BqKp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d8d2a8b40dd4f2478f9fb35def01e529af21ba40",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/3f5803b829251e06ff7cb91c571be161abf46b34",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/fb420bd0ecfe284ea0b9360321a28374375f3c43",
"width": 64,
"height": 63
}
],
"id": "4OfGDQC3Z2CdHMknAQMdig"
},
"5rMkR5qNON8Eqj94hXK3vQ": {
"name": "Now I Got Worry",
"release_date": "1996",
"uri": "spotify:album:5rMkR5qNON8Eqj94hXK3vQ",
"artists": [
{
"name": "The Jon Spencer Blues Explosion",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2NOhotupwYbKRNJF7LMDPG"
},
"uri": "spotify:artist:2NOhotupwYbKRNJF7LMDPG",
"href": "https://api.spotify.com/v1/artists/2NOhotupwYbKRNJF7LMDPG",
"type": "artist",
"id": "2NOhotupwYbKRNJF7LMDPG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/65cf69013c1c07f4c00c7a2fc7a64bf48d59ce9b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5ea14e771d2e1e7db8282b610a83c1e66aa5de06",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f2d363ec2c5bd9fbe0447b1577a39168a77df4fb",
"width": 64,
"height": 64
}
],
"id": "5rMkR5qNON8Eqj94hXK3vQ"
},
"2mEAmmRoZrvhBh1Vic03fZ": {
"name": "Sheer Heart Attack (2011 Remaster)",
"release_date": "1974-11-08",
"uri": "spotify:album:2mEAmmRoZrvhBh1Vic03fZ",
"artists": [
{
"name": "Queen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d"
},
"uri": "spotify:artist:1dfeR4HaWDbWqFHLkxsg1d",
"href": "https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d",
"type": "artist",
"id": "1dfeR4HaWDbWqFHLkxsg1d"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c370d4905c39ce377b6b490c5f68d342d4fbdeff",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/735afc888526cf537c1203589219e912fccf44e0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/744ab2272266532d017d12d9d1ddac5f952190ef",
"width": 64,
"height": 64
}
],
"id": "2mEAmmRoZrvhBh1Vic03fZ"
},
"3dbeq8w6JqKAIxIgfZQPjC": {
"name": "The Sun Rises In The East",
"release_date": "1994",
"uri": "spotify:album:3dbeq8w6JqKAIxIgfZQPjC",
"artists": [
{
"name": "Jeru The Damaja",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6CsOL9C9iLL0eWKINlDxzQ"
},
"uri": "spotify:artist:6CsOL9C9iLL0eWKINlDxzQ",
"href": "https://api.spotify.com/v1/artists/6CsOL9C9iLL0eWKINlDxzQ",
"type": "artist",
"id": "6CsOL9C9iLL0eWKINlDxzQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/45dff4133953a554e1e3f8a54e8ed3ff7c6cf06e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7437d60a445c388d0fc80b288b2e66b3c4ac7875",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b509293083f71514e2dd0083406a4a4b36cbd40c",
"width": 64,
"height": 64
}
],
"id": "3dbeq8w6JqKAIxIgfZQPjC"
},
"4ij84pOJd9kY2uNdT2dOH1": {
"name": "The Boatman's Call (Remastered)",
"release_date": "1997-03-03",
"uri": "spotify:album:4ij84pOJd9kY2uNdT2dOH1",
"artists": [
{
"name": "Nick Cave & The Bad Seeds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4UXJsSlnKd7ltsrHebV79Q"
},
"uri": "spotify:artist:4UXJsSlnKd7ltsrHebV79Q",
"href": "https://api.spotify.com/v1/artists/4UXJsSlnKd7ltsrHebV79Q",
"type": "artist",
"id": "4UXJsSlnKd7ltsrHebV79Q"
}
],
"images": [
{
"url": "https://i.scdn.co/image/559b76de5f5541038f934b9d69de333025055fde",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7c791f9b6700bb369df96605d1a40acc15734ad2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1bf123f651d2fbcc62282ed941659a312b774a67",
"width": 64,
"height": 64
}
],
"id": "4ij84pOJd9kY2uNdT2dOH1"
},
"2fx319btAq5glC9N6tQ8Wr": {
"name": "You Are The Quarry",
"release_date": "2004-01-01",
"uri": "spotify:album:2fx319btAq5glC9N6tQ8Wr",
"artists": [
{
"name": "Morrissey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3iTsJGG39nMg9YiolUgLMQ"
},
"uri": "spotify:artist:3iTsJGG39nMg9YiolUgLMQ",
"href": "https://api.spotify.com/v1/artists/3iTsJGG39nMg9YiolUgLMQ",
"type": "artist",
"id": "3iTsJGG39nMg9YiolUgLMQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f2aa1b3cf44513f7454647b3ecc02c919d032c99",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8e17562cf6074bf8cb24786a1e28f10e15a3df4e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5bbebdf2895ef711854dde24cebf14becb525093",
"width": 64,
"height": 64
}
],
"id": "2fx319btAq5glC9N6tQ8Wr"
},
"7zP0OZQPJjL4EDMlNbUEdL": {
"name": "White Light (Remaster)",
"release_date": "1971-08",
"uri": "spotify:album:7zP0OZQPJjL4EDMlNbUEdL",
"artists": [
{
"name": "Gene Clark",
"external_urls": {
"spotify": "https://open.spotify.com/artist/040Bv6cZTRh30LyyYVXgJX"
},
"uri": "spotify:artist:040Bv6cZTRh30LyyYVXgJX",
"href": "https://api.spotify.com/v1/artists/040Bv6cZTRh30LyyYVXgJX",
"type": "artist",
"id": "040Bv6cZTRh30LyyYVXgJX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f5c3001d45f143263a2af4deed9a5a66ea71cd75",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/7bcb30416c3ae33d404c5fda311d1476b060f00f",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/0426d124dc0562466d037b6193f4a816ff76850c",
"width": 64,
"height": 63
}
],
"id": "7zP0OZQPJjL4EDMlNbUEdL"
},
"4PqSk2iBHnsYQK0ecXjS9k": {
"name": "Peace Sells...But Who's Buying",
"release_date": "1986",
"uri": "spotify:album:4PqSk2iBHnsYQK0ecXjS9k",
"artists": [
{
"name": "Megadeth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1Yox196W7bzVNZI7RBaPnf"
},
"uri": "spotify:artist:1Yox196W7bzVNZI7RBaPnf",
"href": "https://api.spotify.com/v1/artists/1Yox196W7bzVNZI7RBaPnf",
"type": "artist",
"id": "1Yox196W7bzVNZI7RBaPnf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/884c5d618ac39dcc273a328c4ec4e8435c4ecfab",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cd9254cc075f1f657068cf9508943d26b37efb11",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b77cc98248a234064e2712e9ae23c10065b205ec",
"width": 64,
"height": 64
}
],
"id": "4PqSk2iBHnsYQK0ecXjS9k"
},
"6AFLOkpJjFF652jevcSOZX": {
"name": "Morrison Hotel",
"release_date": "1970-02-09",
"uri": "spotify:album:6AFLOkpJjFF652jevcSOZX",
"artists": [
{
"name": "The Doors",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22WZ7M8sxp5THdruNY3gXt"
},
"uri": "spotify:artist:22WZ7M8sxp5THdruNY3gXt",
"href": "https://api.spotify.com/v1/artists/22WZ7M8sxp5THdruNY3gXt",
"type": "artist",
"id": "22WZ7M8sxp5THdruNY3gXt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/75c488ed270f84c24edeab6dc8b7139b44f11068",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/03f0ea28bd3e6f093a71239cd09abb34fe794862",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/841ae550aeaa28ebbd7f25ce3e1291489b1d3345",
"width": 64,
"height": 64
}
],
"id": "6AFLOkpJjFF652jevcSOZX"
},
"0Gpcuci4CMpKHvZPM34KWg": {
"name": "The Soft Bulletin",
"release_date": "1999-05-17",
"uri": "spotify:album:0Gpcuci4CMpKHvZPM34KWg",
"artists": [
{
"name": "The Flaming Lips",
"external_urls": {
"spotify": "https://open.spotify.com/artist/16eRpMNXSQ15wuJoeqguaB"
},
"uri": "spotify:artist:16eRpMNXSQ15wuJoeqguaB",
"href": "https://api.spotify.com/v1/artists/16eRpMNXSQ15wuJoeqguaB",
"type": "artist",
"id": "16eRpMNXSQ15wuJoeqguaB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6c7908eea1026f9560cbc8f9b99d1e978e7b51df",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/13dc880fa013cbcda6d7216237be78b56ddfbd0a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c923cdfa2370479615fb19640785e25f6fd516f5",
"width": 64,
"height": 64
}
],
"id": "0Gpcuci4CMpKHvZPM34KWg"
},
"7N0W5QxnRMP3s1mMxfQo1p": {
"name": "Endtroducing.....",
"release_date": "1996-01-01",
"uri": "spotify:album:7N0W5QxnRMP3s1mMxfQo1p",
"artists": [
{
"name": "DJ Shadow",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5CE2IfdYZEQGIDsfiRm8SI"
},
"uri": "spotify:artist:5CE2IfdYZEQGIDsfiRm8SI",
"href": "https://api.spotify.com/v1/artists/5CE2IfdYZEQGIDsfiRm8SI",
"type": "artist",
"id": "5CE2IfdYZEQGIDsfiRm8SI"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a3c8e20d37ae56811ed0d9419293da0840d3058d",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/e3f6b87514c8a0ad6918d57345821e4412d510fd",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/20384564af8c333bcde901e8e3a036c80fba60e8",
"width": 64,
"height": 63
}
],
"id": "7N0W5QxnRMP3s1mMxfQo1p"
},
"0vndiSM8xxlb8CQFOMMO9h": {
"name": "Rio",
"release_date": "1982-05-10",
"uri": "spotify:album:0vndiSM8xxlb8CQFOMMO9h",
"artists": [
{
"name": "Duran Duran",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0lZoBs4Pzo7R89JM9lxwoT"
},
"uri": "spotify:artist:0lZoBs4Pzo7R89JM9lxwoT",
"href": "https://api.spotify.com/v1/artists/0lZoBs4Pzo7R89JM9lxwoT",
"type": "artist",
"id": "0lZoBs4Pzo7R89JM9lxwoT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d6371515705b0f5cf9f457021ff7589efaa16005",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e7ee81a46225bca041a2f970400e42dd0994d3ad",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6e1c023695a209062db8c3c85ceba71a44d161a3",
"width": 64,
"height": 64
}
],
"id": "0vndiSM8xxlb8CQFOMMO9h"
},
"2AyJzvREOnlnYhaBzF1Kxp": {
"name": "Raw Like Sushi",
"release_date": "1989",
"uri": "spotify:album:2AyJzvREOnlnYhaBzF1Kxp",
"artists": [
{
"name": "Neneh Cherry",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3JxCEqL9zjKnDJgUhRuRJD"
},
"uri": "spotify:artist:3JxCEqL9zjKnDJgUhRuRJD",
"href": "https://api.spotify.com/v1/artists/3JxCEqL9zjKnDJgUhRuRJD",
"type": "artist",
"id": "3JxCEqL9zjKnDJgUhRuRJD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/70f7a778724ad4d99a9f3513a83a8d5d7da1b9d6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/afd96702a56a04f50a9e05f1e1390f127fd4bac9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5c3de0914fde715bd1a6952a312483093b94f315",
"width": 64,
"height": 64
}
],
"id": "2AyJzvREOnlnYhaBzF1Kxp"
},
"4kT3ewGWBRAOlocyVp03bm": {
"name": "Closer",
"release_date": "1980",
"uri": "spotify:album:4kT3ewGWBRAOlocyVp03bm",
"artists": [
{
"name": "Joy Division",
"external_urls": {
"spotify": "https://open.spotify.com/artist/432R46LaYsJZV2Gmc4jUV5"
},
"uri": "spotify:artist:432R46LaYsJZV2Gmc4jUV5",
"href": "https://api.spotify.com/v1/artists/432R46LaYsJZV2Gmc4jUV5",
"type": "artist",
"id": "432R46LaYsJZV2Gmc4jUV5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e39d7a11f53dc00b186da3351adf6738e021d46e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/495b0bcde594892e785c0b669f342a6944bb7e6a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5cfa2af67a78cb0ff9dc6c3a7a320cb63ed0f82f",
"width": 64,
"height": 64
}
],
"id": "4kT3ewGWBRAOlocyVp03bm"
},
"5HBmdEPIzWtcWwH2JSv7go": {
"name": "It's Blitz!",
"release_date": "2009-03-08",
"uri": "spotify:album:5HBmdEPIzWtcWwH2JSv7go",
"artists": [
{
"name": "Yeah Yeah Yeahs",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3TNt4aUIxgfy9aoaft5Jj2"
},
"uri": "spotify:artist:3TNt4aUIxgfy9aoaft5Jj2",
"href": "https://api.spotify.com/v1/artists/3TNt4aUIxgfy9aoaft5Jj2",
"type": "artist",
"id": "3TNt4aUIxgfy9aoaft5Jj2"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cdfd418356314802c2432a4b3045856c1ecd4d9b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7d31d1f1e1ec686e09f7baa4d340bab47396970e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a7b3c66eecd69063677bd34b3046d2ef7e04bd6d",
"width": 64,
"height": 64
}
],
"id": "5HBmdEPIzWtcWwH2JSv7go"
},
"6gMv3MgFlieOM6Uz5GZBzy": {
"name": "Document (R.E.M. No. 5)",
"release_date": "1987-09-01",
"uri": "spotify:album:6gMv3MgFlieOM6Uz5GZBzy",
"artists": [
{
"name": "R.E.M.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4KWTAlx2RvbpseOGMEmROg"
},
"uri": "spotify:artist:4KWTAlx2RvbpseOGMEmROg",
"href": "https://api.spotify.com/v1/artists/4KWTAlx2RvbpseOGMEmROg",
"type": "artist",
"id": "4KWTAlx2RvbpseOGMEmROg"
}
],
"images": [
{
"url": "https://i.scdn.co/image/54e735ee6996a83f8e4b00027ec9944c3d902a89",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b100832732e93db61b4ba3497e1facfa1102be27",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0cc590da313612339fabc95f8d6c6664027fedee",
"width": 64,
"height": 64
}
],
"id": "6gMv3MgFlieOM6Uz5GZBzy"
},
"5BWl0bB1q0TqyFmkBEupZy": {
"name": "Hounds Of Love",
"release_date": "1985",
"uri": "spotify:album:5BWl0bB1q0TqyFmkBEupZy",
"artists": [
{
"name": "Kate Bush",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1aSxMhuvixZ8h9dK9jIDwL"
},
"uri": "spotify:artist:1aSxMhuvixZ8h9dK9jIDwL",
"href": "https://api.spotify.com/v1/artists/1aSxMhuvixZ8h9dK9jIDwL",
"type": "artist",
"id": "1aSxMhuvixZ8h9dK9jIDwL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/19bf6b264f13461e4d6b06d1e4f5a874ccfedab0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f43e56da19bcaff2bf003e9006e4149e314ed7cc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0799957eb98a7a46b2d4849b295571de3bad217f",
"width": 64,
"height": 64
}
],
"id": "5BWl0bB1q0TqyFmkBEupZy"
},
"7MCxE9Sx4zHSXL4xXHm4Im": {
"name": "More Than This - The Best Of Bryan Ferry And Roxy Music",
"release_date": "1995",
"uri": "spotify:album:7MCxE9Sx4zHSXL4xXHm4Im",
"artists": [
{
"name": "Bryan Ferry",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5RNFFojXkPRmlJZIwXeKQC"
},
"uri": "spotify:artist:5RNFFojXkPRmlJZIwXeKQC",
"href": "https://api.spotify.com/v1/artists/5RNFFojXkPRmlJZIwXeKQC",
"type": "artist",
"id": "5RNFFojXkPRmlJZIwXeKQC"
},
{
"name": "Roxy Music",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3fhOTtm0LBJ3Ojn4hIljLo"
},
"uri": "spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo",
"href": "https://api.spotify.com/v1/artists/3fhOTtm0LBJ3Ojn4hIljLo",
"type": "artist",
"id": "3fhOTtm0LBJ3Ojn4hIljLo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bceaddf81652dcfc62ab28d90e3b12b7ff59b324",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4c6e30b6c9a5a3e4628b3bfc5f28a328a36ec0c4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/807caecdb55678d11bfe35bd70e47c236c103764",
"width": 64,
"height": 64
}
],
"id": "7MCxE9Sx4zHSXL4xXHm4Im"
},
"5zau80zbjOc2uEO5P1olK1": {
"name": "Five Leaves Left",
"release_date": "1969",
"uri": "spotify:album:5zau80zbjOc2uEO5P1olK1",
"artists": [
{
"name": "Nick Drake",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5c3GLXai8YOMid29ZEuR9y"
},
"uri": "spotify:artist:5c3GLXai8YOMid29ZEuR9y",
"href": "https://api.spotify.com/v1/artists/5c3GLXai8YOMid29ZEuR9y",
"type": "artist",
"id": "5c3GLXai8YOMid29ZEuR9y"
}
],
"images": [
{
"url": "https://i.scdn.co/image/31d9f9834289bba5bb5c3fed2843d50557532dde",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/8b67bb2bf678ee2ce0f53697262df43ac38aaa41",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/d43019c84c6e89a9b2adb60ff59535ba6bf0fcc4",
"width": 64,
"height": 63
}
],
"id": "5zau80zbjOc2uEO5P1olK1"
},
"4NP1rhnsPdYpnyJP0p0k0L": {
"name": "Blonde On Blonde",
"release_date": "1966-06-20",
"uri": "spotify:album:4NP1rhnsPdYpnyJP0p0k0L",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d958f7f307a33c4309afbbc5f22e490f744d7beb",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/669c314b5bbccd288a044a57aa072cd710e93348",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9088487de1af02886ee4a4bdaacbb4469599efb8",
"width": 64,
"height": 64
}
],
"id": "4NP1rhnsPdYpnyJP0p0k0L"
},
"6Iyeo7CPHen8QEW4x31TpI": {
"name": "Imperial Bedroom",
"release_date": "1982",
"uri": "spotify:album:6Iyeo7CPHen8QEW4x31TpI",
"artists": [
{
"name": "Elvis Costello & The Attractions",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4qmHkMxr6pTWh5Zo74odpH"
},
"uri": "spotify:artist:4qmHkMxr6pTWh5Zo74odpH",
"href": "https://api.spotify.com/v1/artists/4qmHkMxr6pTWh5Zo74odpH",
"type": "artist",
"id": "4qmHkMxr6pTWh5Zo74odpH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1975a6abac89d5c7d9e5255aa60f249e87fe707a",
"width": 640,
"height": 577
},
{
"url": "https://i.scdn.co/image/9fa428abf22d55cb0adb21ba2974fa10eef5abb3",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/8294e3130d54c6f59399ba58a74c8f083ebde358",
"width": 64,
"height": 58
}
],
"id": "6Iyeo7CPHen8QEW4x31TpI"
},
"1bgkxe4t0HNeLn9rhrx79x": {
"name": "Blur: The Best Of",
"release_date": "2000-10-30",
"uri": "spotify:album:1bgkxe4t0HNeLn9rhrx79x",
"artists": [
{
"name": "Blur",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MhMgCo0Bl0Kukl93PZbYS"
},
"uri": "spotify:artist:7MhMgCo0Bl0Kukl93PZbYS",
"href": "https://api.spotify.com/v1/artists/7MhMgCo0Bl0Kukl93PZbYS",
"type": "artist",
"id": "7MhMgCo0Bl0Kukl93PZbYS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/64d37b4adad0bad4c31ef0de9d499d94596a2060",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1590a83b6e1ec12478a2fe8e993a4eecc261605e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/77203b4469cb6dba1710c44f838ff6ab3a0433b7",
"width": 64,
"height": 64
}
],
"id": "1bgkxe4t0HNeLn9rhrx79x"
},
"36CpfyCMCUxP1C35c9QcBa": {
"name": "John Barleycorn Must Die Deluxe Edition",
"release_date": "2010",
"uri": "spotify:album:36CpfyCMCUxP1C35c9QcBa",
"artists": [
{
"name": "Traffic",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1CD77o9fbdyQFrHnUPUEsF"
},
"uri": "spotify:artist:1CD77o9fbdyQFrHnUPUEsF",
"href": "https://api.spotify.com/v1/artists/1CD77o9fbdyQFrHnUPUEsF",
"type": "artist",
"id": "1CD77o9fbdyQFrHnUPUEsF"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3512e9d2569ed7f4c3393cf8f96f8d1a4b3c7a29",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2191c9190388aeac75efc33489146ca065ac4e2d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ea50c26e57588436ed56956884eaedb548fd8aed",
"width": 64,
"height": 64
}
],
"id": "36CpfyCMCUxP1C35c9QcBa"
},
"6wxpS5o0ty5CLqyH5fIRln": {
"name": "Nick Of Time",
"release_date": "1989",
"uri": "spotify:album:6wxpS5o0ty5CLqyH5fIRln",
"artists": [
{
"name": "Bonnie Raitt",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4KDyYWR7IpxZ7xrdYbKrqY"
},
"uri": "spotify:artist:4KDyYWR7IpxZ7xrdYbKrqY",
"href": "https://api.spotify.com/v1/artists/4KDyYWR7IpxZ7xrdYbKrqY",
"type": "artist",
"id": "4KDyYWR7IpxZ7xrdYbKrqY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0e058a110e857b5b7b51949e2749d783ac685de7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4480b1305a17357267793702d31eb6ae734bfd79",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6b973c9e1c2530121b42d4b16857b860bde75cb6",
"width": 64,
"height": 64
}
],
"id": "6wxpS5o0ty5CLqyH5fIRln"
},
"0MbeekWXeO9BFjImhNH5gf": {
"name": "Timeless",
"release_date": "1995-08-07",
"uri": "spotify:album:0MbeekWXeO9BFjImhNH5gf",
"artists": [
{
"name": "Goldie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2SYqJ3uDLLXZNyZdLKBy4M"
},
"uri": "spotify:artist:2SYqJ3uDLLXZNyZdLKBy4M",
"href": "https://api.spotify.com/v1/artists/2SYqJ3uDLLXZNyZdLKBy4M",
"type": "artist",
"id": "2SYqJ3uDLLXZNyZdLKBy4M"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f7af5f5fc05a57299a431e32494dc079932f51be",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a8a73033694d97f4e6b483536d0cc34bf0e12179",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/efb580807219141d09a9db10080f51f7fed1dc8a",
"width": 64,
"height": 64
}
],
"id": "0MbeekWXeO9BFjImhNH5gf"
},
"4tJPWT4r4FSKwy784Qs1Fq": {
"name": "The Cars",
"release_date": "1978-06-06",
"uri": "spotify:album:4tJPWT4r4FSKwy784Qs1Fq",
"artists": [
{
"name": "The Cars",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6DCIj8jNaNpBz8e5oKFPtp"
},
"uri": "spotify:artist:6DCIj8jNaNpBz8e5oKFPtp",
"href": "https://api.spotify.com/v1/artists/6DCIj8jNaNpBz8e5oKFPtp",
"type": "artist",
"id": "6DCIj8jNaNpBz8e5oKFPtp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f9b54a78a968633b32d0a2f930ed3f9cb31406a3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f384ed7299d6974fd58707c000757fd2d6d48111",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/028d32f8c2b0f496046d3903d96476daa780ec9e",
"width": 64,
"height": 64
}
],
"id": "4tJPWT4r4FSKwy784Qs1Fq"
},
"0vAX6P1azQqgtrTWuxYWrm": {
"name": "Murmur - Deluxe Edition",
"release_date": "1983-04-12",
"uri": "spotify:album:0vAX6P1azQqgtrTWuxYWrm",
"artists": [
{
"name": "R.E.M.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4KWTAlx2RvbpseOGMEmROg"
},
"uri": "spotify:artist:4KWTAlx2RvbpseOGMEmROg",
"href": "https://api.spotify.com/v1/artists/4KWTAlx2RvbpseOGMEmROg",
"type": "artist",
"id": "4KWTAlx2RvbpseOGMEmROg"
}
],
"images": [
{
"url": "https://i.scdn.co/image/80e996d2bfd4947dc60c98491ea30bc020b6c705",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dcd728e939b36bfb35cb4b1f6b22f83183e17953",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4eb1c07a125393f60c94b04b371e3f4cc94bb89b",
"width": 64,
"height": 64
}
],
"id": "0vAX6P1azQqgtrTWuxYWrm"
},
"7aXRSPsEDgXGxFGY235DYz": {
"name": "Legalize It",
"release_date": "1976",
"uri": "spotify:album:7aXRSPsEDgXGxFGY235DYz",
"artists": [
{
"name": "Peter Tosh",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oea1hwGMfUxZbLxJc1XUN"
},
"uri": "spotify:artist:0oea1hwGMfUxZbLxJc1XUN",
"href": "https://api.spotify.com/v1/artists/0oea1hwGMfUxZbLxJc1XUN",
"type": "artist",
"id": "0oea1hwGMfUxZbLxJc1XUN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/819a0c094fea84336e77c74cb3c078583fe13261",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/431911244ec9aef3230dd15ee794a946ed90d2db",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0bc8928b6a705c378784edfaaa5680154574c806",
"width": 64,
"height": 64
}
],
"id": "7aXRSPsEDgXGxFGY235DYz"
},
"4s2hhmQizU4FHtRU7dDzHP": {
"name": "Nilsson Schmilsson",
"release_date": "1971",
"uri": "spotify:album:4s2hhmQizU4FHtRU7dDzHP",
"artists": [
{
"name": "Harry Nilsson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3RTzAwFprBqiskp550eSJX"
},
"uri": "spotify:artist:3RTzAwFprBqiskp550eSJX",
"href": "https://api.spotify.com/v1/artists/3RTzAwFprBqiskp550eSJX",
"type": "artist",
"id": "3RTzAwFprBqiskp550eSJX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a5768aaae5953d5781289eee81cef85ac36f161f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/144923cddd39a04b4d511e93ac10f59d3acd1a31",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/75e2a9244fc43657c2fc225e5fa496844b6e9071",
"width": 64,
"height": 64
}
],
"id": "4s2hhmQizU4FHtRU7dDzHP"
},
"4nQe6IzubN7cE7EWzrIvu4": {
"name": "The Yes Album (Deluxe Version)",
"release_date": "1971-02-19",
"uri": "spotify:album:4nQe6IzubN7cE7EWzrIvu4",
"artists": [
{
"name": "Yes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7AC976RDJzL2asmZuz7qil"
},
"uri": "spotify:artist:7AC976RDJzL2asmZuz7qil",
"href": "https://api.spotify.com/v1/artists/7AC976RDJzL2asmZuz7qil",
"type": "artist",
"id": "7AC976RDJzL2asmZuz7qil"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c6813fd971b3df2a4c56ff788a33d500a28b2ac5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b4d65b7266ba18ab18546a877bf9333ee7bd7126",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a2e13c8d7581731dcc566f7bf65245c61773ad3e",
"width": 64,
"height": 64
}
],
"id": "4nQe6IzubN7cE7EWzrIvu4"
},
"0d72ueyZJ4Hiplg0jebzGM": {
"name": "Alien Lanes",
"release_date": "1995",
"uri": "spotify:album:0d72ueyZJ4Hiplg0jebzGM",
"artists": [
{
"name": "Guided By Voices",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4oV5EVJ0XFWsJKoOvdRPvl"
},
"uri": "spotify:artist:4oV5EVJ0XFWsJKoOvdRPvl",
"href": "https://api.spotify.com/v1/artists/4oV5EVJ0XFWsJKoOvdRPvl",
"type": "artist",
"id": "4oV5EVJ0XFWsJKoOvdRPvl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7a19691b9004ef0eb6d8a51c4c344776df8d3809",
"width": 600,
"height": 512
},
{
"url": "https://i.scdn.co/image/b428ee3dee6bdca09c9aceb6cc4c3c368aac09e2",
"width": 300,
"height": 256
},
{
"url": "https://i.scdn.co/image/c3c08ea019e9dc2754d73075e6e3f2645f09bc58",
"width": 64,
"height": 55
}
],
"id": "0d72ueyZJ4Hiplg0jebzGM"
},
"2dAxS22qLNJsj2QbmYCr1V": {
"name": "Live 1966 \"The Royal Albert Hall Concert\" The Bootleg Series Vol. 4",
"release_date": "1967-01-02",
"uri": "spotify:album:2dAxS22qLNJsj2QbmYCr1V",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/345b3d71731a714d6d247c2bc4ec541b2afcb5e5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7a48097be484074e522501642c6c7f302e47e102",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1e4283829375058894a836fddd7cecd6f17a5e4e",
"width": 64,
"height": 64
}
],
"id": "2dAxS22qLNJsj2QbmYCr1V"
},
"0f0nGqpgiu4z6wg0Mrcs8L": {
"name": "Power In Numbers",
"release_date": "2002-01-01",
"uri": "spotify:album:0f0nGqpgiu4z6wg0Mrcs8L",
"artists": [
{
"name": "Jurassic 5",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6wFId9Jhuf9AKVzWboOj2B"
},
"uri": "spotify:artist:6wFId9Jhuf9AKVzWboOj2B",
"href": "https://api.spotify.com/v1/artists/6wFId9Jhuf9AKVzWboOj2B",
"type": "artist",
"id": "6wFId9Jhuf9AKVzWboOj2B"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6449546e47fa0381fb27e92d400a9c89d9b6b9d1",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/241e3ebd29964d7c4be2a5b62553af4a9877d4e2",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/801f112a7fea384e01140e2e7fa03ba17efac093",
"width": 64,
"height": 63
}
],
"id": "0f0nGqpgiu4z6wg0Mrcs8L"
},
"1wVO8nHzgcim0IBzbXnYX0": {
"name": "Bitches Brew (Legacy Edition)",
"release_date": "1970",
"uri": "spotify:album:1wVO8nHzgcim0IBzbXnYX0",
"artists": [
{
"name": "Miles Davis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0kbYTNQb4Pb1rPbbaF0pT4"
},
"uri": "spotify:artist:0kbYTNQb4Pb1rPbbaF0pT4",
"href": "https://api.spotify.com/v1/artists/0kbYTNQb4Pb1rPbbaF0pT4",
"type": "artist",
"id": "0kbYTNQb4Pb1rPbbaF0pT4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2cffd5bffc3d1e04a2e4a46331130a495f49eb92",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/386be52b7275144c40bdbcc9b55a25c2d1cb36ec",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/966059a196d2c38a634f57e1fa98621547182980",
"width": 64,
"height": 64
}
],
"id": "1wVO8nHzgcim0IBzbXnYX0"
},
"4pk3tltFMVlT06MLJfmWTT": {
"name": "Picture Book [Expanded] (US DMD)",
"release_date": "1985",
"uri": "spotify:album:4pk3tltFMVlT06MLJfmWTT",
"artists": [
{
"name": "Simply Red",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1fa0cOhromAZdq2xRA4vv8"
},
"uri": "spotify:artist:1fa0cOhromAZdq2xRA4vv8",
"href": "https://api.spotify.com/v1/artists/1fa0cOhromAZdq2xRA4vv8",
"type": "artist",
"id": "1fa0cOhromAZdq2xRA4vv8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/62d49c78ee74dbeb64bc2bfb6cd058eca0d09379",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b6b8e753bd45b2370b5c8200d3ed9529b56cd41c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f9314e793defe083e3e97e29d8e8b2ff2ffbadcb",
"width": 64,
"height": 64
}
],
"id": "4pk3tltFMVlT06MLJfmWTT"
},
"1aBpWwhrZi3WEfKLAFFMMB": {
"name": "Solid Air (Remastered)",
"release_date": "1973",
"uri": "spotify:album:1aBpWwhrZi3WEfKLAFFMMB",
"artists": [
{
"name": "John Martyn",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3JulrApLVT81sb2HkfwMks"
},
"uri": "spotify:artist:3JulrApLVT81sb2HkfwMks",
"href": "https://api.spotify.com/v1/artists/3JulrApLVT81sb2HkfwMks",
"type": "artist",
"id": "3JulrApLVT81sb2HkfwMks"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a5bcc4332752d2d5b6265e271d9b35bc97096463",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f8f275d92935ceaa1d1f248ad1baf9ef969eeb23",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/aebe66e848e6a756fc2e1c4d892a4490ada1adff",
"width": 64,
"height": 64
}
],
"id": "1aBpWwhrZi3WEfKLAFFMMB"
},
"5wqa3AIalAtzA7X9HIuAer": {
"name": "Tigermilk",
"release_date": "1996",
"uri": "spotify:album:5wqa3AIalAtzA7X9HIuAer",
"artists": [
{
"name": "Belle & Sebastian",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4I2BJf80C0skQpp1sQmA0h"
},
"uri": "spotify:artist:4I2BJf80C0skQpp1sQmA0h",
"href": "https://api.spotify.com/v1/artists/4I2BJf80C0skQpp1sQmA0h",
"type": "artist",
"id": "4I2BJf80C0skQpp1sQmA0h"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f61413ad7405d1c9c5378b658aaae10edaa3191a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/22f2917818be8096cbaed454a32395f4f4b0eb4b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cf2c1c9ef95fb85614587c42c552043546296726",
"width": 64,
"height": 64
}
],
"id": "5wqa3AIalAtzA7X9HIuAer"
},
"3OrGW7wRB8dIZ8EYrAkkWW": {
"name": "Fire Of Love",
"release_date": "1981",
"uri": "spotify:album:3OrGW7wRB8dIZ8EYrAkkWW",
"artists": [
{
"name": "The Gun Club",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Un18X4NF1bpjgUk44lUzn"
},
"uri": "spotify:artist:3Un18X4NF1bpjgUk44lUzn",
"href": "https://api.spotify.com/v1/artists/3Un18X4NF1bpjgUk44lUzn",
"type": "artist",
"id": "3Un18X4NF1bpjgUk44lUzn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5f42bcba879e31233fb49b57dce7012b413ce52e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/12ce19861134368fe4f3705894687df1122c7f96",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/181256249203020071da82df6b3e94b6bffcd1ae",
"width": 64,
"height": 64
}
],
"id": "3OrGW7wRB8dIZ8EYrAkkWW"
},
"20YQiWvyD8Yi7Xge7ukVrm": {
"name": "Loveless",
"release_date": "2012-05-04",
"uri": "spotify:album:20YQiWvyD8Yi7Xge7ukVrm",
"artists": [
{
"name": "My Bloody Valentine",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3G3Gdm0ZRAOxLrbyjfhii5"
},
"uri": "spotify:artist:3G3Gdm0ZRAOxLrbyjfhii5",
"href": "https://api.spotify.com/v1/artists/3G3Gdm0ZRAOxLrbyjfhii5",
"type": "artist",
"id": "3G3Gdm0ZRAOxLrbyjfhii5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cd38bf0fc3a2465d8fe3fbaf1e0cbe3e6c04d4c5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ea708240bb0d63f19668674bddaf01be234eb477",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/173470b67deafdaca95d1e1b25ab42f9a7467ea5",
"width": 64,
"height": 64
}
],
"id": "20YQiWvyD8Yi7Xge7ukVrm"
},
"3V1DTSotrDIC14Zsb07S9S": {
"name": "Bug",
"release_date": "1988",
"uri": "spotify:album:3V1DTSotrDIC14Zsb07S9S",
"artists": [
{
"name": "Dinosaur Jr.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/267VY6GX5LyU5c9M85ECZQ"
},
"uri": "spotify:artist:267VY6GX5LyU5c9M85ECZQ",
"href": "https://api.spotify.com/v1/artists/267VY6GX5LyU5c9M85ECZQ",
"type": "artist",
"id": "267VY6GX5LyU5c9M85ECZQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e80b11086c471f89a75fd6cd67879f1e45efe612",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/caf830cc5219ebb7337c205e729f2631af6e3af4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6df1895ff20176f9ba012643b725111d9a4ab130",
"width": 64,
"height": 64
}
],
"id": "3V1DTSotrDIC14Zsb07S9S"
},
"04TlWfr3EnQE47HyNTBnex": {
"name": "Pieces Of The Sky",
"release_date": "1975",
"uri": "spotify:album:04TlWfr3EnQE47HyNTBnex",
"artists": [
{
"name": "Emmylou Harris",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5s6TJEuHTr9GR894wc6VfP"
},
"uri": "spotify:artist:5s6TJEuHTr9GR894wc6VfP",
"href": "https://api.spotify.com/v1/artists/5s6TJEuHTr9GR894wc6VfP",
"type": "artist",
"id": "5s6TJEuHTr9GR894wc6VfP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2576d16961dfb10389f98c74cca6d0924150cc3d",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/59d57eaa16e12f469607c6fa652c278d3f77f667",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/ac0638c4e743745f14f4bc4ccefe0b6376eec38f",
"width": 64,
"height": 64
}
],
"id": "04TlWfr3EnQE47HyNTBnex"
},
"4KT6G8fj8EEIfsyr75hbgc": {
"name": "Darkness on the Edge of Town (2010 Remastered Version)",
"release_date": "1978-06-02",
"uri": "spotify:album:4KT6G8fj8EEIfsyr75hbgc",
"artists": [
{
"name": "Bruce Springsteen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT"
},
"uri": "spotify:artist:3eqjTLE0HfPfh78zjh6TqT",
"href": "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT",
"type": "artist",
"id": "3eqjTLE0HfPfh78zjh6TqT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/38d697f8036d08d6f9302d0113ff28eca8574550",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c8148868436416cd70acaa93b20eebaf99b3987e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4fa48d6566f5614b40e8c8785def035e53167bb8",
"width": 64,
"height": 64
}
],
"id": "4KT6G8fj8EEIfsyr75hbgc"
},
"35w2w6W38bXCo4bG1akRe9": {
"name": "At Fillmore East",
"release_date": "1971-01-01",
"uri": "spotify:album:35w2w6W38bXCo4bG1akRe9",
"artists": [
{
"name": "The Allman Brothers Band",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4wQ3PyMz3WwJGI5uEqHUVR"
},
"uri": "spotify:artist:4wQ3PyMz3WwJGI5uEqHUVR",
"href": "https://api.spotify.com/v1/artists/4wQ3PyMz3WwJGI5uEqHUVR",
"type": "artist",
"id": "4wQ3PyMz3WwJGI5uEqHUVR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7b7fd45efa9b596ba41125a34963af81b11f11df",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/0468734b3dec4521326f160ef484e3b162600567",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/2b8662273cdbc5b55ab1692fd36f1f23ab7e9b51",
"width": 64,
"height": 63
}
],
"id": "35w2w6W38bXCo4bG1akRe9"
},
"3lBj2RCCsbfHkTJUmxJJZX": {
"name": "The Best Of Caetano Velose - Sem Lenco Sem Documento",
"release_date": "1990",
"uri": "spotify:album:3lBj2RCCsbfHkTJUmxJJZX",
"artists": [
{
"name": "Caetano Veloso",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7HGNYPmbDrMkylWqeFCOIQ"
},
"uri": "spotify:artist:7HGNYPmbDrMkylWqeFCOIQ",
"href": "https://api.spotify.com/v1/artists/7HGNYPmbDrMkylWqeFCOIQ",
"type": "artist",
"id": "7HGNYPmbDrMkylWqeFCOIQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/06cc7575d30c938e5106688ec0d88ec4150d1c54",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/7ede68b6547c16cfa70010c84081f52e6a05e4ff",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/efe84879b5ca8f4aa72fc140d8c495d7f4e6e6be",
"width": 64,
"height": 63
}
],
"id": "3lBj2RCCsbfHkTJUmxJJZX"
},
"4XPVSflb8Y0ENSxKuYzgXc": {
"name": "E.V.O.L.",
"release_date": "1986",
"uri": "spotify:album:4XPVSflb8Y0ENSxKuYzgXc",
"artists": [
{
"name": "Sonic Youth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5UqTO8smerMvxHYA5xsXb6"
},
"uri": "spotify:artist:5UqTO8smerMvxHYA5xsXb6",
"href": "https://api.spotify.com/v1/artists/5UqTO8smerMvxHYA5xsXb6",
"type": "artist",
"id": "5UqTO8smerMvxHYA5xsXb6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d256dac3a66e823efb3f6aee334605121e65ac8b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/541192aa9d92279eddb591a1911e92e2a75b581b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4c35dc97e48777f33704a573ecc768ea1951a155",
"width": 64,
"height": 64
}
],
"id": "4XPVSflb8Y0ENSxKuYzgXc"
},
"69jyJl6Lyo80nQae0X312i": {
"name": "The Madcap Laughs",
"release_date": "1970",
"uri": "spotify:album:69jyJl6Lyo80nQae0X312i",
"artists": [
{
"name": "Syd Barrett",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6Lt3HS8R2v8Q4G7ZkUWa8R"
},
"uri": "spotify:artist:6Lt3HS8R2v8Q4G7ZkUWa8R",
"href": "https://api.spotify.com/v1/artists/6Lt3HS8R2v8Q4G7ZkUWa8R",
"type": "artist",
"id": "6Lt3HS8R2v8Q4G7ZkUWa8R"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9408574c97b9effffa22f08ac3dddc838b2e2c5f",
"width": 637,
"height": 640
},
{
"url": "https://i.scdn.co/image/13a13cab5f5d357b39edab78e60ba0d40966d4e4",
"width": 299,
"height": 300
},
{
"url": "https://i.scdn.co/image/49141322803f058ca92ade5dca4b382ce723db12",
"width": 64,
"height": 64
}
],
"id": "69jyJl6Lyo80nQae0X312i"
},
"0SmIkzc7YgxqBV0V5RcbPt": {
"name": "Somewhere Back In Time",
"release_date": "2008-05-12",
"uri": "spotify:album:0SmIkzc7YgxqBV0V5RcbPt",
"artists": [
{
"name": "Iron Maiden",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6mdiAmATAx73kdxrNrnlao"
},
"uri": "spotify:artist:6mdiAmATAx73kdxrNrnlao",
"href": "https://api.spotify.com/v1/artists/6mdiAmATAx73kdxrNrnlao",
"type": "artist",
"id": "6mdiAmATAx73kdxrNrnlao"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6ad69600069853d464f85fdcbc56dd444ea38048",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c33f8bff762c6447a441a0e332e96f4dbe2a3e74",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4e87b12eccb0172758f106b52538f55ce0a30205",
"width": 64,
"height": 64
}
],
"id": "0SmIkzc7YgxqBV0V5RcbPt"
},
"365ETCJBUmEWroc4UGBS1u": {
"name": "A Grand Don't Come For Free",
"release_date": "2004-05-11",
"uri": "spotify:album:365ETCJBUmEWroc4UGBS1u",
"artists": [
{
"name": "The Streets",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4GvOygVQquMaPm8oAc0vXi"
},
"uri": "spotify:artist:4GvOygVQquMaPm8oAc0vXi",
"href": "https://api.spotify.com/v1/artists/4GvOygVQquMaPm8oAc0vXi",
"type": "artist",
"id": "4GvOygVQquMaPm8oAc0vXi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/408127d881d5f3b97ee857e7759eeca0e47c683e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/398819489c9442db0f0b9cffb8d12ff3378a2771",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/846d7ef80dea1ee21fd291df47c29771cd038f08",
"width": 64,
"height": 64
}
],
"id": "365ETCJBUmEWroc4UGBS1u"
},
"63k57x0qOkUWEMR0dkMivh": {
"name": "Rumours",
"release_date": "1977-02-04",
"uri": "spotify:album:63k57x0qOkUWEMR0dkMivh",
"artists": [
{
"name": "Fleetwood Mac",
"external_urls": {
"spotify": "https://open.spotify.com/artist/08GQAI4eElDnROBrJRGE0X"
},
"uri": "spotify:artist:08GQAI4eElDnROBrJRGE0X",
"href": "https://api.spotify.com/v1/artists/08GQAI4eElDnROBrJRGE0X",
"type": "artist",
"id": "08GQAI4eElDnROBrJRGE0X"
}
],
"images": [
{
"url": "https://i.scdn.co/image/31ee3e4265ba3c5098a8928c05d001a3b3033710",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/12fe04b0eb5ba5ecbfa9f508da60c2669719102e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/81e87467e4daac8335eb2c332cb964f3b5cc30d4",
"width": 64,
"height": 64
}
],
"id": "63k57x0qOkUWEMR0dkMivh"
},
"0um9FI6BLBldL5POP4D4Cw": {
"name": "The Stone Roses",
"release_date": "1989-05-01",
"uri": "spotify:album:0um9FI6BLBldL5POP4D4Cw",
"artists": [
{
"name": "The Stone Roses",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1lYT0A0LV5DUfxr6doRP3d"
},
"uri": "spotify:artist:1lYT0A0LV5DUfxr6doRP3d",
"href": "https://api.spotify.com/v1/artists/1lYT0A0LV5DUfxr6doRP3d",
"type": "artist",
"id": "1lYT0A0LV5DUfxr6doRP3d"
}
],
"images": [
{
"url": "https://i.scdn.co/image/73a8647acbfda033a24ea20c2165f22efae52689",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bce184d7615461383f26647316ccffa929a5491d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/932db6692c81db13e41615775c84d24df7bcd72e",
"width": 64,
"height": 64
}
],
"id": "0um9FI6BLBldL5POP4D4Cw"
},
"1zIMTcrFvFaK6D2xmQjGTx": {
"name": "Two Dancers",
"release_date": "2009-08-02",
"uri": "spotify:album:1zIMTcrFvFaK6D2xmQjGTx",
"artists": [
{
"name": "Wild Beasts",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4zrFO6P7G6EZry0pfxMfKT"
},
"uri": "spotify:artist:4zrFO6P7G6EZry0pfxMfKT",
"href": "https://api.spotify.com/v1/artists/4zrFO6P7G6EZry0pfxMfKT",
"type": "artist",
"id": "4zrFO6P7G6EZry0pfxMfKT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/980803828abfc2c65bbc9da00eb500e99066d950",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/991e6a527d04c1999a26aa40d6abe1745766491a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2e62d6853e5dfde7c825292bc5938226912e09e8",
"width": 64,
"height": 64
}
],
"id": "1zIMTcrFvFaK6D2xmQjGTx"
},
"5Uv5LmSKTT9okGkr3l9MjR": {
"name": "Rocks",
"release_date": "1976",
"uri": "spotify:album:5Uv5LmSKTT9okGkr3l9MjR",
"artists": [
{
"name": "Aerosmith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7Ey4PD4MYsKc5I2dolUwbH"
},
"uri": "spotify:artist:7Ey4PD4MYsKc5I2dolUwbH",
"href": "https://api.spotify.com/v1/artists/7Ey4PD4MYsKc5I2dolUwbH",
"type": "artist",
"id": "7Ey4PD4MYsKc5I2dolUwbH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1fd2a08bba6be97af05efd699119a2e3e1e5c658",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1649112d5860e94751ead1ba4b7f901c98db5bd9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ba81216d0188c6db495c9160d7be1a39ac87efe4",
"width": 64,
"height": 64
}
],
"id": "5Uv5LmSKTT9okGkr3l9MjR"
},
"4qUKzyXuy3GSzQD5RTJLdq": {
"name": "The Contino Sessions",
"release_date": "1999",
"uri": "spotify:album:4qUKzyXuy3GSzQD5RTJLdq",
"artists": [
{
"name": "Death In Vegas",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5aj3LEYRbuaabjjHkj5oE1"
},
"uri": "spotify:artist:5aj3LEYRbuaabjjHkj5oE1",
"href": "https://api.spotify.com/v1/artists/5aj3LEYRbuaabjjHkj5oE1",
"type": "artist",
"id": "5aj3LEYRbuaabjjHkj5oE1"
}
],
"images": [
{
"url": "https://i.scdn.co/image/66522d5e785e4ecb77f93d3d07bcd08baf3bf232",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/690d2c84934d8fd96263a7d5dcd2d7acc3c37cf6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/63243deb2b1caeccc3056898d951140ec62e0fde",
"width": 64,
"height": 64
}
],
"id": "4qUKzyXuy3GSzQD5RTJLdq"
},
"3W6dGZZiH1GxBiQWE5CjzK": {
"name": "FourFiveSeconds",
"release_date": "2015-01-25",
"uri": "spotify:album:3W6dGZZiH1GxBiQWE5CjzK",
"artists": [
{
"name": "Rihanna",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5pKCCKE2ajJHZ9KAiaK11H"
},
"uri": "spotify:artist:5pKCCKE2ajJHZ9KAiaK11H",
"href": "https://api.spotify.com/v1/artists/5pKCCKE2ajJHZ9KAiaK11H",
"type": "artist",
"id": "5pKCCKE2ajJHZ9KAiaK11H"
},
{
"name": "Paul McCartney",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4STHEaNw4mPZ2tzheohgXB"
},
"uri": "spotify:artist:4STHEaNw4mPZ2tzheohgXB",
"href": "https://api.spotify.com/v1/artists/4STHEaNw4mPZ2tzheohgXB",
"type": "artist",
"id": "4STHEaNw4mPZ2tzheohgXB"
},
{
"name": "Kanye West",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5K4W6rqBFWDnAN6FQUkS6x"
},
"uri": "spotify:artist:5K4W6rqBFWDnAN6FQUkS6x",
"href": "https://api.spotify.com/v1/artists/5K4W6rqBFWDnAN6FQUkS6x",
"type": "artist",
"id": "5K4W6rqBFWDnAN6FQUkS6x"
}
],
"images": [
{
"url": "https://i.scdn.co/image/130984e4659a23b16b43ff234cb9be1cf1ed0eb5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1dd75fe38b211d56a31e14cbf73824e5e9100435",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/22d77a9787ab1dc2f1977757375498b3796d708b",
"width": 64,
"height": 64
}
],
"id": "3W6dGZZiH1GxBiQWE5CjzK"
},
"4jcbc5NOowR1ymMlCMwgHZ": {
"name": "Chelsea Girl",
"release_date": "1967-01-01",
"uri": "spotify:album:4jcbc5NOowR1ymMlCMwgHZ",
"artists": [
{
"name": "Nico",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0IwlY33zbBXN7zlS9DP2Cj"
},
"uri": "spotify:artist:0IwlY33zbBXN7zlS9DP2Cj",
"href": "https://api.spotify.com/v1/artists/0IwlY33zbBXN7zlS9DP2Cj",
"type": "artist",
"id": "0IwlY33zbBXN7zlS9DP2Cj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cfa7d4e100ba2fd45c9f3b979094ae2b3c9d37cb",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/6552b232dd79684dc1f61b189be60bbfa26e151d",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/73d11b6dd3e83d4251450a3ceb67e09a8ecb6007",
"width": 64,
"height": 63
}
],
"id": "4jcbc5NOowR1ymMlCMwgHZ"
},
"39jgim5XzgEWo7OsCcxxxO": {
"name": "Histoire De Melody Nelson - 40\u00e8me Anniversaire",
"release_date": "1971",
"uri": "spotify:album:39jgim5XzgEWo7OsCcxxxO",
"artists": [
{
"name": "Serge Gainsbourg",
"external_urls": {
"spotify": "https://open.spotify.com/artist/01C9OoXDvCKkGcf735Tcfo"
},
"uri": "spotify:artist:01C9OoXDvCKkGcf735Tcfo",
"href": "https://api.spotify.com/v1/artists/01C9OoXDvCKkGcf735Tcfo",
"type": "artist",
"id": "01C9OoXDvCKkGcf735Tcfo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9e2823fcd4d28e230d8ec6d63dc4e7799b4cffb5",
"width": 640,
"height": 579
},
{
"url": "https://i.scdn.co/image/26ea71d7e4b8e8bfb5f49a4d5bff54f1e974732e",
"width": 300,
"height": 272
},
{
"url": "https://i.scdn.co/image/ac27ec902d10f0ddb80af7ce82034ced7bddfc40",
"width": 64,
"height": 58
}
],
"id": "39jgim5XzgEWo7OsCcxxxO"
},
"6muSL4nbb1NJFK2zLgmJWo": {
"name": "Fuzzy Logic",
"release_date": "1996-05-15",
"uri": "spotify:album:6muSL4nbb1NJFK2zLgmJWo",
"artists": [
{
"name": "Super Furry Animals",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0FOcXqJgJ1oq9XfzYTDZmZ"
},
"uri": "spotify:artist:0FOcXqJgJ1oq9XfzYTDZmZ",
"href": "https://api.spotify.com/v1/artists/0FOcXqJgJ1oq9XfzYTDZmZ",
"type": "artist",
"id": "0FOcXqJgJ1oq9XfzYTDZmZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3002bb3aec4388a95e15cbd08f013257e0b0e0f5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8ff17aca50147da42871852c3616c0cbc18676ad",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b734ccd3b7c253dfc2f05a90d0784bc37cc57f56",
"width": 64,
"height": 64
}
],
"id": "6muSL4nbb1NJFK2zLgmJWo"
},
"1XZ0Qb4Rrz0j2SMFmELVRH": {
"name": "1977 [Collectors Edition]",
"release_date": "1996-05-06",
"uri": "spotify:album:1XZ0Qb4Rrz0j2SMFmELVRH",
"artists": [
{
"name": "Ash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2evydP72Z45DouM4uMGsIE"
},
"uri": "spotify:artist:2evydP72Z45DouM4uMGsIE",
"href": "https://api.spotify.com/v1/artists/2evydP72Z45DouM4uMGsIE",
"type": "artist",
"id": "2evydP72Z45DouM4uMGsIE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/411abb6f2ad5beacbe2f6ff8a710d8d2a0188bee",
"width": 639,
"height": 577
},
{
"url": "https://i.scdn.co/image/d97b67a6ed210b9b7dcb15486163c8c8462c1723",
"width": 300,
"height": 271
},
{
"url": "https://i.scdn.co/image/6102ab66ef72acf185677f980520b1a4fc508b9a",
"width": 64,
"height": 58
}
],
"id": "1XZ0Qb4Rrz0j2SMFmELVRH"
},
"6ggO3YVhyonYuFWUPBRyIv": {
"name": "Never Mind The Bollocks, Here\u2019s The Sex Pistols",
"release_date": "1977-10-27",
"uri": "spotify:album:6ggO3YVhyonYuFWUPBRyIv",
"artists": [
{
"name": "Sex Pistols",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1u7kkVrr14iBvrpYnZILJR"
},
"uri": "spotify:artist:1u7kkVrr14iBvrpYnZILJR",
"href": "https://api.spotify.com/v1/artists/1u7kkVrr14iBvrpYnZILJR",
"type": "artist",
"id": "1u7kkVrr14iBvrpYnZILJR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6dd17e0c2d15e64fa56fc4c947034945e1098167",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4aca38fa6fc4df26994f65e96f7e137a02c2b951",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2c9766d7aa298aaaf58402a8422386521e079690",
"width": 64,
"height": 64
}
],
"id": "6ggO3YVhyonYuFWUPBRyIv"
},
"5dqFVDJ9lPRBCqEzufd8sF": {
"name": "Parsley, Sage, Rosemary And Thyme",
"release_date": "1966-10-10",
"uri": "spotify:album:5dqFVDJ9lPRBCqEzufd8sF",
"artists": [
{
"name": "Simon & Garfunkel",
"external_urls": {
"spotify": "https://open.spotify.com/artist/70cRZdQywnSFp9pnc2WTCE"
},
"uri": "spotify:artist:70cRZdQywnSFp9pnc2WTCE",
"href": "https://api.spotify.com/v1/artists/70cRZdQywnSFp9pnc2WTCE",
"type": "artist",
"id": "70cRZdQywnSFp9pnc2WTCE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/55c46775c3a385b007a9ddea09fd2450f0782997",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/26105999ac5407065073e9f9048b6840716eaa66",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/278bf61137835afc67a0996d4d14d1551039c027",
"width": 64,
"height": 64
}
],
"id": "5dqFVDJ9lPRBCqEzufd8sF"
},
"1C7VOpm96d77zf5yaRqJ2u": {
"name": "Rapture",
"release_date": "1986-01-01",
"uri": "spotify:album:1C7VOpm96d77zf5yaRqJ2u",
"artists": [
{
"name": "Anita Baker",
"external_urls": {
"spotify": "https://open.spotify.com/artist/46CH1Gp8l8QVly8bpG9JFG"
},
"uri": "spotify:artist:46CH1Gp8l8QVly8bpG9JFG",
"href": "https://api.spotify.com/v1/artists/46CH1Gp8l8QVly8bpG9JFG",
"type": "artist",
"id": "46CH1Gp8l8QVly8bpG9JFG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2a638dd8506bc1d60b1542d7580e476a258b1cab",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7c2c8344ab1ef8b1d9b20f5b54e1aa926132eb30",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d7dbc95aefbfdb900a32d7d0850501d671ce2fc8",
"width": 64,
"height": 64
}
],
"id": "1C7VOpm96d77zf5yaRqJ2u"
},
"0btkVh2TIc79B4ERtH5rWt": {
"name": "I Against I",
"release_date": "1986",
"uri": "spotify:album:0btkVh2TIc79B4ERtH5rWt",
"artists": [
{
"name": "Bad Brains",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1oVj9JmPUPg4SQ2uerV2xc"
},
"uri": "spotify:artist:1oVj9JmPUPg4SQ2uerV2xc",
"href": "https://api.spotify.com/v1/artists/1oVj9JmPUPg4SQ2uerV2xc",
"type": "artist",
"id": "1oVj9JmPUPg4SQ2uerV2xc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0802c0e3914cb6c6d8db0961d072f12dad7a8a92",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5da170498d4ce59ca742270a90db1f9c8bb6fa9b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eaae98af182c2f44c9648a906cb39922d60204cb",
"width": 64,
"height": 64
}
],
"id": "0btkVh2TIc79B4ERtH5rWt"
},
"532IlegHv3OfVGgyCFGBTs": {
"name": "Vivid",
"release_date": "1988",
"uri": "spotify:album:532IlegHv3OfVGgyCFGBTs",
"artists": [
{
"name": "Living Colour",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6Uhp7WA6sjm5ZL6Xz561de"
},
"uri": "spotify:artist:6Uhp7WA6sjm5ZL6Xz561de",
"href": "https://api.spotify.com/v1/artists/6Uhp7WA6sjm5ZL6Xz561de",
"type": "artist",
"id": "6Uhp7WA6sjm5ZL6Xz561de"
}
],
"images": [
{
"url": "https://i.scdn.co/image/832b0f2092c179d5f5095234caf27f63eda35169",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4111af7d47717a75a50b53c90a8b1ad997f69101",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/98cfe7d0467a90450df3c0cbb891295d062f5633",
"width": 64,
"height": 64
}
],
"id": "532IlegHv3OfVGgyCFGBTs"
},
"7kLLC7CN8oxt0HgP2a051K": {
"name": "Tapestry (Legacy Edition)",
"release_date": "2008-04-22",
"uri": "spotify:album:7kLLC7CN8oxt0HgP2a051K",
"artists": [
{
"name": "Carole King",
"external_urls": {
"spotify": "https://open.spotify.com/artist/319yZVtYM9MBGqmSQnMyY6"
},
"uri": "spotify:artist:319yZVtYM9MBGqmSQnMyY6",
"href": "https://api.spotify.com/v1/artists/319yZVtYM9MBGqmSQnMyY6",
"type": "artist",
"id": "319yZVtYM9MBGqmSQnMyY6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7638f1da35bb4a5105aee22a1c8b661662ee4bbd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2249ab356ac7189c69b6344c8647ab6386fc1576",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c42b53119ae76a92ea0793e422bc96a878504bb3",
"width": 64,
"height": 64
}
],
"id": "7kLLC7CN8oxt0HgP2a051K"
},
"0DzC0tyowMi2O9QfkDRvfJ": {
"name": "Autobahn (2009 Remastered Version)",
"release_date": "1974",
"uri": "spotify:album:0DzC0tyowMi2O9QfkDRvfJ",
"artists": [
{
"name": "Kraftwerk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0dmPX6ovclgOy8WWJaFEUU"
},
"uri": "spotify:artist:0dmPX6ovclgOy8WWJaFEUU",
"href": "https://api.spotify.com/v1/artists/0dmPX6ovclgOy8WWJaFEUU",
"type": "artist",
"id": "0dmPX6ovclgOy8WWJaFEUU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/59ebf78a594c1f7dd7869711cb8aa21479cc2dea",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/15b21c419e1c49bfe61f4fcdb8a8d641d693e130",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6367254d95e141108d9c69073ba41a4a39177cd6",
"width": 64,
"height": 64
}
],
"id": "0DzC0tyowMi2O9QfkDRvfJ"
},
"5SqbMEyAt8332ISGiLX0St": {
"name": "Transformer",
"release_date": "1972",
"uri": "spotify:album:5SqbMEyAt8332ISGiLX0St",
"artists": [
{
"name": "Lou Reed",
"external_urls": {
"spotify": "https://open.spotify.com/artist/42TFhl7WlMRXiNqzSrnzPL"
},
"uri": "spotify:artist:42TFhl7WlMRXiNqzSrnzPL",
"href": "https://api.spotify.com/v1/artists/42TFhl7WlMRXiNqzSrnzPL",
"type": "artist",
"id": "42TFhl7WlMRXiNqzSrnzPL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0f1b44a6e96d2a36b63957997836373be667be34",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/19e4828ddb234b8061dc0e0c689358224302de27",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/89f1214327e99dfdb598e67c0dc4d15f00c591b2",
"width": 64,
"height": 64
}
],
"id": "5SqbMEyAt8332ISGiLX0St"
},
"3tQd5mwBtVyxCoEo4htGAV": {
"name": "Enter The Wu-Tang Clan - 36 Chambers (Deluxe Version)",
"release_date": "2007-12-21",
"uri": "spotify:album:3tQd5mwBtVyxCoEo4htGAV",
"artists": [
{
"name": "Wu-Tang Clan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/34EP7KEpOjXcM2TCat1ISk"
},
"uri": "spotify:artist:34EP7KEpOjXcM2TCat1ISk",
"href": "https://api.spotify.com/v1/artists/34EP7KEpOjXcM2TCat1ISk",
"type": "artist",
"id": "34EP7KEpOjXcM2TCat1ISk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/24c942ab1327dbc953c0f68594194b439271b284",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/698e2edd55f41be33769f08906795c2e5b49d48e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/af0964ce00bd31f68e98de2cb518609bf99aabff",
"width": 64,
"height": 64
}
],
"id": "3tQd5mwBtVyxCoEo4htGAV"
},
"4j0BDfrtgQeMLA4RaSCch4": {
"name": "La Revancha Del Tango",
"release_date": "2001",
"uri": "spotify:album:4j0BDfrtgQeMLA4RaSCch4",
"artists": [
{
"name": "Gotan Project",
"external_urls": {
"spotify": "https://open.spotify.com/artist/44ejFPE33H5aOInxNV2BFP"
},
"uri": "spotify:artist:44ejFPE33H5aOInxNV2BFP",
"href": "https://api.spotify.com/v1/artists/44ejFPE33H5aOInxNV2BFP",
"type": "artist",
"id": "44ejFPE33H5aOInxNV2BFP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/532085acfb9d285dd04ca9fd617ab5214cd7705b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bc8617be21af1fd23dde4fb003648d820a480b4d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/dc4e4c46b3965bd82e3d49560213b00f6ea05de1",
"width": 64,
"height": 64
}
],
"id": "4j0BDfrtgQeMLA4RaSCch4"
},
"2zypwKIvhs5mxIxMSO5gJK": {
"name": "Calenture",
"release_date": "1987",
"uri": "spotify:album:2zypwKIvhs5mxIxMSO5gJK",
"artists": [
{
"name": "The Triffids",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2kTn692duPSkqN6czSilyk"
},
"uri": "spotify:artist:2kTn692duPSkqN6czSilyk",
"href": "https://api.spotify.com/v1/artists/2kTn692duPSkqN6czSilyk",
"type": "artist",
"id": "2kTn692duPSkqN6czSilyk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/613469711ade02c4fd5ab85cfe982dd9e64dad7f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dd77d297dfbc0d1299eeffbe65b5363aac8b5db3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6d0265469657bc58270faed69ea5f29270f67603",
"width": 64,
"height": 64
}
],
"id": "2zypwKIvhs5mxIxMSO5gJK"
},
"7LKQtdC6uWxqLzSbDonFij": {
"name": "\u00c1g\u00e6tis Byrjun",
"release_date": "1999",
"uri": "spotify:album:7LKQtdC6uWxqLzSbDonFij",
"artists": [
{
"name": "Sigur R\u00f3s",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6UUrUCIZtQeOf8tC0WuzRy"
},
"uri": "spotify:artist:6UUrUCIZtQeOf8tC0WuzRy",
"href": "https://api.spotify.com/v1/artists/6UUrUCIZtQeOf8tC0WuzRy",
"type": "artist",
"id": "6UUrUCIZtQeOf8tC0WuzRy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/53b38840e696a9332e64612e611691a2f3bfcf83",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/14f52d613a1f0525e2bc213388496b6173112088",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4251e620acee1552a503fb98ec796cf4d487dce6",
"width": 64,
"height": 64
}
],
"id": "7LKQtdC6uWxqLzSbDonFij"
},
"5aQE05ji4wayN65QCZkl0U": {
"name": "Groovin'",
"release_date": "1967",
"uri": "spotify:album:5aQE05ji4wayN65QCZkl0U",
"artists": [
{
"name": "The Young Rascals",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5X3TuTi9OIsJXMGxPwTKM2"
},
"uri": "spotify:artist:5X3TuTi9OIsJXMGxPwTKM2",
"href": "https://api.spotify.com/v1/artists/5X3TuTi9OIsJXMGxPwTKM2",
"type": "artist",
"id": "5X3TuTi9OIsJXMGxPwTKM2"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c8b5cad97a656518d0585bf6c1caafe84bc379a8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/31ce8c710dff92209444df27e879e7644e58b69a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/15adcbdbacc8956a0bf4d80d60da48e08fee4750",
"width": 64,
"height": 64
}
],
"id": "5aQE05ji4wayN65QCZkl0U"
},
"4akCXGsQEjlz6LsMGwRuDa": {
"name": "Debut",
"release_date": "1993-07-05",
"uri": "spotify:album:4akCXGsQEjlz6LsMGwRuDa",
"artists": [
{
"name": "Bj\u00f6rk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7w29UYBi0qsHi5RTcv3lmA"
},
"uri": "spotify:artist:7w29UYBi0qsHi5RTcv3lmA",
"href": "https://api.spotify.com/v1/artists/7w29UYBi0qsHi5RTcv3lmA",
"type": "artist",
"id": "7w29UYBi0qsHi5RTcv3lmA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/09a8d5c5404975b7244b6826adf0018623f46def",
"width": 640,
"height": 625
},
{
"url": "https://i.scdn.co/image/dce7e36f8454c7c826361b506ab6c8de10d9eab1",
"width": 300,
"height": 293
},
{
"url": "https://i.scdn.co/image/c6b892b58696dfa182d5fe0415d73ed0deabea15",
"width": 64,
"height": 63
}
],
"id": "4akCXGsQEjlz6LsMGwRuDa"
},
"1EPEx0lzGPCal0YRTJV66u": {
"name": "The Psychedelic Sounds of the 13th Floor Elevators",
"release_date": "2012-10-01",
"uri": "spotify:album:1EPEx0lzGPCal0YRTJV66u",
"artists": [
{
"name": "The 13th Floor Elevators",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7xYxgSJaIf7yOFLmknYX38"
},
"uri": "spotify:artist:7xYxgSJaIf7yOFLmknYX38",
"href": "https://api.spotify.com/v1/artists/7xYxgSJaIf7yOFLmknYX38",
"type": "artist",
"id": "7xYxgSJaIf7yOFLmknYX38"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f621caaefd8af1cb63b4709ca3ad3db86ef827d0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bd3e4c971020fa379a2a967d17edff30b8d3c8f3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/877bcaf150b0cd37678f51edccc46e889f6f353c",
"width": 64,
"height": 64
}
],
"id": "1EPEx0lzGPCal0YRTJV66u"
},
"0c5z5Upw96TWQrZz86V7uD": {
"name": "Technique",
"release_date": "1989-01-20",
"uri": "spotify:album:0c5z5Upw96TWQrZz86V7uD",
"artists": [
{
"name": "New Order",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0yNLKJebCb8Aueb54LYya3"
},
"uri": "spotify:artist:0yNLKJebCb8Aueb54LYya3",
"href": "https://api.spotify.com/v1/artists/0yNLKJebCb8Aueb54LYya3",
"type": "artist",
"id": "0yNLKJebCb8Aueb54LYya3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5ba85e77086fed9838c938137de9018890c0deae",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9df744c70c193b172052aa9c83bdb7c44cf5964d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/64545d9c8e0ef5bb9088e37f51db9b9631727aaa",
"width": 64,
"height": 64
}
],
"id": "0c5z5Upw96TWQrZz86V7uD"
},
"23dDYYL9z4gZjkR4cHrazY": {
"name": "Suede (Remastered)",
"release_date": "1993-03-29",
"uri": "spotify:album:23dDYYL9z4gZjkR4cHrazY",
"artists": [
{
"name": "Suede",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6PHIK3kjWggLtVygsOtpqS"
},
"uri": "spotify:artist:6PHIK3kjWggLtVygsOtpqS",
"href": "https://api.spotify.com/v1/artists/6PHIK3kjWggLtVygsOtpqS",
"type": "artist",
"id": "6PHIK3kjWggLtVygsOtpqS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ccd4e6201f92bc472563189b286ba4445bf7c767",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/15e8803b49169b9c2ac82049f0bad336e6f35b14",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a506ec4565a1dee39d6b8f17108865296d04daae",
"width": 64,
"height": 64
}
],
"id": "23dDYYL9z4gZjkR4cHrazY"
},
"5z8MFnoVUIfVo6MQW0uIul": {
"name": "Close To You",
"release_date": "1970-01-01",
"uri": "spotify:album:5z8MFnoVUIfVo6MQW0uIul",
"artists": [
{
"name": "Carpenters",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1eEfMU2AhEo7XnKgL7c304"
},
"uri": "spotify:artist:1eEfMU2AhEo7XnKgL7c304",
"href": "https://api.spotify.com/v1/artists/1eEfMU2AhEo7XnKgL7c304",
"type": "artist",
"id": "1eEfMU2AhEo7XnKgL7c304"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fa01dd3b688b7a71b28187b7863b15b698e63a00",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/00c05d7b1aed54787d729a3435ea018ec8024502",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/61c089e1e12d8141d74dd7692aa9cff936acc551",
"width": 64,
"height": 63
}
],
"id": "5z8MFnoVUIfVo6MQW0uIul"
},
"0nuPXgAXAfPmz9AW1PPrlk": {
"name": "Music From Big Pink",
"release_date": "1968",
"uri": "spotify:album:0nuPXgAXAfPmz9AW1PPrlk",
"artists": [
{
"name": "The Band",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4vpDg7Y7fU982Ds30zawDA"
},
"uri": "spotify:artist:4vpDg7Y7fU982Ds30zawDA",
"href": "https://api.spotify.com/v1/artists/4vpDg7Y7fU982Ds30zawDA",
"type": "artist",
"id": "4vpDg7Y7fU982Ds30zawDA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e906f96f2aea6c0b907aa79b46173d91bd0dc020",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/213677a0f7e47e8d64202b515ebfcf6cbbbd825f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7b8ebd53a3e0cceb32141d36afdcdcf90f9fe989",
"width": 64,
"height": 64
}
],
"id": "0nuPXgAXAfPmz9AW1PPrlk"
},
"6g6WBTqT5gE4fAcwRljpjc": {
"name": "Rings Around The World",
"release_date": "2001-07-16",
"uri": "spotify:album:6g6WBTqT5gE4fAcwRljpjc",
"artists": [
{
"name": "Super Furry Animals",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0FOcXqJgJ1oq9XfzYTDZmZ"
},
"uri": "spotify:artist:0FOcXqJgJ1oq9XfzYTDZmZ",
"href": "https://api.spotify.com/v1/artists/0FOcXqJgJ1oq9XfzYTDZmZ",
"type": "artist",
"id": "0FOcXqJgJ1oq9XfzYTDZmZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1e32a5d6c3202c887dee7507bca3f464dad61652",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/684eade0f76c1eb85886c4a2163454be12f25125",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d5abe43be22f75a7ffc275f5b8a0769edfac40d2",
"width": 64,
"height": 64
}
],
"id": "6g6WBTqT5gE4fAcwRljpjc"
},
"5Zxv8bCtxjz11jjypNdkEa": {
"name": "Aja",
"release_date": "1977",
"uri": "spotify:album:5Zxv8bCtxjz11jjypNdkEa",
"artists": [
{
"name": "Steely Dan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6P7H3ai06vU1sGvdpBwDmE"
},
"uri": "spotify:artist:6P7H3ai06vU1sGvdpBwDmE",
"href": "https://api.spotify.com/v1/artists/6P7H3ai06vU1sGvdpBwDmE",
"type": "artist",
"id": "6P7H3ai06vU1sGvdpBwDmE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f0561c4d5e10946e4ba2e0736fd1936fc2eb67a9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/36ac7382b2b84130c188aa0fd79ebc75fa75e0ea",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8a1f10a33c1c9de40087ccbc0124fc23e2ab8eb5",
"width": 64,
"height": 64
}
],
"id": "5Zxv8bCtxjz11jjypNdkEa"
},
"2m8DWhADf8ui1MDNAmjX8I": {
"name": "Surrealistic Pillow",
"release_date": "1967",
"uri": "spotify:album:2m8DWhADf8ui1MDNAmjX8I",
"artists": [
{
"name": "Jefferson Airplane",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2qFr8w5sWUITRlzZ9kZotF"
},
"uri": "spotify:artist:2qFr8w5sWUITRlzZ9kZotF",
"href": "https://api.spotify.com/v1/artists/2qFr8w5sWUITRlzZ9kZotF",
"type": "artist",
"id": "2qFr8w5sWUITRlzZ9kZotF"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8200247862e8e286b139c6316c6c6b43f42650ad",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f9c3d675e08026cf474ef17edb1431eb4ccc66fe",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1306797c48de25048380aca4eb84229a8ded7baf",
"width": 64,
"height": 64
}
],
"id": "2m8DWhADf8ui1MDNAmjX8I"
},
"0lz2QKjOwWpgzzouOUNWoe": {
"name": "Beach Samba",
"release_date": "1967",
"uri": "spotify:album:0lz2QKjOwWpgzzouOUNWoe",
"artists": [
{
"name": "Astrud Gilberto",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5rX2c1zow6hCph8PnnU3kF"
},
"uri": "spotify:artist:5rX2c1zow6hCph8PnnU3kF",
"href": "https://api.spotify.com/v1/artists/5rX2c1zow6hCph8PnnU3kF",
"type": "artist",
"id": "5rX2c1zow6hCph8PnnU3kF"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ed04e291b3aadd8852aec920d13439fdcb865a67",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/5fef84539ecbb857a04c0da778075d520659fced",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/a812b10a825fed4fdb1eac3463f40528cb122ed3",
"width": 64,
"height": 63
}
],
"id": "0lz2QKjOwWpgzzouOUNWoe"
},
"4P5bvMUWhoYILjMf2fhKxZ": {
"name": "Maggot Brain",
"release_date": "1971-07-12",
"uri": "spotify:album:4P5bvMUWhoYILjMf2fhKxZ",
"artists": [
{
"name": "Funkadelic",
"external_urls": {
"spotify": "https://open.spotify.com/artist/450o9jw6AtiQlQkHCdH6Ru"
},
"uri": "spotify:artist:450o9jw6AtiQlQkHCdH6Ru",
"href": "https://api.spotify.com/v1/artists/450o9jw6AtiQlQkHCdH6Ru",
"type": "artist",
"id": "450o9jw6AtiQlQkHCdH6Ru"
}
],
"images": [
{
"url": "https://i.scdn.co/image/40c9b21302f02a3abd47b8193c65f2e1a30bd1d9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dedd88fa7a3d10c893009b62fde652c54cd71821",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2e2bfa6ab8d8b33b773dc1738a10395e867cc7ad",
"width": 64,
"height": 64
}
],
"id": "4P5bvMUWhoYILjMf2fhKxZ"
},
"6WGsZo2Fqa4BfCG1Ml2JDp": {
"name": "When I Was Born For The 7th Time",
"release_date": "1997-09-08",
"uri": "spotify:album:6WGsZo2Fqa4BfCG1Ml2JDp",
"artists": [
{
"name": "Cornershop",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Kf7VEIRWquxrNIuyJZnfF"
},
"uri": "spotify:artist:3Kf7VEIRWquxrNIuyJZnfF",
"href": "https://api.spotify.com/v1/artists/3Kf7VEIRWquxrNIuyJZnfF",
"type": "artist",
"id": "3Kf7VEIRWquxrNIuyJZnfF"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4836befb6ece78101411424317119fdd0c4c8055",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/8ee9e8c454a1571ed7e43853a0a87c6a2829caf9",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/a8fbe735df60818189f09f800bf233da3274749a",
"width": 64,
"height": 62
}
],
"id": "6WGsZo2Fqa4BfCG1Ml2JDp"
},
"70V1kL7w7Q9pDU4I6zDjYE": {
"name": "The Colour Of Spring",
"release_date": "1986",
"uri": "spotify:album:70V1kL7w7Q9pDU4I6zDjYE",
"artists": [
{
"name": "Talk Talk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7Fo8TAyGJr4VmhE68QamMf"
},
"uri": "spotify:artist:7Fo8TAyGJr4VmhE68QamMf",
"href": "https://api.spotify.com/v1/artists/7Fo8TAyGJr4VmhE68QamMf",
"type": "artist",
"id": "7Fo8TAyGJr4VmhE68QamMf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/10d6c75b60782bdbc8395a19fed9f7d1e2f9457e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ef430525c88d2e5486e08fc9741c61308314ba27",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/64c9e409927401430d19ddd5aa62ebe27aee77bb",
"width": 64,
"height": 64
}
],
"id": "70V1kL7w7Q9pDU4I6zDjYE"
},
"39ZIit32CoCg83Hl0bJwgN": {
"name": "Go Girl Crazy",
"release_date": "1975",
"uri": "spotify:album:39ZIit32CoCg83Hl0bJwgN",
"artists": [
{
"name": "The Dictators",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2Ohpu0UE5PFDgfhUxEi0Fy"
},
"uri": "spotify:artist:2Ohpu0UE5PFDgfhUxEi0Fy",
"href": "https://api.spotify.com/v1/artists/2Ohpu0UE5PFDgfhUxEi0Fy",
"type": "artist",
"id": "2Ohpu0UE5PFDgfhUxEi0Fy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c58ff29d40b0c46edde07788b414100632b8572d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/190002ffbdefc6372093e62f78a1d40ffd362b33",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1be7b16e9df634968bdc52030b325489f8ad64df",
"width": 64,
"height": 64
}
],
"id": "39ZIit32CoCg83Hl0bJwgN"
},
"4CfyfJWb1HSabAjdcLeThs": {
"name": "Here's Little Richard [Remastered & Expanded]",
"release_date": "2012-01-01",
"uri": "spotify:album:4CfyfJWb1HSabAjdcLeThs",
"artists": [
{
"name": "Little Richard",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4xls23Ye9WR9yy3yYMpAMm"
},
"uri": "spotify:artist:4xls23Ye9WR9yy3yYMpAMm",
"href": "https://api.spotify.com/v1/artists/4xls23Ye9WR9yy3yYMpAMm",
"type": "artist",
"id": "4xls23Ye9WR9yy3yYMpAMm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fb36bb0ef94eadab1876fdfd7dd2638ca22c1861",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7e53ddf8c0a59087b70183aeff5d8431e98eb978",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f74f5da49a9b50a900b5f8db2e5727e0de134df8",
"width": 64,
"height": 64
}
],
"id": "4CfyfJWb1HSabAjdcLeThs"
},
"4ZYds2OPupZyQefN5AMbV5": {
"name": "Back to Mystery City",
"release_date": "1983",
"uri": "spotify:album:4ZYds2OPupZyQefN5AMbV5",
"artists": [
{
"name": "Hanoi Rocks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5CW2x4YosugZJZZCWA0kBI"
},
"uri": "spotify:artist:5CW2x4YosugZJZZCWA0kBI",
"href": "https://api.spotify.com/v1/artists/5CW2x4YosugZJZZCWA0kBI",
"type": "artist",
"id": "5CW2x4YosugZJZZCWA0kBI"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8fd80c68946aca8d7f547a738522219249ca5cd5",
"width": 633,
"height": 640
},
{
"url": "https://i.scdn.co/image/efa82ded5054354631805365809b1e2703e7230a",
"width": 297,
"height": 300
},
{
"url": "https://i.scdn.co/image/709da823379b18e47fa0fc5b16577a0fb0ba1de7",
"width": 63,
"height": 64
}
],
"id": "4ZYds2OPupZyQefN5AMbV5"
},
"7hgWmH16eu70yqrg5Pc3SM": {
"name": "Arise (Reissue)",
"release_date": "1997-11-10",
"uri": "spotify:album:7hgWmH16eu70yqrg5Pc3SM",
"artists": [
{
"name": "Sepultura",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6JW8wliOEwaDZ231ZY7cf4"
},
"uri": "spotify:artist:6JW8wliOEwaDZ231ZY7cf4",
"href": "https://api.spotify.com/v1/artists/6JW8wliOEwaDZ231ZY7cf4",
"type": "artist",
"id": "6JW8wliOEwaDZ231ZY7cf4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0baab4173f17b533403eeea8da06e662cfa6da75",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/aa5c35ad76218b38ce1a3e3757650b834ca41f0e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cd5f1e7cf706b8828ae698abcd21bd4ce22f1e9d",
"width": 64,
"height": 64
}
],
"id": "7hgWmH16eu70yqrg5Pc3SM"
},
"2fUrnjG4BPBH52aEAv1XyA": {
"name": "Oxyg\u00e8ne",
"release_date": "1976",
"uri": "spotify:album:2fUrnjG4BPBH52aEAv1XyA",
"artists": [
{
"name": "Jean-Michel Jarre",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5MhLmv7GgyjbxGqiIGasvT"
},
"uri": "spotify:artist:5MhLmv7GgyjbxGqiIGasvT",
"href": "https://api.spotify.com/v1/artists/5MhLmv7GgyjbxGqiIGasvT",
"type": "artist",
"id": "5MhLmv7GgyjbxGqiIGasvT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e1a46b7b38c8770ed9e848ef5025a68b47545299",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/80d9e7df34db8d2c6d63239b4b42fa08b7c7ba4b",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/87f68921dfb2bea21e3d216908effd39e1513db3",
"width": 64,
"height": 63
}
],
"id": "2fUrnjG4BPBH52aEAv1XyA"
},
"1QSoW668F9DVj8Rk9azF7h": {
"name": "Woodface",
"release_date": "1991-06-24",
"uri": "spotify:album:1QSoW668F9DVj8Rk9azF7h",
"artists": [
{
"name": "Crowded House",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7ohlPA8dRBtCf92zaZCaaB"
},
"uri": "spotify:artist:7ohlPA8dRBtCf92zaZCaaB",
"href": "https://api.spotify.com/v1/artists/7ohlPA8dRBtCf92zaZCaaB",
"type": "artist",
"id": "7ohlPA8dRBtCf92zaZCaaB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b52376168fa439e0222656d836d07e4fe42d21e0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1e7a8b925429d1e7f1b5459f3dfceaa0741c6555",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e7c46eb056ec98446cd27e57ee5218fc627cf268",
"width": 64,
"height": 64
}
],
"id": "1QSoW668F9DVj8Rk9azF7h"
},
"4yaypP8ytl2ghM2kiNSD8a": {
"name": "Songs From The Big Chair",
"release_date": "2014-01-01",
"uri": "spotify:album:4yaypP8ytl2ghM2kiNSD8a",
"artists": [
{
"name": "Tears For Fears",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4bthk9UfsYUYdcFyqxmSUU"
},
"uri": "spotify:artist:4bthk9UfsYUYdcFyqxmSUU",
"href": "https://api.spotify.com/v1/artists/4bthk9UfsYUYdcFyqxmSUU",
"type": "artist",
"id": "4bthk9UfsYUYdcFyqxmSUU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5e40f94ac1c531d0807942c050bdb82c1ea1697c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5727a0dda52a33d496843dc595287c640274db52",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0693e4d4f7375110af7f4b8f85ec767d367fa1ce",
"width": 64,
"height": 64
}
],
"id": "4yaypP8ytl2ghM2kiNSD8a"
},
"6oUPqvUA22HDrLXDzRDaoO": {
"name": "Jazz Samba Encore!",
"release_date": "1963",
"uri": "spotify:album:6oUPqvUA22HDrLXDzRDaoO",
"artists": [
{
"name": "Stan Getz",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0FMucZsEnCxs5pqBjHjIc8"
},
"uri": "spotify:artist:0FMucZsEnCxs5pqBjHjIc8",
"href": "https://api.spotify.com/v1/artists/0FMucZsEnCxs5pqBjHjIc8",
"type": "artist",
"id": "0FMucZsEnCxs5pqBjHjIc8"
},
{
"name": "Luiz Bonfa",
"external_urls": {
"spotify": "https://open.spotify.com/artist/174ThXFgQg2VCq9r3m8ceb"
},
"uri": "spotify:artist:174ThXFgQg2VCq9r3m8ceb",
"href": "https://api.spotify.com/v1/artists/174ThXFgQg2VCq9r3m8ceb",
"type": "artist",
"id": "174ThXFgQg2VCq9r3m8ceb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b16bed49124e605e601de0b8c85fa49e25f55c8e",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/18d16ed8a089b2e4ac23a436ee6d68e2eace23c3",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/feccf4a6a8fcbf51b4a4b15bae3a397575007783",
"width": 64,
"height": 63
}
],
"id": "6oUPqvUA22HDrLXDzRDaoO"
},
"6YbDNY7VkyBqbO9rBmqVAN": {
"name": "Superfuzz Bigmuff",
"release_date": "1988-01-10",
"uri": "spotify:album:6YbDNY7VkyBqbO9rBmqVAN",
"artists": [
{
"name": "Mudhoney",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7LuYiSXiWs86rwWJjEEgB9"
},
"uri": "spotify:artist:7LuYiSXiWs86rwWJjEEgB9",
"href": "https://api.spotify.com/v1/artists/7LuYiSXiWs86rwWJjEEgB9",
"type": "artist",
"id": "7LuYiSXiWs86rwWJjEEgB9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/368c40be0a5317859110ae4d58fb01bcf208fdad",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7835ba9da29330099c921a8f34accdc053221855",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/47f6b9da8ef5b16dd2aeba0658a70e6a204eb9f2",
"width": 64,
"height": 64
}
],
"id": "6YbDNY7VkyBqbO9rBmqVAN"
},
"3kEtdS2pH6hKcMU9Wioob1": {
"name": "Illmatic",
"release_date": "1994-04-19",
"uri": "spotify:album:3kEtdS2pH6hKcMU9Wioob1",
"artists": [
{
"name": "Nas",
"external_urls": {
"spotify": "https://open.spotify.com/artist/20qISvAhX20dpIbOOzGK3q"
},
"uri": "spotify:artist:20qISvAhX20dpIbOOzGK3q",
"href": "https://api.spotify.com/v1/artists/20qISvAhX20dpIbOOzGK3q",
"type": "artist",
"id": "20qISvAhX20dpIbOOzGK3q"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d73bddce3c72fc809c86be2467d6a3adbb4d7e24",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4d11cf0fc74b4961afd1898867eaeb7234c614a5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/11e9f0b26115bdf197eea8036c5315006eb9bc66",
"width": 64,
"height": 64
}
],
"id": "3kEtdS2pH6hKcMU9Wioob1"
},
"24G9Xb4VjdxNb9TooObhmR": {
"name": "2112",
"release_date": "1976",
"uri": "spotify:album:24G9Xb4VjdxNb9TooObhmR",
"artists": [
{
"name": "Rush",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2Hkut4rAAyrQxRdof7FVJq"
},
"uri": "spotify:artist:2Hkut4rAAyrQxRdof7FVJq",
"href": "https://api.spotify.com/v1/artists/2Hkut4rAAyrQxRdof7FVJq",
"type": "artist",
"id": "2Hkut4rAAyrQxRdof7FVJq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/49f618554dd8045b0d40eb81bc14e889e2f78653",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/93b34be98cae180c0935bf5d586f10d561e82732",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/176a449cde2f38f5c67a4d61432be017baa72b06",
"width": 64,
"height": 64
}
],
"id": "24G9Xb4VjdxNb9TooObhmR"
},
"4pG3bKkbmReDt5QTDn3JDz": {
"name": "Astral Weeks",
"release_date": "1968-11-01",
"uri": "spotify:album:4pG3bKkbmReDt5QTDn3JDz",
"artists": [
{
"name": "Van Morrison",
"external_urls": {
"spotify": "https://open.spotify.com/artist/44NX2ffIYHr6D4n7RaZF7A"
},
"uri": "spotify:artist:44NX2ffIYHr6D4n7RaZF7A",
"href": "https://api.spotify.com/v1/artists/44NX2ffIYHr6D4n7RaZF7A",
"type": "artist",
"id": "44NX2ffIYHr6D4n7RaZF7A"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7ecc2758e7838e498be44a6c123574d9229dc483",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/43db3bf931cb73e7ad4ee3a5d59760aa608af00a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/897b43a8d5be715dbc63f67a04bc23d69d6911be",
"width": 64,
"height": 64
}
],
"id": "4pG3bKkbmReDt5QTDn3JDz"
},
"4uXg1lAzlcr1CJWLwekgaM": {
"name": "On The Beach",
"release_date": "1974-07-19",
"uri": "spotify:album:4uXg1lAzlcr1CJWLwekgaM",
"artists": [
{
"name": "Neil Young",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm"
},
"uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm",
"href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm",
"type": "artist",
"id": "6v8FB84lnmJs434UJf2Mrm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1ba5d6c2fd8a4ca4fe5365be00c93110ee66e41a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/05c9cd8e29e04f03a007263aab63dfa484884d5d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4a6921d9e072f36b481a178302eb97e4b2f0aaff",
"width": 64,
"height": 64
}
],
"id": "4uXg1lAzlcr1CJWLwekgaM"
},
"6P3jzdPK5VMbzuJ2HcRt9y": {
"name": "Time Out",
"release_date": "1959",
"uri": "spotify:album:6P3jzdPK5VMbzuJ2HcRt9y",
"artists": [
{
"name": "The Dave Brubeck Quartet",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4iRZAbYvBqnxrbs6K25aJ7"
},
"uri": "spotify:artist:4iRZAbYvBqnxrbs6K25aJ7",
"href": "https://api.spotify.com/v1/artists/4iRZAbYvBqnxrbs6K25aJ7",
"type": "artist",
"id": "4iRZAbYvBqnxrbs6K25aJ7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f7894e69c134384d07a5173fa87180ae5169c36d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f38a47efdc7873a6bae96aecc9e716c9e3e68721",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e7121802204649c142c22fe5cb9faa99dcb13cc2",
"width": 64,
"height": 64
}
],
"id": "6P3jzdPK5VMbzuJ2HcRt9y"
},
"2KSmpFuIe2nOYYVgA7oa9o": {
"name": "C'est Chic",
"release_date": "1978",
"uri": "spotify:album:2KSmpFuIe2nOYYVgA7oa9o",
"artists": [
{
"name": "CHIC",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0Xf8oDAJYd2D0k3NLI19OV"
},
"uri": "spotify:artist:0Xf8oDAJYd2D0k3NLI19OV",
"href": "https://api.spotify.com/v1/artists/0Xf8oDAJYd2D0k3NLI19OV",
"type": "artist",
"id": "0Xf8oDAJYd2D0k3NLI19OV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/38b794e3f4be8ed394f2bcbe2f6e5170b761d5f1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2a5dc4947d5e4dff6d434973d3042cfc75008f73",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0c7626614c9c9ac9243c7adeec908eed4135510f",
"width": 64,
"height": 64
}
],
"id": "2KSmpFuIe2nOYYVgA7oa9o"
},
"7aDBFWp72Pz4NZEtVBANi9": {
"name": "Butterfly",
"release_date": "1997-09-03",
"uri": "spotify:album:7aDBFWp72Pz4NZEtVBANi9",
"artists": [
{
"name": "Mariah Carey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4iHNK0tOyZPYnBU7nGAgpQ"
},
"uri": "spotify:artist:4iHNK0tOyZPYnBU7nGAgpQ",
"href": "https://api.spotify.com/v1/artists/4iHNK0tOyZPYnBU7nGAgpQ",
"type": "artist",
"id": "4iHNK0tOyZPYnBU7nGAgpQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/78e4e190f0e43bed7d11226d15990647fc91d742",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cce0023a753adc4d95afbe6f9eb2d0e72f187347",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/743d114a6c3097accc5f62db657e0b4863bf1cb1",
"width": 64,
"height": 64
}
],
"id": "7aDBFWp72Pz4NZEtVBANi9"
},
"5K3hgJYRyL5H40e9a1940R": {
"name": "The Black Saint And The Sinner Lady",
"release_date": "1963",
"uri": "spotify:album:5K3hgJYRyL5H40e9a1940R",
"artists": [
{
"name": "Charles Mingus",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1W8TbFzNS15VwsempfY12H"
},
"uri": "spotify:artist:1W8TbFzNS15VwsempfY12H",
"href": "https://api.spotify.com/v1/artists/1W8TbFzNS15VwsempfY12H",
"type": "artist",
"id": "1W8TbFzNS15VwsempfY12H"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a6488a48d726ba91dc2497fdc8511dca515d3e6c",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/503bf8d57dd506dd50ca8e0b150b950e8c2c6004",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/006f6fc457e1a01d879a9b848374514e8fc193c5",
"width": 64,
"height": 63
}
],
"id": "5K3hgJYRyL5H40e9a1940R"
},
"4WD4pslu83FF6oMa1e19mF": {
"name": "Blood On The Tracks",
"release_date": "1975-01-17",
"uri": "spotify:album:4WD4pslu83FF6oMa1e19mF",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/21bd4f522ccd535141aec00dc9b333bfb1ff03d4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/755a11cfa36419d006b1482feba5799cbcf1c2d8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/70b2722690d70a25f7b14323afc3809a54d476a6",
"width": 64,
"height": 64
}
],
"id": "4WD4pslu83FF6oMa1e19mF"
},
"7j8lfKDdL7vE8OAM4cA3W3": {
"name": "Illinois",
"release_date": "2005-07-05",
"uri": "spotify:album:7j8lfKDdL7vE8OAM4cA3W3",
"artists": [
{
"name": "Sufjan Stevens",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4MXUO7sVCaFgFjoTI5ox5c"
},
"uri": "spotify:artist:4MXUO7sVCaFgFjoTI5ox5c",
"href": "https://api.spotify.com/v1/artists/4MXUO7sVCaFgFjoTI5ox5c",
"type": "artist",
"id": "4MXUO7sVCaFgFjoTI5ox5c"
}
],
"images": [
{
"url": "https://i.scdn.co/image/de20d98b079253a4c4a5787bf4b3846519dab980",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2474e15c4830076d91e352544c80f9197d3d5813",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/55441e601d366ab5519d2d8c1461a0d0c113a0af",
"width": 64,
"height": 64
}
],
"id": "7j8lfKDdL7vE8OAM4cA3W3"
},
"0pkrqPjeq9K5KD0hFqAKNa": {
"name": "Mr. Tambourine Man",
"release_date": "1965-06-21",
"uri": "spotify:album:0pkrqPjeq9K5KD0hFqAKNa",
"artists": [
{
"name": "The Byrds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1PCZpxHJz7WAMF8EEq8bfc"
},
"uri": "spotify:artist:1PCZpxHJz7WAMF8EEq8bfc",
"href": "https://api.spotify.com/v1/artists/1PCZpxHJz7WAMF8EEq8bfc",
"type": "artist",
"id": "1PCZpxHJz7WAMF8EEq8bfc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9e5756a8a4ea58cd818a88e25d2fecdb1623b33a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/993a7bc8869fa63e8fa2dad8a603cfdf75589a12",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/659755ae27602dbc049cc22c07af432f8be1e405",
"width": 64,
"height": 64
}
],
"id": "0pkrqPjeq9K5KD0hFqAKNa"
},
"1b5kjGhDwtLgOJLS65bKYh": {
"name": "Emperor Tomato Ketchup",
"release_date": "1996-03-11",
"uri": "spotify:album:1b5kjGhDwtLgOJLS65bKYh",
"artists": [
{
"name": "Stereolab",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Rj0tDHoX7C5NFq5DKIpHt"
},
"uri": "spotify:artist:3Rj0tDHoX7C5NFq5DKIpHt",
"href": "https://api.spotify.com/v1/artists/3Rj0tDHoX7C5NFq5DKIpHt",
"type": "artist",
"id": "3Rj0tDHoX7C5NFq5DKIpHt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/022325eda30b41e72fb9c65dafcbed03694b8cca",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/be0034e124adda30b8e47a3e5d792dc2d35e2b4a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d91834517e9fdfd3367c92728c215ec9f1927fa5",
"width": 64,
"height": 64
}
],
"id": "1b5kjGhDwtLgOJLS65bKYh"
},
"5hEmQDypt7E7hJIQeTo6as": {
"name": "Destroy Rock & Roll",
"release_date": "2004",
"uri": "spotify:album:5hEmQDypt7E7hJIQeTo6as",
"artists": [
{
"name": "Mylo",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5YjEVrNMrIRw2xGbjTN6Ti"
},
"uri": "spotify:artist:5YjEVrNMrIRw2xGbjTN6Ti",
"href": "https://api.spotify.com/v1/artists/5YjEVrNMrIRw2xGbjTN6Ti",
"type": "artist",
"id": "5YjEVrNMrIRw2xGbjTN6Ti"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bb3fe7ff37c861e415519b13ab8d1ea9849bc946",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4631d84483f7edd554dd02ab09aafd8bc3e75700",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c8c2b92c04d19ff3377fe53433a1d1bb9e7ad4f1",
"width": 64,
"height": 64
}
],
"id": "5hEmQDypt7E7hJIQeTo6as"
},
"2qKmY7yt0kXdzSQxYAu9eZ": {
"name": "The Joshua Tree (Deluxe Edition Remastered)",
"release_date": "1987-03-10",
"uri": "spotify:album:2qKmY7yt0kXdzSQxYAu9eZ",
"artists": [
{
"name": "U2",
"external_urls": {
"spotify": "https://open.spotify.com/artist/51Blml2LZPmy7TTiAg47vQ"
},
"uri": "spotify:artist:51Blml2LZPmy7TTiAg47vQ",
"href": "https://api.spotify.com/v1/artists/51Blml2LZPmy7TTiAg47vQ",
"type": "artist",
"id": "51Blml2LZPmy7TTiAg47vQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8ecaeaaa8c59624e8ce561db464ba56ac007428a",
"width": 640,
"height": 586
},
{
"url": "https://i.scdn.co/image/06909fcbfc067a3a02466311fbf20acef563b90a",
"width": 300,
"height": 275
},
{
"url": "https://i.scdn.co/image/32b0ac850b6b0fbc32d7658c640c03cc9831799d",
"width": 64,
"height": 59
}
],
"id": "2qKmY7yt0kXdzSQxYAu9eZ"
},
"4icS85G6VGPbFlB9UGPxct": {
"name": "The Wildest!",
"release_date": "2002-08-01",
"uri": "spotify:album:4icS85G6VGPbFlB9UGPxct",
"artists": [
{
"name": "Louis Prima",
"external_urls": {
"spotify": "https://open.spotify.com/artist/52lBOxCxbJg0ttXEW9CQpW"
},
"uri": "spotify:artist:52lBOxCxbJg0ttXEW9CQpW",
"href": "https://api.spotify.com/v1/artists/52lBOxCxbJg0ttXEW9CQpW",
"type": "artist",
"id": "52lBOxCxbJg0ttXEW9CQpW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ef052b4306b306839ac28395de8761b2c4c02e17",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ff96afa77a8c6243bef64199b5790b22a1cb2513",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/198ee880a0f6efee7edf79759dfffc12cf4d1e21",
"width": 64,
"height": 64
}
],
"id": "4icS85G6VGPbFlB9UGPxct"
},
"7nFlAxnXMrQRpM1R80pKQm": {
"name": "Devil Without A Cause",
"release_date": "1998-08-05",
"uri": "spotify:album:7nFlAxnXMrQRpM1R80pKQm",
"artists": [
{
"name": "Kid Rock",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7dOBabd5O4CvKrg4iriHTM"
},
"uri": "spotify:artist:7dOBabd5O4CvKrg4iriHTM",
"href": "https://api.spotify.com/v1/artists/7dOBabd5O4CvKrg4iriHTM",
"type": "artist",
"id": "7dOBabd5O4CvKrg4iriHTM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/184bb2df0b849a980b5f163069a01a59ebd44dd4",
"width": 640,
"height": 625
},
{
"url": "https://i.scdn.co/image/341527352d86b105986be970738a7a20f348aa11",
"width": 300,
"height": 293
},
{
"url": "https://i.scdn.co/image/6a9223d5f770093d157e9819b62b712b67b53b7e",
"width": 64,
"height": 63
}
],
"id": "7nFlAxnXMrQRpM1R80pKQm"
},
"7i0oB4FlQ99H3EvdqlirCZ": {
"name": "Live At Witch Trials",
"release_date": "1979",
"uri": "spotify:album:7i0oB4FlQ99H3EvdqlirCZ",
"artists": [
{
"name": "The Fall",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6WoTvA9qinpHtSRJuldYh6"
},
"uri": "spotify:artist:6WoTvA9qinpHtSRJuldYh6",
"href": "https://api.spotify.com/v1/artists/6WoTvA9qinpHtSRJuldYh6",
"type": "artist",
"id": "6WoTvA9qinpHtSRJuldYh6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/40b1f48801dab568798714b91d1e6d6f9139be33",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/80128ff21340b062136c288e3af3322640d5895e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6ae2e5ad673efb689bb2eaf57bdb5424d891d958",
"width": 64,
"height": 64
}
],
"id": "7i0oB4FlQ99H3EvdqlirCZ"
},
"1yBoaVrgcup2hX2DCYUajs": {
"name": "Gris Gris",
"release_date": "1968",
"uri": "spotify:album:1yBoaVrgcup2hX2DCYUajs",
"artists": [
{
"name": "Dr. John",
"external_urls": {
"spotify": "https://open.spotify.com/artist/320TrJub4arztwXRm7kqVO"
},
"uri": "spotify:artist:320TrJub4arztwXRm7kqVO",
"href": "https://api.spotify.com/v1/artists/320TrJub4arztwXRm7kqVO",
"type": "artist",
"id": "320TrJub4arztwXRm7kqVO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cedf7155c193854fee692e82424528e757bf2e4c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2c686a0c88c49b2435f3d31716c4768de90cb24b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/dad9d17592d7944d01ecb79ec1d233546749faf3",
"width": 64,
"height": 64
}
],
"id": "1yBoaVrgcup2hX2DCYUajs"
},
"4bPT6Q8ppaSNppk1kbEbLl": {
"name": "Mellon Collie and the Infinite Sadness (2012 - Remaster)",
"release_date": "1995-12-12",
"uri": "spotify:album:4bPT6Q8ppaSNppk1kbEbLl",
"artists": [
{
"name": "The Smashing Pumpkins",
"external_urls": {
"spotify": "https://open.spotify.com/artist/40Yq4vzPs9VNUrIBG5Jr2i"
},
"uri": "spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i",
"href": "https://api.spotify.com/v1/artists/40Yq4vzPs9VNUrIBG5Jr2i",
"type": "artist",
"id": "40Yq4vzPs9VNUrIBG5Jr2i"
}
],
"images": [
{
"url": "https://i.scdn.co/image/781f636483f9f08e9f183021e81812cdd0512b7e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e478c9aa6b08b1816ec54f47a1fbfca38875e0aa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/89a28e6997c35385dd71237dbffb4d0ca1297584",
"width": 64,
"height": 64
}
],
"id": "4bPT6Q8ppaSNppk1kbEbLl"
},
"1WLs1iVHFL0wboZpeZ0bFf": {
"name": "Antichrist Superstar",
"release_date": "1996-10-08",
"uri": "spotify:album:1WLs1iVHFL0wboZpeZ0bFf",
"artists": [
{
"name": "Marilyn Manson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2VYQTNDsvvKN9wmU5W7xpj"
},
"uri": "spotify:artist:2VYQTNDsvvKN9wmU5W7xpj",
"href": "https://api.spotify.com/v1/artists/2VYQTNDsvvKN9wmU5W7xpj",
"type": "artist",
"id": "2VYQTNDsvvKN9wmU5W7xpj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/acf036ccf523b8cb4f57644d2b1f87d3c7c7c3e1",
"width": 640,
"height": 552
},
{
"url": "https://i.scdn.co/image/f6580bb0f23782a69f6582f0d515276bfb19ddfd",
"width": 300,
"height": 259
},
{
"url": "https://i.scdn.co/image/063dd6d607b20706e3d3224b32a897511ed08f60",
"width": 64,
"height": 55
}
],
"id": "1WLs1iVHFL0wboZpeZ0bFf"
},
"3Vp5uEx8koFke8NyfElrlD": {
"name": "Live At The Regal",
"release_date": "1965",
"uri": "spotify:album:3Vp5uEx8koFke8NyfElrlD",
"artists": [
{
"name": "B.B. King",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5xLSa7l4IV1gsQfhAMvl0U"
},
"uri": "spotify:artist:5xLSa7l4IV1gsQfhAMvl0U",
"href": "https://api.spotify.com/v1/artists/5xLSa7l4IV1gsQfhAMvl0U",
"type": "artist",
"id": "5xLSa7l4IV1gsQfhAMvl0U"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b387b001b4918228fff5f9c4ddf20aa2ac11201",
"width": 640,
"height": 632
},
{
"url": "https://i.scdn.co/image/f40a1d1b96a1f00e34b3106730f754e2e7173188",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/5330d1a77629b0b42439f19bea081794bd56909c",
"width": 64,
"height": 63
}
],
"id": "3Vp5uEx8koFke8NyfElrlD"
},
"6FIFqclBriPCb0SjWDaHIk": {
"name": "Veckatimest",
"release_date": "2009-05-24",
"uri": "spotify:album:6FIFqclBriPCb0SjWDaHIk",
"artists": [
{
"name": "Grizzly Bear",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2Jv5eshHtLycR6R8KQCdc4"
},
"uri": "spotify:artist:2Jv5eshHtLycR6R8KQCdc4",
"href": "https://api.spotify.com/v1/artists/2Jv5eshHtLycR6R8KQCdc4",
"type": "artist",
"id": "2Jv5eshHtLycR6R8KQCdc4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ee66f9da00a5ecc44bce08b690cdedda82a7aae1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2ee6d8cc138161e2b69f1a800a15f46632b02e33",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/357c7d303f05da5650a652b4f9589d2f5a402e45",
"width": 64,
"height": 64
}
],
"id": "6FIFqclBriPCb0SjWDaHIk"
},
"3SHtv5ToASRVvdxDnGOwtP": {
"name": "Something Else By The Kinks",
"release_date": "1967-09-15",
"uri": "spotify:album:3SHtv5ToASRVvdxDnGOwtP",
"artists": [
{
"name": "The Kinks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E"
},
"uri": "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E",
"href": "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E",
"type": "artist",
"id": "1SQRv42e4PjEYfPhS0Tk9E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b303d52c4eeab0b0a465d81bdac5993c8a77dec8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/44184eb90b7d8d501ee209d715ab77b7d9ce475f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/79f968c19c65a81cb1b7de6022eca317fa227b81",
"width": 64,
"height": 64
}
],
"id": "3SHtv5ToASRVvdxDnGOwtP"
},
"3LdlOZcV0dp7ePBXe2KAGa": {
"name": "All The Young Dudes",
"release_date": "1972",
"uri": "spotify:album:3LdlOZcV0dp7ePBXe2KAGa",
"artists": [
{
"name": "Mott The Hoople",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6ysQi6NI88X627t2srsWz6"
},
"uri": "spotify:artist:6ysQi6NI88X627t2srsWz6",
"href": "https://api.spotify.com/v1/artists/6ysQi6NI88X627t2srsWz6",
"type": "artist",
"id": "6ysQi6NI88X627t2srsWz6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/29a07389ef9a33edc77eb29fb147ff6e99745f19",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/ccf7e24614838633d54f8de17cd0ec9a27e628c5",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/f8ba4d98284ffd1fb66eea9b875c7b760eac97ae",
"width": 64,
"height": 64
}
],
"id": "3LdlOZcV0dp7ePBXe2KAGa"
},
"5pbjLidJuoty9QUOy6X682": {
"name": "MTV Unplugged In New York",
"release_date": "1994-11-01",
"uri": "spotify:album:5pbjLidJuoty9QUOy6X682",
"artists": [
{
"name": "Nirvana",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6olE6TJLqED3rqDCT0FyPh"
},
"uri": "spotify:artist:6olE6TJLqED3rqDCT0FyPh",
"href": "https://api.spotify.com/v1/artists/6olE6TJLqED3rqDCT0FyPh",
"type": "artist",
"id": "6olE6TJLqED3rqDCT0FyPh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8ccf99a8cc9ae08a4437b9b578a4ebfdbc65a9c9",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/58e94705a7a411bc4e91b8298a454471135f0dd3",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/95d7d94b02a16b5878d190a25d4517e3c57ec4ad",
"width": 64,
"height": 64
}
],
"id": "5pbjLidJuoty9QUOy6X682"
},
"76q2Ubo0vZIJxCqS0I1msH": {
"name": "Elephant Mountain",
"release_date": "1969",
"uri": "spotify:album:76q2Ubo0vZIJxCqS0I1msH",
"artists": [
{
"name": "The Youngbloods",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5I6MzhNEMk27cZsCqGAIYo"
},
"uri": "spotify:artist:5I6MzhNEMk27cZsCqGAIYo",
"href": "https://api.spotify.com/v1/artists/5I6MzhNEMk27cZsCqGAIYo",
"type": "artist",
"id": "5I6MzhNEMk27cZsCqGAIYo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b9efa9254e825e3be3a8fe342ee0d7cc69d93bc7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/eaf39add4907fb072e980c4ff0bfc77ff5f15bb1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c266ee285fa0e51178cd7a03b737b559452f6777",
"width": 64,
"height": 64
}
],
"id": "76q2Ubo0vZIJxCqS0I1msH"
},
"7vgpBNK5xPmS3Mu2Hl9O0D": {
"name": "Talking Book",
"release_date": "1972-01-01",
"uri": "spotify:album:7vgpBNK5xPmS3Mu2Hl9O0D",
"artists": [
{
"name": "Stevie Wonder",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7guDJrEfX3qb6FEbdPA5qi"
},
"uri": "spotify:artist:7guDJrEfX3qb6FEbdPA5qi",
"href": "https://api.spotify.com/v1/artists/7guDJrEfX3qb6FEbdPA5qi",
"type": "artist",
"id": "7guDJrEfX3qb6FEbdPA5qi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0b8567a54eadac62152cdc3328c1b154b56129ad",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/762d8bcdb64f62254567552032ac01eed9c22b25",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/93681a1f30cc6163f92f3580db4f0f04b4ebc319",
"width": 64,
"height": 63
}
],
"id": "7vgpBNK5xPmS3Mu2Hl9O0D"
},
"1lPoRKSgZHQAYXxzBsOQ7v": {
"name": "Bringing It All Back Home",
"release_date": "1965-03-22",
"uri": "spotify:album:1lPoRKSgZHQAYXxzBsOQ7v",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dd2a45ae7190ee6432c13be6ad016761a01467a9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/940eb7a70b6ff1febf64ec974305b3555d7f7641",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ed9dde281f0030f01906241fe5eae4812e4e30a5",
"width": 64,
"height": 64
}
],
"id": "1lPoRKSgZHQAYXxzBsOQ7v"
},
"359mtWK6URMr2CXK7orSZl": {
"name": "Station To Station [Special Edition]",
"release_date": "1976-01-23",
"uri": "spotify:album:359mtWK6URMr2CXK7orSZl",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/084a0d96a084e609df66df0ed1db4442ee97038b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9645887ae16ebebce9a15b8777511896a1161c32",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/34046a625b6b822c02fa72ced7908408083b1f42",
"width": 64,
"height": 64
}
],
"id": "359mtWK6URMr2CXK7orSZl"
},
"0H6TddUF2M63ZSHGvhk5yy": {
"name": "Disintegration (Deluxe Edition)",
"release_date": "1989-05-02",
"uri": "spotify:album:0H6TddUF2M63ZSHGvhk5yy",
"artists": [
{
"name": "The Cure",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7bu3H8JO7d0UbMoVzbo70s"
},
"uri": "spotify:artist:7bu3H8JO7d0UbMoVzbo70s",
"href": "https://api.spotify.com/v1/artists/7bu3H8JO7d0UbMoVzbo70s",
"type": "artist",
"id": "7bu3H8JO7d0UbMoVzbo70s"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b82a78f07e1c401ec72ad6cdef421ed712b63cbe",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f97770e321a3dda88c66eb4fa31be9ba98ca9e4b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5e30084d686e61460173e9e6a30568ee71303c4b",
"width": 64,
"height": 64
}
],
"id": "0H6TddUF2M63ZSHGvhk5yy"
},
"4uG8q3GPuWHQlRbswMIRS6": {
"name": "Dookie",
"release_date": "1994-02-01",
"uri": "spotify:album:4uG8q3GPuWHQlRbswMIRS6",
"artists": [
{
"name": "Green Day",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7oPftvlwr6VrsViSDV7fJY"
},
"uri": "spotify:artist:7oPftvlwr6VrsViSDV7fJY",
"href": "https://api.spotify.com/v1/artists/7oPftvlwr6VrsViSDV7fJY",
"type": "artist",
"id": "7oPftvlwr6VrsViSDV7fJY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3a1ec3bdc44d89ed93bf99d12138139469731b14",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4bf06c01a3911f76a386524c1fd675249e342c2f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eae6056da5ef1ff130aef71732388b1d51af5d30",
"width": 64,
"height": 64
}
],
"id": "4uG8q3GPuWHQlRbswMIRS6"
},
"1jKfTvT64lcQwA74WmkKiJ": {
"name": "Goodbye And Hello",
"release_date": "1967",
"uri": "spotify:album:1jKfTvT64lcQwA74WmkKiJ",
"artists": [
{
"name": "Tim Buckley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zHRqvws8dVeqL8D31ponr"
},
"uri": "spotify:artist:6zHRqvws8dVeqL8D31ponr",
"href": "https://api.spotify.com/v1/artists/6zHRqvws8dVeqL8D31ponr",
"type": "artist",
"id": "6zHRqvws8dVeqL8D31ponr"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a5ef7fda0d604407b3dbb7c72a31fd998f84c241",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f4d4c094f0470278ebe93ed9cb2b87262c90fc5a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f74c17b2ca4f9f4facc821f47df100c5549af38e",
"width": 64,
"height": 64
}
],
"id": "1jKfTvT64lcQwA74WmkKiJ"
},
"6LoD5uGEynY4eqstWDFKhg": {
"name": "Pink Moon",
"release_date": "1972-01-01",
"uri": "spotify:album:6LoD5uGEynY4eqstWDFKhg",
"artists": [
{
"name": "Nick Drake",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5c3GLXai8YOMid29ZEuR9y"
},
"uri": "spotify:artist:5c3GLXai8YOMid29ZEuR9y",
"href": "https://api.spotify.com/v1/artists/5c3GLXai8YOMid29ZEuR9y",
"type": "artist",
"id": "5c3GLXai8YOMid29ZEuR9y"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7eca64a5f6819743522fadcbe2a0020aa63f0391",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/948223a2ac50b905d3998341d802e1868b34d018",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/17bddd82c3a136c3097143c6657e78a118ab9779",
"width": 64,
"height": 63
}
],
"id": "6LoD5uGEynY4eqstWDFKhg"
},
"5G4f8hTTzGH0QGqGeQjsS1": {
"name": "Another Girl Another Planet The Best Of",
"release_date": "2006-10-28",
"uri": "spotify:album:5G4f8hTTzGH0QGqGeQjsS1",
"artists": [
{
"name": "The Only Ones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/16VudBYGOd9sMpOtA0szfp"
},
"uri": "spotify:artist:16VudBYGOd9sMpOtA0szfp",
"href": "https://api.spotify.com/v1/artists/16VudBYGOd9sMpOtA0szfp",
"type": "artist",
"id": "16VudBYGOd9sMpOtA0szfp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bb641ffbca13dc3c503f6889b0e9a71ec95d60b9",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/d1a7ba605af646a54e7666fbbe7fe897a37a7020",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/6a4fedf04ce416021a6d6e8667ac3a7db8ecbb3b",
"width": 64,
"height": 63
}
],
"id": "5G4f8hTTzGH0QGqGeQjsS1"
},
"4V92Puney9WxGPecKtLG4L": {
"name": "If I Should Fall From Grace With God [Expanded] (US Version)",
"release_date": "1988-09-05",
"uri": "spotify:album:4V92Puney9WxGPecKtLG4L",
"artists": [
{
"name": "The Pogues",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2wzMOQwNT6ZvVB4amvhFAH"
},
"uri": "spotify:artist:2wzMOQwNT6ZvVB4amvhFAH",
"href": "https://api.spotify.com/v1/artists/2wzMOQwNT6ZvVB4amvhFAH",
"type": "artist",
"id": "2wzMOQwNT6ZvVB4amvhFAH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/380dd1d3b5b9337f6bb91dcc87f764b57b408be4",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/55eae0f06a240c8b0f213520feaf780eaf97f813",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/73f3e0d7306e9109af3121b6f38b100c8300e28b",
"width": 64,
"height": 64
}
],
"id": "4V92Puney9WxGPecKtLG4L"
},
"0vypdDHTQsoVmVu8OgXEly": {
"name": "Hunky Dory",
"release_date": "1971-12-17",
"uri": "spotify:album:0vypdDHTQsoVmVu8OgXEly",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cad80da5548ea005abc0d957ef48a87644f4f707",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1b2d3105a3e87cc9fb011dacc19cbdc9c678d803",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9ab32a8ddfc7dd37573d3ee5ed518a312d012fb3",
"width": 64,
"height": 64
}
],
"id": "0vypdDHTQsoVmVu8OgXEly"
},
"5xxeAo8AVneH1OKO5vR604": {
"name": "The Presidents of The United States of America: Ten Year Super Bonus Special Anniversary Edition",
"release_date": "1995",
"uri": "spotify:album:5xxeAo8AVneH1OKO5vR604",
"artists": [
{
"name": "The Presidents Of The United States Of America",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1lZvg4fNAqHoj6I9N8naBM"
},
"uri": "spotify:artist:1lZvg4fNAqHoj6I9N8naBM",
"href": "https://api.spotify.com/v1/artists/1lZvg4fNAqHoj6I9N8naBM",
"type": "artist",
"id": "1lZvg4fNAqHoj6I9N8naBM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4a7eba3d2dfe83ab97eae0bcdd1695d0210f7779",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f44b5ae4f903ebb62808d27c0c9255190eb70f69",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a440ae5aa9ba1859134f1926042302d757b1f11f",
"width": 64,
"height": 64
}
],
"id": "5xxeAo8AVneH1OKO5vR604"
},
"2Ub0D1QK9IudBBVdfNjGfD": {
"name": "Frampton Comes Alive",
"release_date": "1976-01-01",
"uri": "spotify:album:2Ub0D1QK9IudBBVdfNjGfD",
"artists": [
{
"name": "Peter Frampton",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0543y7yrvny4KymoaneT4W"
},
"uri": "spotify:artist:0543y7yrvny4KymoaneT4W",
"href": "https://api.spotify.com/v1/artists/0543y7yrvny4KymoaneT4W",
"type": "artist",
"id": "0543y7yrvny4KymoaneT4W"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d94d1da64ce4e653e5545a9d3454be181676d37a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/66362f142df0ba5780e4141b403e990b64477ba7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/67b19bf328aad7947dc0bc8302a706f46e51f1af",
"width": 64,
"height": 64
}
],
"id": "2Ub0D1QK9IudBBVdfNjGfD"
},
"6QU6itggAYKtzjKOMqz8Ch": {
"name": "Shake Your Money Maker",
"release_date": "1990",
"uri": "spotify:album:6QU6itggAYKtzjKOMqz8Ch",
"artists": [
{
"name": "The Black Crowes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5krkohEVJYw0qoB5VWwxaC"
},
"uri": "spotify:artist:5krkohEVJYw0qoB5VWwxaC",
"href": "https://api.spotify.com/v1/artists/5krkohEVJYw0qoB5VWwxaC",
"type": "artist",
"id": "5krkohEVJYw0qoB5VWwxaC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/54284dc791a57b6d2e4744520be5c73db8ca5145",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/568361b615930a28e2dac5c5341612395d769282",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/2f77e2ce3d040f113e420a0a18666c9f5ec43ddf",
"width": 64,
"height": 63
}
],
"id": "6QU6itggAYKtzjKOMqz8Ch"
},
"1WuWBwBgL4qGTjqrKY7WDe": {
"name": "Ogden's Nut Gone Flake",
"release_date": "1968",
"uri": "spotify:album:1WuWBwBgL4qGTjqrKY7WDe",
"artists": [
{
"name": "Small Faces",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1YqGsKpdixxSVgpfaL2AEQ"
},
"uri": "spotify:artist:1YqGsKpdixxSVgpfaL2AEQ",
"href": "https://api.spotify.com/v1/artists/1YqGsKpdixxSVgpfaL2AEQ",
"type": "artist",
"id": "1YqGsKpdixxSVgpfaL2AEQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/777aa6abf75d812dc69f006022bf2449a6137442",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1c265bd4828ceacd8831b4b513ce7a4a16229e74",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6caab48abc012a432680cdd975fccfd951a0d65b",
"width": 64,
"height": 64
}
],
"id": "1WuWBwBgL4qGTjqrKY7WDe"
},
"5b533EfxPpiYtk0MmilEJO": {
"name": "All Mod Cons (Remastered Version)",
"release_date": "1978-11-03",
"uri": "spotify:album:5b533EfxPpiYtk0MmilEJO",
"artists": [
{
"name": "The Jam",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2P560DaOMNDUACoH8ZhOCR"
},
"uri": "spotify:artist:2P560DaOMNDUACoH8ZhOCR",
"href": "https://api.spotify.com/v1/artists/2P560DaOMNDUACoH8ZhOCR",
"type": "artist",
"id": "2P560DaOMNDUACoH8ZhOCR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/276395623e1a7552178d4c1e11b8296fe3756a0c",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/c5cbaad65dcd4bce2bd1c629b7adc6218281b319",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/e8a94a014ae91bff8cc48e5444285d8505207c08",
"width": 64,
"height": 63
}
],
"id": "5b533EfxPpiYtk0MmilEJO"
},
"35hIIMcm8BTJ8Jr5K2Ky7T": {
"name": "Live And Dangerous (Deluxe Edition)",
"release_date": "2011-01-21",
"uri": "spotify:album:35hIIMcm8BTJ8Jr5K2Ky7T",
"artists": [
{
"name": "Thin Lizzy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6biWAmrHyiMkX49LkycGqQ"
},
"uri": "spotify:artist:6biWAmrHyiMkX49LkycGqQ",
"href": "https://api.spotify.com/v1/artists/6biWAmrHyiMkX49LkycGqQ",
"type": "artist",
"id": "6biWAmrHyiMkX49LkycGqQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/115904fa0367ec2a33709cf011b2b15f8d383824",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/90b5c0df21e9bedfe3846491a65e17fc481d0f8a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/20681bd6f74f0e8a4855d21f2e5a07ae005341ce",
"width": 64,
"height": 64
}
],
"id": "35hIIMcm8BTJ8Jr5K2Ky7T"
},
"0rRNLpdA8nA8Sm8Fk490b9": {
"name": "Elephant",
"release_date": "2003-03-31",
"uri": "spotify:album:0rRNLpdA8nA8Sm8Fk490b9",
"artists": [
{
"name": "The White Stripes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4F84IBURUo98rz4r61KF70"
},
"uri": "spotify:artist:4F84IBURUo98rz4r61KF70",
"href": "https://api.spotify.com/v1/artists/4F84IBURUo98rz4r61KF70",
"type": "artist",
"id": "4F84IBURUo98rz4r61KF70"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7c7667a66c195842a18341b754ddff1e57295774",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/4d761858e1541ef386a0b8a9f1047805db754a6d",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/7b5248fbae00aae3c9d6d01abb24b32578aa3f31",
"width": 64,
"height": 62
}
],
"id": "0rRNLpdA8nA8Sm8Fk490b9"
},
"4YHIfZ986IFFp7OiO9D9Qt": {
"name": "Ragged Glory",
"release_date": "1990-09-04",
"uri": "spotify:album:4YHIfZ986IFFp7OiO9D9Qt",
"artists": [
{
"name": "Neil Young & Crazy Horse",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1jVuLlkfKibBT0hXDnzQjp"
},
"uri": "spotify:artist:1jVuLlkfKibBT0hXDnzQjp",
"href": "https://api.spotify.com/v1/artists/1jVuLlkfKibBT0hXDnzQjp",
"type": "artist",
"id": "1jVuLlkfKibBT0hXDnzQjp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/22f1f26bb17960e6aa3103aef21604bd6debc7a5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/069d9d3f22dfc8d9de9d899fa04c3ab296fd1fd5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/92701df0c201f530bc218dfb14c37a15b8a7158d",
"width": 64,
"height": 64
}
],
"id": "4YHIfZ986IFFp7OiO9D9Qt"
},
"7nXJ5k4XgRj5OLg9m8V3zc": {
"name": "Purple Rain",
"release_date": "1984-06-25",
"uri": "spotify:album:7nXJ5k4XgRj5OLg9m8V3zc",
"artists": [
{
"name": "Prince",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5a2EaR3hamoenG9rDuVn8j"
},
"uri": "spotify:artist:5a2EaR3hamoenG9rDuVn8j",
"href": "https://api.spotify.com/v1/artists/5a2EaR3hamoenG9rDuVn8j",
"type": "artist",
"id": "5a2EaR3hamoenG9rDuVn8j"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d64cdeaad56a5bba451950824595e5b007124cd9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f6f134b51b8e88dc4be6bef65613a2142113a3e6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/514dbc6649fb6e355dc55b871da2d4eb4cf8e020",
"width": 64,
"height": 64
}
],
"id": "7nXJ5k4XgRj5OLg9m8V3zc"
},
"734AFYo34Q1zRpg9N8E2Ho": {
"name": "Joan Baez",
"release_date": "1960",
"uri": "spotify:album:734AFYo34Q1zRpg9N8E2Ho",
"artists": [
{
"name": "Joan Baez",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1EevBGfUh3RSQSGpluxgBm"
},
"uri": "spotify:artist:1EevBGfUh3RSQSGpluxgBm",
"href": "https://api.spotify.com/v1/artists/1EevBGfUh3RSQSGpluxgBm",
"type": "artist",
"id": "1EevBGfUh3RSQSGpluxgBm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3529adfdec2dbf7119e3c83f6f9322e64bf3908f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/579420a9c1ba8f4fe4ce16630401735a7a229c37",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/df455888d028b4421c88f0bab9a205574cbf3b5b",
"width": 64,
"height": 64
}
],
"id": "734AFYo34Q1zRpg9N8E2Ho"
},
"4YYW1Q1okABRHpSj6LMtEO": {
"name": "Fela With Ginger Baker Live!",
"release_date": "2009",
"uri": "spotify:album:4YYW1Q1okABRHpSj6LMtEO",
"artists": [
{
"name": "Fela Kuti",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5CG9X521RDFWCuAhlo6QoR"
},
"uri": "spotify:artist:5CG9X521RDFWCuAhlo6QoR",
"href": "https://api.spotify.com/v1/artists/5CG9X521RDFWCuAhlo6QoR",
"type": "artist",
"id": "5CG9X521RDFWCuAhlo6QoR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d4b0965648540545e81310d12609eb59788a4f98",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bf1faa1ed75c701fffb89dd008df00494aed0880",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bdcbdeab40e1667ef9773f87e899d6cc506c4d2b",
"width": 64,
"height": 64
}
],
"id": "4YYW1Q1okABRHpSj6LMtEO"
},
"5bHkK1X4WEOzNvRhehvOcb": {
"name": "Deja Vu",
"release_date": "1970-03-11",
"uri": "spotify:album:5bHkK1X4WEOzNvRhehvOcb",
"artists": [
{
"name": "Crosby, Stills, Nash & Young",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1CYsQCypByMVgnv17qsSbQ"
},
"uri": "spotify:artist:1CYsQCypByMVgnv17qsSbQ",
"href": "https://api.spotify.com/v1/artists/1CYsQCypByMVgnv17qsSbQ",
"type": "artist",
"id": "1CYsQCypByMVgnv17qsSbQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b638399efc890caafb91e70a6a4fe3466b9b3ada",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1287b3b9201fc5ed8c51101dbeb0326a450671ec",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b6f2b1fb09286e01df1176456be0b3739baa238c",
"width": 64,
"height": 64
}
],
"id": "5bHkK1X4WEOzNvRhehvOcb"
},
"4A10zgDO51IMdrLVfUnhh8": {
"name": "Spy Vs. Spy: The Music Of Ornette Coleman",
"release_date": "1989",
"uri": "spotify:album:4A10zgDO51IMdrLVfUnhh8",
"artists": [
{
"name": "John Zorn",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3gkJ7lXtLpE4KauFHpk2vK"
},
"uri": "spotify:artist:3gkJ7lXtLpE4KauFHpk2vK",
"href": "https://api.spotify.com/v1/artists/3gkJ7lXtLpE4KauFHpk2vK",
"type": "artist",
"id": "3gkJ7lXtLpE4KauFHpk2vK"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4cc8ab2ec5734759c5de2eed34ea975339fcb27d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/026d938c44e714f5c59e51841d107b97838678a4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/55cb2383d0c444670559e73ef02f2c2638027662",
"width": 64,
"height": 64
}
],
"id": "4A10zgDO51IMdrLVfUnhh8"
},
"24R9CyPLFa0CJrSZ9whlT3": {
"name": "Ananda Shankar",
"release_date": "1970",
"uri": "spotify:album:24R9CyPLFa0CJrSZ9whlT3",
"artists": [
{
"name": "Ananda Shankar",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5eNWwEF0woj5E5Fnu9qXaQ"
},
"uri": "spotify:artist:5eNWwEF0woj5E5Fnu9qXaQ",
"href": "https://api.spotify.com/v1/artists/5eNWwEF0woj5E5Fnu9qXaQ",
"type": "artist",
"id": "5eNWwEF0woj5E5Fnu9qXaQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/eade37e44d9cbf70629dd516380ada2e4ad8cb92",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/52c07bbaecd6f682b7172bff8c5bced3f7c24d8e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ac32e7a095b4f191d6079a0e4f040b5a958037fd",
"width": 64,
"height": 64
}
],
"id": "24R9CyPLFa0CJrSZ9whlT3"
},
"5BZDMsWJJImD6r28jzNnYj": {
"name": "Brutal Youth",
"release_date": "1994",
"uri": "spotify:album:5BZDMsWJJImD6r28jzNnYj",
"artists": [
{
"name": "Elvis Costello",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2BGRfQgtzikz1pzAD0kaEn"
},
"uri": "spotify:artist:2BGRfQgtzikz1pzAD0kaEn",
"href": "https://api.spotify.com/v1/artists/2BGRfQgtzikz1pzAD0kaEn",
"type": "artist",
"id": "2BGRfQgtzikz1pzAD0kaEn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3343bc0065f2f20da09a80b21a241ea1aeeb67fe",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/187e0c14d2781a5017e6750d4f37f35ea4dca05d",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/788b4b0a579b9149831b16b25ce48a786368ddce",
"width": 64,
"height": 64
}
],
"id": "5BZDMsWJJImD6r28jzNnYj"
},
"3kNaiwxhgLnHgi572YWIcD": {
"name": "Smash Hits from The Eagles",
"release_date": "2013-12-09",
"uri": "spotify:album:3kNaiwxhgLnHgi572YWIcD",
"artists": [
{
"name": "The Eagles",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6qxSIn3anu081z3lRLO1Jf"
},
"uri": "spotify:artist:6qxSIn3anu081z3lRLO1Jf",
"href": "https://api.spotify.com/v1/artists/6qxSIn3anu081z3lRLO1Jf",
"type": "artist",
"id": "6qxSIn3anu081z3lRLO1Jf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/aa2bd9aa72e927c015edc5f08665b45203badff4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/26e7ef69033f8e885fc26b17bf2660c682180c6f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e33b85a0d0cadef506b956f0d2b8d1cbdc935956",
"width": 64,
"height": 64
}
],
"id": "3kNaiwxhgLnHgi572YWIcD"
},
"7DBES3oV6jjAmWob7kJg6P": {
"name": "Paranoid (Remastered)",
"release_date": "1970-09-18",
"uri": "spotify:album:7DBES3oV6jjAmWob7kJg6P",
"artists": [
{
"name": "Black Sabbath",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5M52tdBnJaKSvOpJGz8mfZ"
},
"uri": "spotify:artist:5M52tdBnJaKSvOpJGz8mfZ",
"href": "https://api.spotify.com/v1/artists/5M52tdBnJaKSvOpJGz8mfZ",
"type": "artist",
"id": "5M52tdBnJaKSvOpJGz8mfZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ab2eae28bb2a55667ee727711aeccc7f37498414",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/940cb8bad50269081a3c0bca7286e8ff5a5d84d5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/22046ce2b8e0d559c5364b31b7616edeac85a114",
"width": 64,
"height": 64
}
],
"id": "7DBES3oV6jjAmWob7kJg6P"
},
"3YfIjaJEWqiSbKPguS9Bxd": {
"name": "I Should Coco",
"release_date": "1995-05-15",
"uri": "spotify:album:3YfIjaJEWqiSbKPguS9Bxd",
"artists": [
{
"name": "Supergrass",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0sHeX8oQ6o7xic3wMf4NBU"
},
"uri": "spotify:artist:0sHeX8oQ6o7xic3wMf4NBU",
"href": "https://api.spotify.com/v1/artists/0sHeX8oQ6o7xic3wMf4NBU",
"type": "artist",
"id": "0sHeX8oQ6o7xic3wMf4NBU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/333f2b19c0323396cf8cef00424e24a8c8433459",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/66fa1e206cb804815e908ab3bc072dd2406e1c6b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f2a9c738b00c846f42b82e5473031172061a2c79",
"width": 64,
"height": 64
}
],
"id": "3YfIjaJEWqiSbKPguS9Bxd"
},
"47inaDdXEosHHrQc2nT7aK": {
"name": "Da Capo",
"release_date": "1966-11-01",
"uri": "spotify:album:47inaDdXEosHHrQc2nT7aK",
"artists": [
{
"name": "Love",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Q6OOkfssqoMSTtl11J5Uk"
},
"uri": "spotify:artist:3Q6OOkfssqoMSTtl11J5Uk",
"href": "https://api.spotify.com/v1/artists/3Q6OOkfssqoMSTtl11J5Uk",
"type": "artist",
"id": "3Q6OOkfssqoMSTtl11J5Uk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fdae1e15eed66e6ea7385163c656d79804b858af",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dc07fdf95a05b3a5fc2b16180b4217be3e345ff7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ce078681c4dfc04fa9ec8c43f4d38d68e1c1fedc",
"width": 64,
"height": 64
}
],
"id": "47inaDdXEosHHrQc2nT7aK"
},
"2QLp07RO6anZHmtcKTEvSC": {
"name": "Boston",
"release_date": "1976",
"uri": "spotify:album:2QLp07RO6anZHmtcKTEvSC",
"artists": [
{
"name": "Boston",
"external_urls": {
"spotify": "https://open.spotify.com/artist/29kkCKKGXheHuoO829FxWK"
},
"uri": "spotify:artist:29kkCKKGXheHuoO829FxWK",
"href": "https://api.spotify.com/v1/artists/29kkCKKGXheHuoO829FxWK",
"type": "artist",
"id": "29kkCKKGXheHuoO829FxWK"
}
],
"images": [
{
"url": "https://i.scdn.co/image/90bbaac7bfaccd37ebbe1ec530fdf4b655567d71",
"width": 640,
"height": 629
},
{
"url": "https://i.scdn.co/image/ea6c0cdc86984d4cb8fb8758eb53a09060e1c1dd",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/bd4cf4b1fe860eb599b6bc423f9a1954a96a7058",
"width": 64,
"height": 63
}
],
"id": "2QLp07RO6anZHmtcKTEvSC"
},
"0SeTonJJPjy57LqiCDmeEM": {
"name": "Emergency On Planet Earth",
"release_date": "1993-06-14",
"uri": "spotify:album:0SeTonJJPjy57LqiCDmeEM",
"artists": [
{
"name": "Jamiroquai",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6J7biCazzYhU3gM9j1wfid"
},
"uri": "spotify:artist:6J7biCazzYhU3gM9j1wfid",
"href": "https://api.spotify.com/v1/artists/6J7biCazzYhU3gM9j1wfid",
"type": "artist",
"id": "6J7biCazzYhU3gM9j1wfid"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1c8f1c87e155066f5c0a8642a2cbb5bc4386d59b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fb9da088b5d1bba8f71a37ab56821078f0a9acfa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/974d1df89764793dd3c87b93c858a650850663db",
"width": 64,
"height": 64
}
],
"id": "0SeTonJJPjy57LqiCDmeEM"
},
"4M8DVXBJwQG7jb2Tj2yfXa": {
"name": "A Cross The Universe",
"release_date": "2008-11-24",
"uri": "spotify:album:4M8DVXBJwQG7jb2Tj2yfXa",
"artists": [
{
"name": "Justice",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1gR0gsQYfi6joyO1dlp76N"
},
"uri": "spotify:artist:1gR0gsQYfi6joyO1dlp76N",
"href": "https://api.spotify.com/v1/artists/1gR0gsQYfi6joyO1dlp76N",
"type": "artist",
"id": "1gR0gsQYfi6joyO1dlp76N"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a80a2e97f1efd34f89adabfd5a05844eb7b13b5f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a9ec923c9c865a40173f6bd1ae0cbae1b3501ea1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/866669761f34010282396251ad44678728f08f04",
"width": 64,
"height": 64
}
],
"id": "4M8DVXBJwQG7jb2Tj2yfXa"
},
"4k2rriJGUVzAILDyOURuaG": {
"name": "From Elvis In Memphis",
"release_date": "1969",
"uri": "spotify:album:4k2rriJGUVzAILDyOURuaG",
"artists": [
{
"name": "Elvis Presley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/43ZHCT0cAZBISjO8DG9PnE"
},
"uri": "spotify:artist:43ZHCT0cAZBISjO8DG9PnE",
"href": "https://api.spotify.com/v1/artists/43ZHCT0cAZBISjO8DG9PnE",
"type": "artist",
"id": "43ZHCT0cAZBISjO8DG9PnE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/704f1b6267e5f2eaaabca8fb31df87c3183b4d73",
"width": 640,
"height": 589
},
{
"url": "https://i.scdn.co/image/422c5d82aa35e40b731997fb464a9a2cf4c522c2",
"width": 300,
"height": 276
},
{
"url": "https://i.scdn.co/image/8fddf41edf9ebaa0997681a86941bc23614b6e26",
"width": 64,
"height": 59
}
],
"id": "4k2rriJGUVzAILDyOURuaG"
},
"0615zW4ha5elrV5f7TB8Yq": {
"name": "Signing Off",
"release_date": "2010-10-29",
"uri": "spotify:album:0615zW4ha5elrV5f7TB8Yq",
"artists": [
{
"name": "UB40",
"external_urls": {
"spotify": "https://open.spotify.com/artist/69MEO1AADKg1IZrq2XLzo5"
},
"uri": "spotify:artist:69MEO1AADKg1IZrq2XLzo5",
"href": "https://api.spotify.com/v1/artists/69MEO1AADKg1IZrq2XLzo5",
"type": "artist",
"id": "69MEO1AADKg1IZrq2XLzo5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e3a851084c4b4c9208a56ff70c65669801639861",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ffb108fef464b19db06ab3bf6acde28b733cf890",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/20cf7c51c9e2e838f6b198cccb6651ca6721b55b",
"width": 64,
"height": 64
}
],
"id": "0615zW4ha5elrV5f7TB8Yq"
},
"1kmyirVya5fRxdjsPFDM05": {
"name": "Paul's Boutique (20th Anniversary Remastered Edition)",
"release_date": "1989-07-25",
"uri": "spotify:album:1kmyirVya5fRxdjsPFDM05",
"artists": [
{
"name": "Beastie Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/03r4iKL2g2442PT9n2UKsx"
},
"uri": "spotify:artist:03r4iKL2g2442PT9n2UKsx",
"href": "https://api.spotify.com/v1/artists/03r4iKL2g2442PT9n2UKsx",
"type": "artist",
"id": "03r4iKL2g2442PT9n2UKsx"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bb01439076406a82bc9661e85e39c68c0b61d9d4",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/d06513fa601688c13e16bbbd13d160fb07b92837",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f2c2177d71a8380da260a19ecee01ad42bae1c13",
"width": 64,
"height": 64
}
],
"id": "1kmyirVya5fRxdjsPFDM05"
},
"1EvUhZU1lQ7scplQ140i6m": {
"name": "Live Through This",
"release_date": "1994-04-12",
"uri": "spotify:album:1EvUhZU1lQ7scplQ140i6m",
"artists": [
{
"name": "Hole",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5SHQUMAmEK5KmuSb0aDvsn"
},
"uri": "spotify:artist:5SHQUMAmEK5KmuSb0aDvsn",
"href": "https://api.spotify.com/v1/artists/5SHQUMAmEK5KmuSb0aDvsn",
"type": "artist",
"id": "5SHQUMAmEK5KmuSb0aDvsn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1275a55770a78d4cb30dd4c73a53ab9c3c2dd62b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/64314deed7073f079241fd25c9f37cd7442d3cee",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8f12a93d804f62195799309c4440b66b91099f31",
"width": 64,
"height": 64
}
],
"id": "1EvUhZU1lQ7scplQ140i6m"
},
"7djamhNmvVLPDg9FbO149d": {
"name": "Deserter's Songs",
"release_date": "1998",
"uri": "spotify:album:7djamhNmvVLPDg9FbO149d",
"artists": [
{
"name": "Mercury Rev",
"external_urls": {
"spotify": "https://open.spotify.com/artist/77oD8X9qLXZhpbCjv53l5n"
},
"uri": "spotify:artist:77oD8X9qLXZhpbCjv53l5n",
"href": "https://api.spotify.com/v1/artists/77oD8X9qLXZhpbCjv53l5n",
"type": "artist",
"id": "77oD8X9qLXZhpbCjv53l5n"
}
],
"images": [
{
"url": "https://i.scdn.co/image/06929b6a9be4dd8545096068b8946e2a0a7fc3f2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/98c8488df6dcc3ca9c606f036d4f0f70735c4d69",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5d7b54e3782ffa744fc9c31fdfbdbd1e8bfc44d5",
"width": 64,
"height": 64
}
],
"id": "7djamhNmvVLPDg9FbO149d"
},
"3Gm6V4tzZaYFbnhrvubylJ": {
"name": "Coles Corner",
"release_date": "2005-09-05",
"uri": "spotify:album:3Gm6V4tzZaYFbnhrvubylJ",
"artists": [
{
"name": "Richard Hawley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1ZsnHGOLYFg8CAHQQBc1ut"
},
"uri": "spotify:artist:1ZsnHGOLYFg8CAHQQBc1ut",
"href": "https://api.spotify.com/v1/artists/1ZsnHGOLYFg8CAHQQBc1ut",
"type": "artist",
"id": "1ZsnHGOLYFg8CAHQQBc1ut"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3c1684edad5c56e703e28c2ef73de43c1e433266",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0ffd8a11eacfdb4fa512c68a18251c35da01f9d7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ad089585061ef01d3b04c48e797bd0cb52bfce0e",
"width": 64,
"height": 64
}
],
"id": "3Gm6V4tzZaYFbnhrvubylJ"
},
"2ZytN2cY4Zjrr9ukb2rqTP": {
"name": "Off the Wall",
"release_date": "1979-08-10",
"uri": "spotify:album:2ZytN2cY4Zjrr9ukb2rqTP",
"artists": [
{
"name": "Michael Jackson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3fMbdgg4jU18AjLCKBhRSm"
},
"uri": "spotify:artist:3fMbdgg4jU18AjLCKBhRSm",
"href": "https://api.spotify.com/v1/artists/3fMbdgg4jU18AjLCKBhRSm",
"type": "artist",
"id": "3fMbdgg4jU18AjLCKBhRSm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4e883b352604514f02bb47d45e87322bd4376115",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/de59628f5bb71cd0058186a5d85583dcd7330626",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8d41c3a63c889635312373f2c047d4f3e91a7cee",
"width": 64,
"height": 64
}
],
"id": "2ZytN2cY4Zjrr9ukb2rqTP"
},
"4yotCnaIwlvyRef1MbvNfB": {
"name": "Utd. State 90",
"release_date": "1990-06-01",
"uri": "spotify:album:4yotCnaIwlvyRef1MbvNfB",
"artists": [
{
"name": "808 State",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7hFdUW64G4iU1tz46ITRfN"
},
"uri": "spotify:artist:7hFdUW64G4iU1tz46ITRfN",
"href": "https://api.spotify.com/v1/artists/7hFdUW64G4iU1tz46ITRfN",
"type": "artist",
"id": "7hFdUW64G4iU1tz46ITRfN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5113429a83c83a8e5a6f2942319f67f3ba71e4da",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3bfa0cd94e046f2b9667b611ce1c6bf437a54181",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c6948b883455f71f98e10817f6aa9fa4fae08344",
"width": 64,
"height": 64
}
],
"id": "4yotCnaIwlvyRef1MbvNfB"
},
"5eg56dCpFn32neJak2vk0f": {
"name": "Crazysexycool",
"release_date": "1994-11-15",
"uri": "spotify:album:5eg56dCpFn32neJak2vk0f",
"artists": [
{
"name": "TLC",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0TImkz4nPqjegtVSMZnMRq"
},
"uri": "spotify:artist:0TImkz4nPqjegtVSMZnMRq",
"href": "https://api.spotify.com/v1/artists/0TImkz4nPqjegtVSMZnMRq",
"type": "artist",
"id": "0TImkz4nPqjegtVSMZnMRq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1685e318da79043bb2d6b6b77f2acfb2acf5fb81",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7a17b048e5294e905bd17977c842638e08a495eb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/22d4c520c59898c4ac8e5263f9af84bc56a841bd",
"width": 64,
"height": 64
}
],
"id": "5eg56dCpFn32neJak2vk0f"
},
"5UI2X5VAmgu9xrlXDd5U7B": {
"name": "The Notorious Byrd Brothers",
"release_date": "1968-01-15",
"uri": "spotify:album:5UI2X5VAmgu9xrlXDd5U7B",
"artists": [
{
"name": "The Byrds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1PCZpxHJz7WAMF8EEq8bfc"
},
"uri": "spotify:artist:1PCZpxHJz7WAMF8EEq8bfc",
"href": "https://api.spotify.com/v1/artists/1PCZpxHJz7WAMF8EEq8bfc",
"type": "artist",
"id": "1PCZpxHJz7WAMF8EEq8bfc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/94b4df1e53044c6003efd22e9eb3b42b660946a7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ac121b1857c9649ce0430948ddac75805a7cad18",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ee1bc094c5e68bd0f29c3f41058045edc131f3f4",
"width": 64,
"height": 64
}
],
"id": "5UI2X5VAmgu9xrlXDd5U7B"
},
"7hez8jibf36E66GHpFkWz7": {
"name": "Buffalo Springfield Again",
"release_date": "1967",
"uri": "spotify:album:7hez8jibf36E66GHpFkWz7",
"artists": [
{
"name": "Buffalo Springfield",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3eskO5m0H4yiF64vRySBjr"
},
"uri": "spotify:artist:3eskO5m0H4yiF64vRySBjr",
"href": "https://api.spotify.com/v1/artists/3eskO5m0H4yiF64vRySBjr",
"type": "artist",
"id": "3eskO5m0H4yiF64vRySBjr"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a76b044abf7b34621ee91e297567d04d08ecf5dd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/534574dbac03f148a56a33b7ac036b216b913599",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f68a18f1ee4719868bd29158ce8f0c88c8224cce",
"width": 64,
"height": 64
}
],
"id": "7hez8jibf36E66GHpFkWz7"
},
"5t4FHrIAHI8nolSAOBRgPp": {
"name": "John Prine",
"release_date": "1971",
"uri": "spotify:album:5t4FHrIAHI8nolSAOBRgPp",
"artists": [
{
"name": "John Prine",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0nJUwPwC9Ti4vvuJ0q3MfT"
},
"uri": "spotify:artist:0nJUwPwC9Ti4vvuJ0q3MfT",
"href": "https://api.spotify.com/v1/artists/0nJUwPwC9Ti4vvuJ0q3MfT",
"type": "artist",
"id": "0nJUwPwC9Ti4vvuJ0q3MfT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/75aa565df9a8c7f51feb6ec6aeaf503765253fc8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3541cc5fbbad6d5034ba73cccd53f75359fddce6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3dd0d20fb5c7a9df13914c600d910abd843c5f00",
"width": 64,
"height": 64
}
],
"id": "5t4FHrIAHI8nolSAOBRgPp"
},
"3AjiChlr93cN2LivTWVVXh": {
"name": "Live At The Star Club, Hamburg",
"release_date": "1998",
"uri": "spotify:album:3AjiChlr93cN2LivTWVVXh",
"artists": [
{
"name": "Jerry Lee Lewis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2zyz0VJqrDXeFDIyrfVXSo"
},
"uri": "spotify:artist:2zyz0VJqrDXeFDIyrfVXSo",
"href": "https://api.spotify.com/v1/artists/2zyz0VJqrDXeFDIyrfVXSo",
"type": "artist",
"id": "2zyz0VJqrDXeFDIyrfVXSo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/072ff7e33b8b27fd631aa37339531126dd7bdd2b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c53239d6ccfd5aedaadcb1f32577ce4119705f75",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e2c82e3dd95d6772dea7c20f3a874c3ee2e36870",
"width": 64,
"height": 64
}
],
"id": "3AjiChlr93cN2LivTWVVXh"
},
"7btiyhWzUfzxN3ijSiBpC8": {
"name": "Only Built 4 Cuban Linx",
"release_date": "1995",
"uri": "spotify:album:7btiyhWzUfzxN3ijSiBpC8",
"artists": [
{
"name": "Raekwon",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2yQf6b8hxahZaT5dHlWaB1"
},
"uri": "spotify:artist:2yQf6b8hxahZaT5dHlWaB1",
"href": "https://api.spotify.com/v1/artists/2yQf6b8hxahZaT5dHlWaB1",
"type": "artist",
"id": "2yQf6b8hxahZaT5dHlWaB1"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9b5326fdf87543e3b51ea6ab937ffedd0401a41d",
"width": 636,
"height": 640
},
{
"url": "https://i.scdn.co/image/7779c41080932fb44d8c88b7e49c7cc556c02aed",
"width": 298,
"height": 300
},
{
"url": "https://i.scdn.co/image/461750a6d5a1d653adc074cc93938fbdaf0b43bb",
"width": 64,
"height": 64
}
],
"id": "7btiyhWzUfzxN3ijSiBpC8"
},
"3Xp9oqOrXswimE8eD02Wty": {
"name": "461 Ocean Boulevard (Remastered)",
"release_date": "1974-07-01",
"uri": "spotify:album:3Xp9oqOrXswimE8eD02Wty",
"artists": [
{
"name": "Eric Clapton",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6PAt558ZEZl0DmdXlnjMgD"
},
"uri": "spotify:artist:6PAt558ZEZl0DmdXlnjMgD",
"href": "https://api.spotify.com/v1/artists/6PAt558ZEZl0DmdXlnjMgD",
"type": "artist",
"id": "6PAt558ZEZl0DmdXlnjMgD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/520f638677b04fe663891d8ceec1811762be6f14",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/55e029b08e2d02aa1a68840cdb2a483b0e5f1470",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/208f69d0dcc67480952c59a53eaef950655f4d41",
"width": 64,
"height": 63
}
],
"id": "3Xp9oqOrXswimE8eD02Wty"
},
"0txgYRjymfL0U28aTEK6Qk": {
"name": "Casanova",
"release_date": "1996",
"uri": "spotify:album:0txgYRjymfL0U28aTEK6Qk",
"artists": [
{
"name": "The Divine Comedy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7EV6jW6dotBdvsHj6xPixi"
},
"uri": "spotify:artist:7EV6jW6dotBdvsHj6xPixi",
"href": "https://api.spotify.com/v1/artists/7EV6jW6dotBdvsHj6xPixi",
"type": "artist",
"id": "7EV6jW6dotBdvsHj6xPixi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b3e3779cfb04aa033c4444099b5fc4d9f628e004",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ce8fc258bca27c21fc21a6ebb0ad88f8187f25ca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ce96da726e847656cec9e0419f993048db9122eb",
"width": 64,
"height": 64
}
],
"id": "0txgYRjymfL0U28aTEK6Qk"
},
"5myXQ7U373A3DMPtuaojcm": {
"name": "Lady In Satin",
"release_date": "1994-10-17",
"uri": "spotify:album:5myXQ7U373A3DMPtuaojcm",
"artists": [
{
"name": "Billie Holiday",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1YzCsTRb22dQkh9lghPIrp"
},
"uri": "spotify:artist:1YzCsTRb22dQkh9lghPIrp",
"href": "https://api.spotify.com/v1/artists/1YzCsTRb22dQkh9lghPIrp",
"type": "artist",
"id": "1YzCsTRb22dQkh9lghPIrp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9b9f8bf2c9bb8f5bca90e9ab34be01f011941908",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/933d280f1a5283b896a00ee4d5055d1111269e46",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d57023e00996820012ad0726070287dd063c46b5",
"width": 64,
"height": 64
}
],
"id": "5myXQ7U373A3DMPtuaojcm"
},
"6GJCGWfI95aeRsdtVB52vc": {
"name": "Back To Black",
"release_date": "2006-01-01",
"uri": "spotify:album:6GJCGWfI95aeRsdtVB52vc",
"artists": [
{
"name": "Amy Winehouse",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6Q192DXotxtaysaqNPy5yR"
},
"uri": "spotify:artist:6Q192DXotxtaysaqNPy5yR",
"href": "https://api.spotify.com/v1/artists/6Q192DXotxtaysaqNPy5yR",
"type": "artist",
"id": "6Q192DXotxtaysaqNPy5yR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/51418933e0e45577c9bb1bbf6d263aeb465cfd2e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/065142e0c4c0cb194e20702cae8dda05d1085a44",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/27bec168de7f655d13e329a781e290b844b831a4",
"width": 64,
"height": 64
}
],
"id": "6GJCGWfI95aeRsdtVB52vc"
},
"4wcH6H2h6LFBbfXgwZY9oH": {
"name": "The Village Green Preservation Society",
"release_date": "1968-11-22",
"uri": "spotify:album:4wcH6H2h6LFBbfXgwZY9oH",
"artists": [
{
"name": "The Kinks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E"
},
"uri": "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E",
"href": "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E",
"type": "artist",
"id": "1SQRv42e4PjEYfPhS0Tk9E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3cc8ff4c51120529731f7aa82d01f27b6acd579f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/62a2f87fc44e0a69f93f2857163fd7d6b737b13b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/513e148b7cb812ba3774a24727c66823d42c128d",
"width": 64,
"height": 64
}
],
"id": "4wcH6H2h6LFBbfXgwZY9oH"
},
"4VWobt8JHr24Gq2qUZK7DB": {
"name": "Pump (Reissue Remastered)",
"release_date": "1989",
"uri": "spotify:album:4VWobt8JHr24Gq2qUZK7DB",
"artists": [
{
"name": "Aerosmith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7Ey4PD4MYsKc5I2dolUwbH"
},
"uri": "spotify:artist:7Ey4PD4MYsKc5I2dolUwbH",
"href": "https://api.spotify.com/v1/artists/7Ey4PD4MYsKc5I2dolUwbH",
"type": "artist",
"id": "7Ey4PD4MYsKc5I2dolUwbH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c8960bb5e361231d0b636b93dcbb385df4d790b1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/127d36b9a88ee6e820f21ee0526fd72679fab6bf",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ab42bd4d82a49a728222bcee3117e7bd7a45751a",
"width": 64,
"height": 64
}
],
"id": "4VWobt8JHr24Gq2qUZK7DB"
},
"4DjSI3qiOKsUlZo4NsgYFq": {
"name": "Chicago Transit Authority",
"release_date": "2002-07-16",
"uri": "spotify:album:4DjSI3qiOKsUlZo4NsgYFq",
"artists": [
{
"name": "Chicago",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3iDD7bnsjL9J4fO298r0L0"
},
"uri": "spotify:artist:3iDD7bnsjL9J4fO298r0L0",
"href": "https://api.spotify.com/v1/artists/3iDD7bnsjL9J4fO298r0L0",
"type": "artist",
"id": "3iDD7bnsjL9J4fO298r0L0"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8f532cb1be876e43c5ecba71281cfd0ca284ca4a",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/14b53b7cff8f8787232dc7004b3c4bce8d8bff19",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/f8c968bbabfbb385ee820aa2f7b07ade10c8314d",
"width": 64,
"height": 64
}
],
"id": "4DjSI3qiOKsUlZo4NsgYFq"
},
"6DeU398qrJ1bLuryetSmup": {
"name": "Under Construction",
"release_date": "2002-11-11",
"uri": "spotify:album:6DeU398qrJ1bLuryetSmup",
"artists": [
{
"name": "Missy Elliott",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2wIVse2owClT7go1WT98tk"
},
"uri": "spotify:artist:2wIVse2owClT7go1WT98tk",
"href": "https://api.spotify.com/v1/artists/2wIVse2owClT7go1WT98tk",
"type": "artist",
"id": "2wIVse2owClT7go1WT98tk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9093be4c2737d8e27a3ceb89a3b2f10e04c8e435",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/55363e126f060206b591b8bb7653a19465950b78",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/bf7942d97630754e0309d85cf94dcd7610fe140d",
"width": 64,
"height": 63
}
],
"id": "6DeU398qrJ1bLuryetSmup"
},
"3F7qb5AiQdWxuMgSyQ9zyg": {
"name": "Definitely Maybe (Remastered) [Deluxe Version]",
"release_date": "1994-08-29",
"uri": "spotify:album:3F7qb5AiQdWxuMgSyQ9zyg",
"artists": [
{
"name": "Oasis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2DaxqgrOhkeH0fpeiQq2f4"
},
"uri": "spotify:artist:2DaxqgrOhkeH0fpeiQq2f4",
"href": "https://api.spotify.com/v1/artists/2DaxqgrOhkeH0fpeiQq2f4",
"type": "artist",
"id": "2DaxqgrOhkeH0fpeiQq2f4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/49ff564a0d849ae0e0ce7197a7470a8a07978bc4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/539889ac8b17001d002e8fb4b112821568edd520",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/565a350486fce298d47568ce279c338bb0e063c8",
"width": 64,
"height": 64
}
],
"id": "3F7qb5AiQdWxuMgSyQ9zyg"
},
"7rSZXXHHvIhF4yUFdaOCy9": {
"name": "Are You Experienced",
"release_date": "1967-05-12",
"uri": "spotify:album:7rSZXXHHvIhF4yUFdaOCy9",
"artists": [
{
"name": "Jimi Hendrix",
"external_urls": {
"spotify": "https://open.spotify.com/artist/776Uo845nYHJpNaStv1Ds4"
},
"uri": "spotify:artist:776Uo845nYHJpNaStv1Ds4",
"href": "https://api.spotify.com/v1/artists/776Uo845nYHJpNaStv1Ds4",
"type": "artist",
"id": "776Uo845nYHJpNaStv1Ds4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/df53a186c41bf130c6f56627334c9b751d27ff84",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bad0306a070fb9b09a0b9ee40872ed566e23d61f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/332ecce39c8c1691d45dff32acc438c98bbccc6e",
"width": 64,
"height": 64
}
],
"id": "7rSZXXHHvIhF4yUFdaOCy9"
},
"7j4m8OUy87xQsuIVJQxF3J": {
"name": "Since I Left You",
"release_date": "2000",
"uri": "spotify:album:7j4m8OUy87xQsuIVJQxF3J",
"artists": [
{
"name": "The Avalanches",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3C8RpaI3Go0yFF9whvKoED"
},
"uri": "spotify:artist:3C8RpaI3Go0yFF9whvKoED",
"href": "https://api.spotify.com/v1/artists/3C8RpaI3Go0yFF9whvKoED",
"type": "artist",
"id": "3C8RpaI3Go0yFF9whvKoED"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f9b0edd76820b968fca4b8f348208f99e4e45435",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/bf4c7f0149433ad1484e98b85d366a0691e83bee",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/1192ff77243161ef914926b7e5ca86c440f94410",
"width": 64,
"height": 62
}
],
"id": "7j4m8OUy87xQsuIVJQxF3J"
},
"6i5tPnXjltqPzcWemiyz8q": {
"name": "Bubble And Scrape",
"release_date": "1993",
"uri": "spotify:album:6i5tPnXjltqPzcWemiyz8q",
"artists": [
{
"name": "Sebadoh",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2wrhBKGC3DTNNNDRJPaxW6"
},
"uri": "spotify:artist:2wrhBKGC3DTNNNDRJPaxW6",
"href": "https://api.spotify.com/v1/artists/2wrhBKGC3DTNNNDRJPaxW6",
"type": "artist",
"id": "2wrhBKGC3DTNNNDRJPaxW6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3e9e79997bd5e38e59ea945341771c6e18102df4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4f737237407c7a74436694e180bf2f08a8eccc57",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e6feb539e849c70c2f93e3677e6a958664d74d42",
"width": 64,
"height": 64
}
],
"id": "6i5tPnXjltqPzcWemiyz8q"
},
"0nr3H081blLhLqRL6n5cND": {
"name": "Liege And Lief (Deluxe Edition)",
"release_date": "1969",
"uri": "spotify:album:0nr3H081blLhLqRL6n5cND",
"artists": [
{
"name": "Fairport Convention",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2LIdnZDzySb04oH40be1fR"
},
"uri": "spotify:artist:2LIdnZDzySb04oH40be1fR",
"href": "https://api.spotify.com/v1/artists/2LIdnZDzySb04oH40be1fR",
"type": "artist",
"id": "2LIdnZDzySb04oH40be1fR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/39bece17f359fd7b61ea0e8dc3e8e2f3bc256d84",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6502b5d8750217b589cfa7e4c8e1141004f6d75c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cc16bb193bfb0a58bb4d0df1c28682985d138388",
"width": 64,
"height": 64
}
],
"id": "0nr3H081blLhLqRL6n5cND"
},
"5Y0p2XCgRRIjna91aQE8q7": {
"name": "The Queen Is Dead",
"release_date": "1986",
"uri": "spotify:album:5Y0p2XCgRRIjna91aQE8q7",
"artists": [
{
"name": "The Smiths",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3yY2gUcIsjMr8hjo51PoJ8"
},
"uri": "spotify:artist:3yY2gUcIsjMr8hjo51PoJ8",
"href": "https://api.spotify.com/v1/artists/3yY2gUcIsjMr8hjo51PoJ8",
"type": "artist",
"id": "3yY2gUcIsjMr8hjo51PoJ8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/86ff3e66dbee0713fb8057d6a1b4a95490de25ba",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fba88127753bad349ee8672ccf60ecc98e5cf307",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cbbc3384690c7aa0f21d6bf2853e0ded6b1feab2",
"width": 64,
"height": 64
}
],
"id": "5Y0p2XCgRRIjna91aQE8q7"
},
"5zbzqL7RTp3KlJ2kIqbi72": {
"name": "Goodbye Yellow Brick Road (40th Anniversary Celebration/ Super Deluxe Edition)",
"release_date": "1973-10-05",
"uri": "spotify:album:5zbzqL7RTp3KlJ2kIqbi72",
"artists": [
{
"name": "Elton John",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3PhoLpVuITZKcymswpck5b"
},
"uri": "spotify:artist:3PhoLpVuITZKcymswpck5b",
"href": "https://api.spotify.com/v1/artists/3PhoLpVuITZKcymswpck5b",
"type": "artist",
"id": "3PhoLpVuITZKcymswpck5b"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2b04eddccb7dcda6da8dc9d7c1d9eaf94496e0ae",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2b9aeb1e9dfebbc7d65a6b1d4e6338f0abfc4170",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a8da1f2648703975a2329dc1f305547df317f573",
"width": 64,
"height": 64
}
],
"id": "5zbzqL7RTp3KlJ2kIqbi72"
},
"7kW0cpKgSVsEqcc8xgbSb0": {
"name": "Vulgar Display Of Power",
"release_date": "1992-02-21",
"uri": "spotify:album:7kW0cpKgSVsEqcc8xgbSb0",
"artists": [
{
"name": "Pantera",
"external_urls": {
"spotify": "https://open.spotify.com/artist/14pVkFUHDL207LzLHtSA18"
},
"uri": "spotify:artist:14pVkFUHDL207LzLHtSA18",
"href": "https://api.spotify.com/v1/artists/14pVkFUHDL207LzLHtSA18",
"type": "artist",
"id": "14pVkFUHDL207LzLHtSA18"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c4b1ee633fe2d01a9bb7d7e0cb95bf870df25a90",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0ee7dd0ad4d5f60c647a0640f3861ea56db30626",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2d1deb74ab6da9c639f762ae0cbfc9955d86de79",
"width": 64,
"height": 64
}
],
"id": "7kW0cpKgSVsEqcc8xgbSb0"
},
"1ne2KBkrZa2Qr1TFwoNmJC": {
"name": "Tuesday Night Music Club",
"release_date": "1993",
"uri": "spotify:album:1ne2KBkrZa2Qr1TFwoNmJC",
"artists": [
{
"name": "Sheryl Crow",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4TKTii6gnOnUXQHyuo9JaD"
},
"uri": "spotify:artist:4TKTii6gnOnUXQHyuo9JaD",
"href": "https://api.spotify.com/v1/artists/4TKTii6gnOnUXQHyuo9JaD",
"type": "artist",
"id": "4TKTii6gnOnUXQHyuo9JaD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0238a8f0d370c0f208d143de2423b2ed69dcb9b1",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/c65dd18020246b90c8f4ac1c4115bc5468cff5be",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/dea85f11bf1873b97dbb7920a5c960c54978a7d7",
"width": 64,
"height": 62
}
],
"id": "1ne2KBkrZa2Qr1TFwoNmJC"
},
"6eXE4xeu9GHSa8zTEVtFep": {
"name": "Madman Across The Water",
"release_date": "1971-11-05",
"uri": "spotify:album:6eXE4xeu9GHSa8zTEVtFep",
"artists": [
{
"name": "Elton John",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3PhoLpVuITZKcymswpck5b"
},
"uri": "spotify:artist:3PhoLpVuITZKcymswpck5b",
"href": "https://api.spotify.com/v1/artists/3PhoLpVuITZKcymswpck5b",
"type": "artist",
"id": "3PhoLpVuITZKcymswpck5b"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e8d536df8de166fe43c9f1dc910f23e84952d7e5",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/0bc13a3eb3ecb8c5b5e6b285d0f69af99d92811c",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/1a0483143de959be39fed1cc63772a75e18e30ae",
"width": 64,
"height": 63
}
],
"id": "6eXE4xeu9GHSa8zTEVtFep"
},
"5SUqb3XY2BmvfAFLTjnBs0": {
"name": "Fromohio",
"release_date": "1989",
"uri": "spotify:album:5SUqb3XY2BmvfAFLTjnBs0",
"artists": [
{
"name": "fIREHOSE",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6MIbrfpc9aH6gsEl2yep68"
},
"uri": "spotify:artist:6MIbrfpc9aH6gsEl2yep68",
"href": "https://api.spotify.com/v1/artists/6MIbrfpc9aH6gsEl2yep68",
"type": "artist",
"id": "6MIbrfpc9aH6gsEl2yep68"
}
],
"images": [
{
"url": "https://i.scdn.co/image/962a253f3af7462e6950343984cb2b31344a2ae8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2a0a84e5d1d0b09d9ff1717d8127ce8dafa02159",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/65254ff6ef154b259cae693540f8adb2e25d288c",
"width": 64,
"height": 64
}
],
"id": "5SUqb3XY2BmvfAFLTjnBs0"
},
"6lmjLgTFMevnJVif0iwfDi": {
"name": "Tea for the Tillerman (Deluxe Edition)",
"release_date": "1970-11-23",
"uri": "spotify:album:6lmjLgTFMevnJVif0iwfDi",
"artists": [
{
"name": "Cat Stevens",
"external_urls": {
"spotify": "https://open.spotify.com/artist/08F3Y3SctIlsOEmKd6dnH8"
},
"uri": "spotify:artist:08F3Y3SctIlsOEmKd6dnH8",
"href": "https://api.spotify.com/v1/artists/08F3Y3SctIlsOEmKd6dnH8",
"type": "artist",
"id": "08F3Y3SctIlsOEmKd6dnH8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ae1889d7b44335cc7c26e0a079e354d81203ba2c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/967fb71c4fcf08c4ff56386531c0083c4f148de8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e8bd9f2412056698abd9cfb7be7da54b01467746",
"width": 64,
"height": 64
}
],
"id": "6lmjLgTFMevnJVif0iwfDi"
},
"0Bk6rV33JObdtOpjJg0vIy": {
"name": "The Sensual World",
"release_date": "1989",
"uri": "spotify:album:0Bk6rV33JObdtOpjJg0vIy",
"artists": [
{
"name": "Kate Bush",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1aSxMhuvixZ8h9dK9jIDwL"
},
"uri": "spotify:artist:1aSxMhuvixZ8h9dK9jIDwL",
"href": "https://api.spotify.com/v1/artists/1aSxMhuvixZ8h9dK9jIDwL",
"type": "artist",
"id": "1aSxMhuvixZ8h9dK9jIDwL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b43a1ccb46c0a8d95c54c4c65e5b8316ce34237f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/67796fe3d7fd4f61abdd30389bab84e82b4de18c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f223e1cb4e1c99caa03bf87a0873715a8c9d3180",
"width": 64,
"height": 64
}
],
"id": "0Bk6rV33JObdtOpjJg0vIy"
},
"3ZnF1cPxlqB48RyLiecDnv": {
"name": "Repeater",
"release_date": "1990",
"uri": "spotify:album:3ZnF1cPxlqB48RyLiecDnv",
"artists": [
{
"name": "Fugazi",
"external_urls": {
"spotify": "https://open.spotify.com/artist/62sC6lUEWRjbFqXpMmOk4G"
},
"uri": "spotify:artist:62sC6lUEWRjbFqXpMmOk4G",
"href": "https://api.spotify.com/v1/artists/62sC6lUEWRjbFqXpMmOk4G",
"type": "artist",
"id": "62sC6lUEWRjbFqXpMmOk4G"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1c2dc47852aba2eb2aa46fae94b747a92157d097",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0bce61b3de3ec11ce1e6844c113217cc097b906f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6534d377b06807d225070318b65b8ba164b090bb",
"width": 64,
"height": 64
}
],
"id": "3ZnF1cPxlqB48RyLiecDnv"
},
"0WD8ECEOHIn0iQ2ejzAsBh": {
"name": "Crosstalk: The Best Of Moby Grape",
"release_date": "2004",
"uri": "spotify:album:0WD8ECEOHIn0iQ2ejzAsBh",
"artists": [
{
"name": "Moby Grape",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0NHSh9S0VQiFfsEFbvhRXN"
},
"uri": "spotify:artist:0NHSh9S0VQiFfsEFbvhRXN",
"href": "https://api.spotify.com/v1/artists/0NHSh9S0VQiFfsEFbvhRXN",
"type": "artist",
"id": "0NHSh9S0VQiFfsEFbvhRXN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e222e91df30be7f6fefc763e2297651d7837b049",
"width": 640,
"height": 635
},
{
"url": "https://i.scdn.co/image/b0a9e698faede9ab37d9cd1d8c5ee37719364fb2",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/0795b1a933befd2b25fca8baba765e13980298a3",
"width": 64,
"height": 63
}
],
"id": "0WD8ECEOHIn0iQ2ejzAsBh"
},
"1m08xZXMNDVCYU7VgUGsme": {
"name": "My Life In The Bush Of Ghosts",
"release_date": "1981-02-01",
"uri": "spotify:album:1m08xZXMNDVCYU7VgUGsme",
"artists": [
{
"name": "Brian Eno",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MSUfLeTdDEoZiJPDSBXgi"
},
"uri": "spotify:artist:7MSUfLeTdDEoZiJPDSBXgi",
"href": "https://api.spotify.com/v1/artists/7MSUfLeTdDEoZiJPDSBXgi",
"type": "artist",
"id": "7MSUfLeTdDEoZiJPDSBXgi"
},
{
"name": "David Byrne",
"external_urls": {
"spotify": "https://open.spotify.com/artist/20vuBdFblWUo2FCOvUzusB"
},
"uri": "spotify:artist:20vuBdFblWUo2FCOvUzusB",
"href": "https://api.spotify.com/v1/artists/20vuBdFblWUo2FCOvUzusB",
"type": "artist",
"id": "20vuBdFblWUo2FCOvUzusB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d7c10d02ceed8bab4f0b45d854c57a500a11e22e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/78c096cc27fd3911fd77de633ad62ea70650a6a5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b0d471bbec96b2992bde1dd151e52be8205266d8",
"width": 64,
"height": 64
}
],
"id": "1m08xZXMNDVCYU7VgUGsme"
},
"662vZghUEjQCywafYimHtK": {
"name": "Penthouse And Pavement",
"release_date": "1981",
"uri": "spotify:album:662vZghUEjQCywafYimHtK",
"artists": [
{
"name": "Heaven 17",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5PYuBRQMHh7nWmdV076sH9"
},
"uri": "spotify:artist:5PYuBRQMHh7nWmdV076sH9",
"href": "https://api.spotify.com/v1/artists/5PYuBRQMHh7nWmdV076sH9",
"type": "artist",
"id": "5PYuBRQMHh7nWmdV076sH9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/76514c81a9031f213b51d59e99f1ea28abe1428e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0c2146465e94a5efded81a19b0b040812a942175",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/56b8de3e125d9a0e3986afa341bcbc977819cdb8",
"width": 64,
"height": 64
}
],
"id": "662vZghUEjQCywafYimHtK"
},
"1fjxW1nWJZbZhni4slSy38": {
"name": "Haunted Dancehall",
"release_date": "1994-11-28",
"uri": "spotify:album:1fjxW1nWJZbZhni4slSy38",
"artists": [
{
"name": "The Sabres Of Paradise",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3w0vR06WHMVwMe1G20wmlS"
},
"uri": "spotify:artist:3w0vR06WHMVwMe1G20wmlS",
"href": "https://api.spotify.com/v1/artists/3w0vR06WHMVwMe1G20wmlS",
"type": "artist",
"id": "3w0vR06WHMVwMe1G20wmlS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/afae851ae7ff89d5e68f26cb35607313f8ae2937",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/897663a4946d7b41efb6d2f6b64967d4e1e68d4b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/61db01684fe45607e673fa83b47d3be51a1e99bf",
"width": 64,
"height": 64
}
],
"id": "1fjxW1nWJZbZhni4slSy38"
},
"6ymZBbRSmzAvoSGmwAFoxm": {
"name": "Doolittle",
"release_date": "1989",
"uri": "spotify:album:6ymZBbRSmzAvoSGmwAFoxm",
"artists": [
{
"name": "Pixies",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zvul52xwTWzilBZl6BUbT"
},
"uri": "spotify:artist:6zvul52xwTWzilBZl6BUbT",
"href": "https://api.spotify.com/v1/artists/6zvul52xwTWzilBZl6BUbT",
"type": "artist",
"id": "6zvul52xwTWzilBZl6BUbT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bffc195a56198879931403e60eeb04fc3ad088ed",
"width": 640,
"height": 624
},
{
"url": "https://i.scdn.co/image/bf8ff4fa67e09d5e44db36589f1778060f0c3af7",
"width": 300,
"height": 292
},
{
"url": "https://i.scdn.co/image/278e9bcc92884ccf419ed80a5a87d52f9695db43",
"width": 64,
"height": 62
}
],
"id": "6ymZBbRSmzAvoSGmwAFoxm"
},
"64v1yzdytF7Trfzswc0bRo": {
"name": "Spiderland",
"release_date": "1991-03-15",
"uri": "spotify:album:64v1yzdytF7Trfzswc0bRo",
"artists": [
{
"name": "Slint",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4IwOItqRhsIoRuD5HP4vyC"
},
"uri": "spotify:artist:4IwOItqRhsIoRuD5HP4vyC",
"href": "https://api.spotify.com/v1/artists/4IwOItqRhsIoRuD5HP4vyC",
"type": "artist",
"id": "4IwOItqRhsIoRuD5HP4vyC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/86713bde57ce21e7670fc4cd9d2d3d02d53804ef",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/47b4b8503c702dfc30d499a4c0378387b782e49e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c090a0a7aaa0b4f8f9fe0c74d3fd643bb675f4fe",
"width": 64,
"height": 64
}
],
"id": "64v1yzdytF7Trfzswc0bRo"
},
"7w9Og10Tdkh3nqrVD1D5IW": {
"name": "Bryter Layter",
"release_date": "1970-01-01",
"uri": "spotify:album:7w9Og10Tdkh3nqrVD1D5IW",
"artists": [
{
"name": "Nick Drake",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5c3GLXai8YOMid29ZEuR9y"
},
"uri": "spotify:artist:5c3GLXai8YOMid29ZEuR9y",
"href": "https://api.spotify.com/v1/artists/5c3GLXai8YOMid29ZEuR9y",
"type": "artist",
"id": "5c3GLXai8YOMid29ZEuR9y"
}
],
"images": [
{
"url": "https://i.scdn.co/image/76ae6932784595a9c2e2794a18bc190e6c68bf23",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/498076ad404fcecd3b624f5018c67630fcbaab5d",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/5f9aa44faa1e7d324c698b4db25eb7a11885d3f2",
"width": 64,
"height": 63
}
],
"id": "7w9Og10Tdkh3nqrVD1D5IW"
},
"0Hs3BomCdwIWRhgT57x22T": {
"name": "In A Silent Way",
"release_date": "1969",
"uri": "spotify:album:0Hs3BomCdwIWRhgT57x22T",
"artists": [
{
"name": "Miles Davis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0kbYTNQb4Pb1rPbbaF0pT4"
},
"uri": "spotify:artist:0kbYTNQb4Pb1rPbbaF0pT4",
"href": "https://api.spotify.com/v1/artists/0kbYTNQb4Pb1rPbbaF0pT4",
"type": "artist",
"id": "0kbYTNQb4Pb1rPbbaF0pT4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1fddb6c4e26d5f8e85252c9acc5d530e7821a17d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bf1fb601654caeecf7e16357bec660751457a3dc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0d407cf707617af351142816d9d3dbc1e0337723",
"width": 64,
"height": 64
}
],
"id": "0Hs3BomCdwIWRhgT57x22T"
},
"4Ais0a1C6EzL9gAyWlYqJb": {
"name": "Tical",
"release_date": "1994-11-15",
"uri": "spotify:album:4Ais0a1C6EzL9gAyWlYqJb",
"artists": [
{
"name": "Method Man",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4VmEWwd8y9MCLwexFMdpwt"
},
"uri": "spotify:artist:4VmEWwd8y9MCLwexFMdpwt",
"href": "https://api.spotify.com/v1/artists/4VmEWwd8y9MCLwexFMdpwt",
"type": "artist",
"id": "4VmEWwd8y9MCLwexFMdpwt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dad4d753a539629f8361f08f18a3263b3d181a75",
"width": 640,
"height": 631
},
{
"url": "https://i.scdn.co/image/590b619bfd912ae982a443560cb29348d05c5da6",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/3bd63ebc2a3926a965d1563e67b8224f5d30657a",
"width": 64,
"height": 63
}
],
"id": "4Ais0a1C6EzL9gAyWlYqJb"
},
"6TrlS4jRRt83HYjUKHcNMd": {
"name": "Sincere",
"release_date": "2006-01-01",
"uri": "spotify:album:6TrlS4jRRt83HYjUKHcNMd",
"artists": [
{
"name": "Mj Cole",
"external_urls": {
"spotify": "https://open.spotify.com/artist/49GY4uPAwdlk5lSGtfKWYl"
},
"uri": "spotify:artist:49GY4uPAwdlk5lSGtfKWYl",
"href": "https://api.spotify.com/v1/artists/49GY4uPAwdlk5lSGtfKWYl",
"type": "artist",
"id": "49GY4uPAwdlk5lSGtfKWYl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5ab6d44ba4ae35dd47891bc7989c0fe85d9662be",
"width": 640,
"height": 635
},
{
"url": "https://i.scdn.co/image/e1e87d6b2380556d36afd266f0c00b9e0643777f",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/d36c7dd12c66a0b53b3a81e177d0aedb08cbbcbc",
"width": 64,
"height": 64
}
],
"id": "6TrlS4jRRt83HYjUKHcNMd"
},
"4F4ykbsg5C8sL5WX364PvB": {
"name": "Merriweather Post Pavilion",
"release_date": "2009-01-10",
"uri": "spotify:album:4F4ykbsg5C8sL5WX364PvB",
"artists": [
{
"name": "Animal Collective",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4kwxTgCKMipBKhSnEstNKj"
},
"uri": "spotify:artist:4kwxTgCKMipBKhSnEstNKj",
"href": "https://api.spotify.com/v1/artists/4kwxTgCKMipBKhSnEstNKj",
"type": "artist",
"id": "4kwxTgCKMipBKhSnEstNKj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/43f829e56a7df96df30f489db1950330fe016093",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/89bb8d11ac73d09fed36a90bcd7d6e95d393c4b7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eff63a2d1a657f9f5201ec890fd6619c98c29d5c",
"width": 64,
"height": 64
}
],
"id": "4F4ykbsg5C8sL5WX364PvB"
},
"3jOpGJzljTdOAYYPrBmyQE": {
"name": "Locust Abortion Technician",
"release_date": "1987",
"uri": "spotify:album:3jOpGJzljTdOAYYPrBmyQE",
"artists": [
{
"name": "Butthole Surfers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/62BcWP4fzR8axESibNQEhs"
},
"uri": "spotify:artist:62BcWP4fzR8axESibNQEhs",
"href": "https://api.spotify.com/v1/artists/62BcWP4fzR8axESibNQEhs",
"type": "artist",
"id": "62BcWP4fzR8axESibNQEhs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d54f7f424ec56d29a45fc5c08fa692536831ba3c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c960b4332d055e8a4a8e6d91245e6eb038eaa098",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fd8aea8ec39f176e7104fd0e2392c1f37003954d",
"width": 64,
"height": 64
}
],
"id": "3jOpGJzljTdOAYYPrBmyQE"
},
"7ndqT6LH9o6YQ5uA7aT0St": {
"name": "Best Of Volume 1",
"release_date": "1996-09-24",
"uri": "spotify:album:7ndqT6LH9o6YQ5uA7aT0St",
"artists": [
{
"name": "Van Halen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2cnMpRsOVqtPMfq7YiFE6K"
},
"uri": "spotify:artist:2cnMpRsOVqtPMfq7YiFE6K",
"href": "https://api.spotify.com/v1/artists/2cnMpRsOVqtPMfq7YiFE6K",
"type": "artist",
"id": "2cnMpRsOVqtPMfq7YiFE6K"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6fab6c8f0c12d8c5ae784726cc216ee521891413",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5b2aaa14a5219bc4c835bff4376a6720ae433ad6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/99ec044a42f444084a45edddaf0f2f82d5d75a33",
"width": 64,
"height": 64
}
],
"id": "7ndqT6LH9o6YQ5uA7aT0St"
},
"1C2h7mLntPSeVYciMRTF4a": {
"name": "Thriller 25 Super Deluxe Edition",
"release_date": "2008-02-08",
"uri": "spotify:album:1C2h7mLntPSeVYciMRTF4a",
"artists": [
{
"name": "Michael Jackson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3fMbdgg4jU18AjLCKBhRSm"
},
"uri": "spotify:artist:3fMbdgg4jU18AjLCKBhRSm",
"href": "https://api.spotify.com/v1/artists/3fMbdgg4jU18AjLCKBhRSm",
"type": "artist",
"id": "3fMbdgg4jU18AjLCKBhRSm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e337f3661f68bc4d96a554de0ad7988d65edb25a",
"width": 640,
"height": 568
},
{
"url": "https://i.scdn.co/image/6d1d714f4dcb306d3b3533fea400362974060d2d",
"width": 300,
"height": 266
},
{
"url": "https://i.scdn.co/image/46f49ee7906c54ba1bee122eeb07353b340241c1",
"width": 64,
"height": 57
}
],
"id": "1C2h7mLntPSeVYciMRTF4a"
},
"2gu1tAkUSoe5zTJNM0qU3g": {
"name": "Modern Life Is Rubbish [Special Edition]",
"release_date": "1993-05-10",
"uri": "spotify:album:2gu1tAkUSoe5zTJNM0qU3g",
"artists": [
{
"name": "Blur",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MhMgCo0Bl0Kukl93PZbYS"
},
"uri": "spotify:artist:7MhMgCo0Bl0Kukl93PZbYS",
"href": "https://api.spotify.com/v1/artists/7MhMgCo0Bl0Kukl93PZbYS",
"type": "artist",
"id": "7MhMgCo0Bl0Kukl93PZbYS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c2eeefac6a0d26abbd03fbb0754ae9e5cce0ff68",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6c11873c57173ec992aca45083c60ae1e5c5f685",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/95b6bd634795d9a8d6577e97c5a38be68d2345d2",
"width": 64,
"height": 64
}
],
"id": "2gu1tAkUSoe5zTJNM0qU3g"
},
"4oVpqMqd0A1GPW3RkypqXw": {
"name": "Be",
"release_date": "2005-05-24",
"uri": "spotify:album:4oVpqMqd0A1GPW3RkypqXw",
"artists": [
{
"name": "Common",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2GHclqNVjqGuiE5mA7BEoc"
},
"uri": "spotify:artist:2GHclqNVjqGuiE5mA7BEoc",
"href": "https://api.spotify.com/v1/artists/2GHclqNVjqGuiE5mA7BEoc",
"type": "artist",
"id": "2GHclqNVjqGuiE5mA7BEoc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6eb89c0ada50ad46200bf471b3bd23d0531092dc",
"width": 630,
"height": 640
},
{
"url": "https://i.scdn.co/image/f8b0234e7ab63757a22f1de462e8ae93bcc00f10",
"width": 295,
"height": 300
},
{
"url": "https://i.scdn.co/image/ec4926c34d065690c81540ac17222bd6b22693bc",
"width": 63,
"height": 64
}
],
"id": "4oVpqMqd0A1GPW3RkypqXw"
},
"1eL75IvSymqwOwfPHPSS7u": {
"name": "Moss Side Story",
"release_date": "1989",
"uri": "spotify:album:1eL75IvSymqwOwfPHPSS7u",
"artists": [
{
"name": "Barry Adamson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4xoV3kh3rwrWaPc17zyDyY"
},
"uri": "spotify:artist:4xoV3kh3rwrWaPc17zyDyY",
"href": "https://api.spotify.com/v1/artists/4xoV3kh3rwrWaPc17zyDyY",
"type": "artist",
"id": "4xoV3kh3rwrWaPc17zyDyY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/212a647bbe69bc66cf587bac08bf0b8803a6b661",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/84814bd01175aaf4d95b9bc136d52e547e358f15",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c66d86f98e406ff9450cf8328c7c86180c0ca97a",
"width": 64,
"height": 64
}
],
"id": "1eL75IvSymqwOwfPHPSS7u"
},
"4eMxaP2VDkK8yKP38Q8fkY": {
"name": "Your Arsenal (Definitive Master)",
"release_date": "2014-02-05",
"uri": "spotify:album:4eMxaP2VDkK8yKP38Q8fkY",
"artists": [
{
"name": "Morrissey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3iTsJGG39nMg9YiolUgLMQ"
},
"uri": "spotify:artist:3iTsJGG39nMg9YiolUgLMQ",
"href": "https://api.spotify.com/v1/artists/3iTsJGG39nMg9YiolUgLMQ",
"type": "artist",
"id": "3iTsJGG39nMg9YiolUgLMQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/16324a51a6f7f85120e9014643a602723f213136",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/52c776879fd97d0a22737196fcfeca33f8887142",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0556603a4680b7fdcb4f7919c4e32d74bf6102f7",
"width": 64,
"height": 64
}
],
"id": "4eMxaP2VDkK8yKP38Q8fkY"
},
"2zELL7BVMaQtK9Ly97nv24": {
"name": "Honky Tonk Heroes",
"release_date": "1973",
"uri": "spotify:album:2zELL7BVMaQtK9Ly97nv24",
"artists": [
{
"name": "Waylon Jennings",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7wCjDgV6nqBsHguQXPAaIM"
},
"uri": "spotify:artist:7wCjDgV6nqBsHguQXPAaIM",
"href": "https://api.spotify.com/v1/artists/7wCjDgV6nqBsHguQXPAaIM",
"type": "artist",
"id": "7wCjDgV6nqBsHguQXPAaIM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5f69d0ccbaee4f0e4c5aff030db1008b14ea3957",
"width": 636,
"height": 640
},
{
"url": "https://i.scdn.co/image/1396d18dadf8c2ec6fe8cd23f71571afcae22a15",
"width": 298,
"height": 300
},
{
"url": "https://i.scdn.co/image/80e89202e679a79221c40538bdcdae6c0e0d9947",
"width": 64,
"height": 64
}
],
"id": "2zELL7BVMaQtK9Ly97nv24"
},
"6b6FYoisWvkLKxF2JDjm1j": {
"name": "Tusk",
"release_date": "1979-10-12",
"uri": "spotify:album:6b6FYoisWvkLKxF2JDjm1j",
"artists": [
{
"name": "Fleetwood Mac",
"external_urls": {
"spotify": "https://open.spotify.com/artist/08GQAI4eElDnROBrJRGE0X"
},
"uri": "spotify:artist:08GQAI4eElDnROBrJRGE0X",
"href": "https://api.spotify.com/v1/artists/08GQAI4eElDnROBrJRGE0X",
"type": "artist",
"id": "08GQAI4eElDnROBrJRGE0X"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4370f1a099f4a55cd83a7655cd92ba8eb09b91f7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ea22f7a4f03af5b0503780e25de1859938b4ac97",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a0538b7f75481396eb87ebafb1062fb7e1951059",
"width": 64,
"height": 64
}
],
"id": "6b6FYoisWvkLKxF2JDjm1j"
},
"5plT68KZ21QfY9FI64tYEl": {
"name": "Destroyer (Resurrected)",
"release_date": "1976-03-15",
"uri": "spotify:album:5plT68KZ21QfY9FI64tYEl",
"artists": [
{
"name": "KISS",
"external_urls": {
"spotify": "https://open.spotify.com/artist/07XSN3sPlIlB2L2XNcTwJw"
},
"uri": "spotify:artist:07XSN3sPlIlB2L2XNcTwJw",
"href": "https://api.spotify.com/v1/artists/07XSN3sPlIlB2L2XNcTwJw",
"type": "artist",
"id": "07XSN3sPlIlB2L2XNcTwJw"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7fe944362bdd647c3f3092da0646d010e6dd5d79",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/faad2fe5a9e93383fe51a6025780b719013c9a8f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3574e3577d35ec1d64a5c6ad1879d57cd5c1750d",
"width": 64,
"height": 64
}
],
"id": "5plT68KZ21QfY9FI64tYEl"
},
"4Io5vWtmV1rFj4yirKb4y4": {
"name": "Rage Against The Machine - XX (20th Anniversary Special Edition)",
"release_date": "2012-11-27",
"uri": "spotify:album:4Io5vWtmV1rFj4yirKb4y4",
"artists": [
{
"name": "Rage Against The Machine",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2d0hyoQ5ynDBnkvAbJKORj"
},
"uri": "spotify:artist:2d0hyoQ5ynDBnkvAbJKORj",
"href": "https://api.spotify.com/v1/artists/2d0hyoQ5ynDBnkvAbJKORj",
"type": "artist",
"id": "2d0hyoQ5ynDBnkvAbJKORj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3326f9517fabd0951b4336c6d52cb8fe09cd6c9a",
"width": 576,
"height": 640
},
{
"url": "https://i.scdn.co/image/40ef7201f871c806d312f2e9375ec68b28b61522",
"width": 270,
"height": 300
},
{
"url": "https://i.scdn.co/image/c67246f3bc4681a3ba51a9fdc4f8a2311766cfdc",
"width": 58,
"height": 64
}
],
"id": "4Io5vWtmV1rFj4yirKb4y4"
},
"4JqaU9JdOp2yyOxv7qSaFM": {
"name": "Queen Of Denmark",
"release_date": "2010-04-19",
"uri": "spotify:album:4JqaU9JdOp2yyOxv7qSaFM",
"artists": [
{
"name": "John Grant",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3TScZ6zJkavDy0tqoGqiCf"
},
"uri": "spotify:artist:3TScZ6zJkavDy0tqoGqiCf",
"href": "https://api.spotify.com/v1/artists/3TScZ6zJkavDy0tqoGqiCf",
"type": "artist",
"id": "3TScZ6zJkavDy0tqoGqiCf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b4aefae20d0b5550eabf726d5d3f9a5d4321ea35",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/328f636f643dc6225551fa24dae76314cfd3cfe7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/de6514ad3b809a180f5f29b14f884021d5573c3b",
"width": 64,
"height": 64
}
],
"id": "4JqaU9JdOp2yyOxv7qSaFM"
},
"5BouX39qnrl5UxjB0Cs3lO": {
"name": "Teen Dream",
"release_date": "2010-01-25",
"uri": "spotify:album:5BouX39qnrl5UxjB0Cs3lO",
"artists": [
{
"name": "Beach House",
"external_urls": {
"spotify": "https://open.spotify.com/artist/56ZTgzPBDge0OvCGgMO3OY"
},
"uri": "spotify:artist:56ZTgzPBDge0OvCGgMO3OY",
"href": "https://api.spotify.com/v1/artists/56ZTgzPBDge0OvCGgMO3OY",
"type": "artist",
"id": "56ZTgzPBDge0OvCGgMO3OY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bf411cd27e94904949860b58bdfaff92084fb4b5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a82e48de2b22c74c579da42d0acab664609fe906",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6e53511549f551e65bd3520956aa92cfb165c7b9",
"width": 64,
"height": 64
}
],
"id": "5BouX39qnrl5UxjB0Cs3lO"
},
"1pFUGy3ABpLRRE3oNMPbDb": {
"name": "Little Earthquakes",
"release_date": "1992-01-13",
"uri": "spotify:album:1pFUGy3ABpLRRE3oNMPbDb",
"artists": [
{
"name": "Tori Amos",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1KsASRNugxU85T0u6zSg32"
},
"uri": "spotify:artist:1KsASRNugxU85T0u6zSg32",
"href": "https://api.spotify.com/v1/artists/1KsASRNugxU85T0u6zSg32",
"type": "artist",
"id": "1KsASRNugxU85T0u6zSg32"
}
],
"images": [
{
"url": "https://i.scdn.co/image/27141e7eef911d0085b3f9ba91bd1baa963a65f0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/74580fad405acb3d9e15ac3c0c520ea53ebd7703",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/dacfdc9e6d859bd85ef42b982705619e88e4c948",
"width": 64,
"height": 64
}
],
"id": "1pFUGy3ABpLRRE3oNMPbDb"
},
"5Yyx661Ksxl2pmRUuGLzw3": {
"name": "Music for the Masses",
"release_date": "1987-09-28",
"uri": "spotify:album:5Yyx661Ksxl2pmRUuGLzw3",
"artists": [
{
"name": "Depeche Mode",
"external_urls": {
"spotify": "https://open.spotify.com/artist/762310PdDnwsDxAQxzQkfX"
},
"uri": "spotify:artist:762310PdDnwsDxAQxzQkfX",
"href": "https://api.spotify.com/v1/artists/762310PdDnwsDxAQxzQkfX",
"type": "artist",
"id": "762310PdDnwsDxAQxzQkfX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4773e86861ac9e7e02230318ecd938fdf5bb537a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f42ab3d97afe2de01de64878b98ed9586bfae428",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0f6ad34734e9b756a468afb79c9125f84e03c193",
"width": 64,
"height": 64
}
],
"id": "5Yyx661Ksxl2pmRUuGLzw3"
},
"5uRdvUR7xCnHmUW8n64n9y": {
"name": "Homework",
"release_date": "1997-01-16",
"uri": "spotify:album:5uRdvUR7xCnHmUW8n64n9y",
"artists": [
{
"name": "Daft Punk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4tZwfgrHOc3mvqYlEYSvVi"
},
"uri": "spotify:artist:4tZwfgrHOc3mvqYlEYSvVi",
"href": "https://api.spotify.com/v1/artists/4tZwfgrHOc3mvqYlEYSvVi",
"type": "artist",
"id": "4tZwfgrHOc3mvqYlEYSvVi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c40036110e2c683d0a7e5239a6e1a7909ae6d241",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2d08bcbf8a088a15d67d0892795a7798d61b5f30",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5a753d786a79871ae2da7cd6078d94281bd16e91",
"width": 64,
"height": 64
}
],
"id": "5uRdvUR7xCnHmUW8n64n9y"
},
"5pCRW9AT4BgoMOS52pRoJq": {
"name": "Bayou Country (40th Anniversary Edition)",
"release_date": "1969",
"uri": "spotify:album:5pCRW9AT4BgoMOS52pRoJq",
"artists": [
{
"name": "Creedence Clearwater Revival",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3IYUhFvPQItj6xySrBmZkd"
},
"uri": "spotify:artist:3IYUhFvPQItj6xySrBmZkd",
"href": "https://api.spotify.com/v1/artists/3IYUhFvPQItj6xySrBmZkd",
"type": "artist",
"id": "3IYUhFvPQItj6xySrBmZkd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ea953711d7aee5d77ec89a3524eb1ca1913c4cbd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/378d421c5232404c22ba6296c688463f8f390d8b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7e5acb86a79b0ce70ebd866f1881e18be2704369",
"width": 64,
"height": 64
}
],
"id": "5pCRW9AT4BgoMOS52pRoJq"
},
"4aSIyoC7BdDebquu0WgcFK": {
"name": "The Sounds Of India",
"release_date": "1957",
"uri": "spotify:album:4aSIyoC7BdDebquu0WgcFK",
"artists": [
{
"name": "Ravi Shankar",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4uE9TgBW0AaPDHL1qYbtd0"
},
"uri": "spotify:artist:4uE9TgBW0AaPDHL1qYbtd0",
"href": "https://api.spotify.com/v1/artists/4uE9TgBW0AaPDHL1qYbtd0",
"type": "artist",
"id": "4uE9TgBW0AaPDHL1qYbtd0"
}
],
"images": [
{
"url": "https://i.scdn.co/image/11b531b2ef9e67bba281503162c0967820ed5b9c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2e31414efd8fb2a11c34118199eaae4f62a67722",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7bddd8d0b61dbb16e4910d6a2037e3764650878f",
"width": 64,
"height": 64
}
],
"id": "4aSIyoC7BdDebquu0WgcFK"
},
"7eLzF93T0FDx4hkuQ4juEj": {
"name": "Floodland (Remastered & Expanded; Deluxe Version)",
"release_date": "1987",
"uri": "spotify:album:7eLzF93T0FDx4hkuQ4juEj",
"artists": [
{
"name": "Sisters Of Mercy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4HxBVyHaUa60eCSsJWxwWR"
},
"uri": "spotify:artist:4HxBVyHaUa60eCSsJWxwWR",
"href": "https://api.spotify.com/v1/artists/4HxBVyHaUa60eCSsJWxwWR",
"type": "artist",
"id": "4HxBVyHaUa60eCSsJWxwWR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/29fa32c66d69700c500b6a3759ea4f784fb5139f",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/df067138ba1d3b11c88a1b92ddbff494651116c6",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/e4f6af535ec9404aaf88ee6f64b1d9cef3c2ff21",
"width": 64,
"height": 64
}
],
"id": "7eLzF93T0FDx4hkuQ4juEj"
},
"6t4LdKTNWIOr2PZIB8tiZF": {
"name": "Viva Hate [2011 - Remaster] (2011 Remastered Version)",
"release_date": "2012-03-30",
"uri": "spotify:album:6t4LdKTNWIOr2PZIB8tiZF",
"artists": [
{
"name": "Morrissey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3iTsJGG39nMg9YiolUgLMQ"
},
"uri": "spotify:artist:3iTsJGG39nMg9YiolUgLMQ",
"href": "https://api.spotify.com/v1/artists/3iTsJGG39nMg9YiolUgLMQ",
"type": "artist",
"id": "3iTsJGG39nMg9YiolUgLMQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/760140f717fbd16899b2a4633cd4fa52ad1c0b5e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fe4178932c25c0ae3265d97abec1fdb06a9c2bb9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/074d5080a636f486a9e8942c7340a4f626afa37c",
"width": 64,
"height": 64
}
],
"id": "6t4LdKTNWIOr2PZIB8tiZF"
},
"516WjuhfoWVrN3ihZN2iDX": {
"name": "RetroSpective: The Best Of Suzanne Vega",
"release_date": "2003-01-01",
"uri": "spotify:album:516WjuhfoWVrN3ihZN2iDX",
"artists": [
{
"name": "Suzanne Vega",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3X0tJzVYoWlfjLYI0Ridsw"
},
"uri": "spotify:artist:3X0tJzVYoWlfjLYI0Ridsw",
"href": "https://api.spotify.com/v1/artists/3X0tJzVYoWlfjLYI0Ridsw",
"type": "artist",
"id": "3X0tJzVYoWlfjLYI0Ridsw"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a41a239c7665018af1fb5d3b6ddca54b1ebe78dc",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/266b91897d23cb6ded8574018f2f0ca692af295f",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/00853a8669181f6097ae8185a74676fd25c68c78",
"width": 64,
"height": 64
}
],
"id": "516WjuhfoWVrN3ihZN2iDX"
},
"1ulDMEpgJC1L4W05dMyqHl": {
"name": "A Girl Called Dusty",
"release_date": "1964",
"uri": "spotify:album:1ulDMEpgJC1L4W05dMyqHl",
"artists": [
{
"name": "Dusty Springfield",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5zaXYwewAXedKNCff45U5l"
},
"uri": "spotify:artist:5zaXYwewAXedKNCff45U5l",
"href": "https://api.spotify.com/v1/artists/5zaXYwewAXedKNCff45U5l",
"type": "artist",
"id": "5zaXYwewAXedKNCff45U5l"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d23b46c3fad3b2df6b2c45fdd09aa0a8f09a51e3",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/7b0b9a773be7ba2f7cb256bd8e901890d058fc16",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/c47f48dcd7de642148b7a88afce1e1eb0db2dd54",
"width": 64,
"height": 63
}
],
"id": "1ulDMEpgJC1L4W05dMyqHl"
},
"0J13gY691Jb1LEgAnLtJGD": {
"name": "Can't Buy A Thrill",
"release_date": "1972",
"uri": "spotify:album:0J13gY691Jb1LEgAnLtJGD",
"artists": [
{
"name": "Steely Dan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6P7H3ai06vU1sGvdpBwDmE"
},
"uri": "spotify:artist:6P7H3ai06vU1sGvdpBwDmE",
"href": "https://api.spotify.com/v1/artists/6P7H3ai06vU1sGvdpBwDmE",
"type": "artist",
"id": "6P7H3ai06vU1sGvdpBwDmE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e368b28be0abbf0d38660fd9dfc04de63eb5fdb5",
"width": 640,
"height": 631
},
{
"url": "https://i.scdn.co/image/0e6808755fbe3520633e6bd7f9ccce98deba9740",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/d7b5e02a79bb7721e7bf48f7341c99f959cc856e",
"width": 64,
"height": 63
}
],
"id": "0J13gY691Jb1LEgAnLtJGD"
},
"5WwTUr1kf45gsJ1ZUGGwuL": {
"name": "Dig Me Out (Remastered)",
"release_date": "1997",
"uri": "spotify:album:5WwTUr1kf45gsJ1ZUGGwuL",
"artists": [
{
"name": "Sleater-Kinney",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4wLIbcoqmqI4WZHDiBxeCB"
},
"uri": "spotify:artist:4wLIbcoqmqI4WZHDiBxeCB",
"href": "https://api.spotify.com/v1/artists/4wLIbcoqmqI4WZHDiBxeCB",
"type": "artist",
"id": "4wLIbcoqmqI4WZHDiBxeCB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2efa1fa376255ec22508a0c08662e58bf52f51bd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0786b2d241dc45b7cac735007fdff8a8f096fbe0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/dc6786965446542941e42300c87c83066aab809a",
"width": 64,
"height": 64
}
],
"id": "5WwTUr1kf45gsJ1ZUGGwuL"
},
"1BHUIrORQwywRkl5cjapQz": {
"name": "Kenya",
"release_date": "2000-01-25",
"uri": "spotify:album:1BHUIrORQwywRkl5cjapQz",
"artists": [
{
"name": "Machito",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3mdrgtEX1xhiauu3Pn06LL"
},
"uri": "spotify:artist:3mdrgtEX1xhiauu3Pn06LL",
"href": "https://api.spotify.com/v1/artists/3mdrgtEX1xhiauu3Pn06LL",
"type": "artist",
"id": "3mdrgtEX1xhiauu3Pn06LL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f090383467cce3ef8f0f15068f6e789cbc22369d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/48d99b8044772b28293ac2b444512e4c8e3ffb14",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1e23b8c51d2ed96c38d5f15747353194f95b59cd",
"width": 64,
"height": 64
}
],
"id": "1BHUIrORQwywRkl5cjapQz"
},
"1DcmsgvmP94BH8XShg74N0": {
"name": "Francis Albert Sinatra & Antonio Carlos Jobim",
"release_date": "1967",
"uri": "spotify:album:1DcmsgvmP94BH8XShg74N0",
"artists": [
{
"name": "Frank Sinatra",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1Mxqyy3pSjf8kZZL4QVxS0"
},
"uri": "spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0",
"href": "https://api.spotify.com/v1/artists/1Mxqyy3pSjf8kZZL4QVxS0",
"type": "artist",
"id": "1Mxqyy3pSjf8kZZL4QVxS0"
},
{
"name": "Ant\u00f4nio Carlos Jobim",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3pO5VjZ4wOHCMBXOvbMISG"
},
"uri": "spotify:artist:3pO5VjZ4wOHCMBXOvbMISG",
"href": "https://api.spotify.com/v1/artists/3pO5VjZ4wOHCMBXOvbMISG",
"type": "artist",
"id": "3pO5VjZ4wOHCMBXOvbMISG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/188d33fcfe47bbd3070abe90e6274e3fd899e19e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1565f5b49a1ba5b79fcb1b717ed49dfbe445f606",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/489f566d9dec6495c5d787b3fa8940c7456714b7",
"width": 64,
"height": 64
}
],
"id": "1DcmsgvmP94BH8XShg74N0"
},
"5FRB5oQaHxlDNe6gMGuzu2": {
"name": "Dusty In Memphis (Remastered)",
"release_date": "1969",
"uri": "spotify:album:5FRB5oQaHxlDNe6gMGuzu2",
"artists": [
{
"name": "Dusty Springfield",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5zaXYwewAXedKNCff45U5l"
},
"uri": "spotify:artist:5zaXYwewAXedKNCff45U5l",
"href": "https://api.spotify.com/v1/artists/5zaXYwewAXedKNCff45U5l",
"type": "artist",
"id": "5zaXYwewAXedKNCff45U5l"
}
],
"images": [
{
"url": "https://i.scdn.co/image/42f6c1670928eadc4d09ad3a991dd9a188107913",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/bddb8d8ed0e1e6179c5636a586faf4878be2d281",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/35f938edd222b738a4ed561e4921a23b30b976d9",
"width": 64,
"height": 63
}
],
"id": "5FRB5oQaHxlDNe6gMGuzu2"
},
"2wkjA7zJrCFQcBJpD4tHA7": {
"name": "The Pearl Sessions",
"release_date": "2012-04-17",
"uri": "spotify:album:2wkjA7zJrCFQcBJpD4tHA7",
"artists": [
{
"name": "Janis Joplin",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4NgfOZCL9Ml67xzM0xzIvC"
},
"uri": "spotify:artist:4NgfOZCL9Ml67xzM0xzIvC",
"href": "https://api.spotify.com/v1/artists/4NgfOZCL9Ml67xzM0xzIvC",
"type": "artist",
"id": "4NgfOZCL9Ml67xzM0xzIvC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/520f9f26a4ed84acd8237f9f82dec059c57d7813",
"width": 640,
"height": 575
},
{
"url": "https://i.scdn.co/image/9a32ae41a737ea2612d97c9e9c5bd3539dd363fa",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/fb023542e6ec5bd999e7bf1db2f41aa37df02cff",
"width": 63,
"height": 57
}
],
"id": "2wkjA7zJrCFQcBJpD4tHA7"
},
"30nRhMqZKuMHDH6CRCCCPz": {
"name": "Snivilisation",
"release_date": "1994",
"uri": "spotify:album:30nRhMqZKuMHDH6CRCCCPz",
"artists": [
{
"name": "Orbital",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3csPCeXsj2wezyvkRFzvmV"
},
"uri": "spotify:artist:3csPCeXsj2wezyvkRFzvmV",
"href": "https://api.spotify.com/v1/artists/3csPCeXsj2wezyvkRFzvmV",
"type": "artist",
"id": "3csPCeXsj2wezyvkRFzvmV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/92ffff317365946c84c38a0f47903d3b893191ac",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c08ddeac604351e4df582e3d769211a369339622",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/94c3f2f6ceb47c667d05c050a135d46529d43947",
"width": 64,
"height": 64
}
],
"id": "30nRhMqZKuMHDH6CRCCCPz"
},
"4RMbnuwtOMbN3INQcaJwUr": {
"name": "Best Of The Band",
"release_date": "1976",
"uri": "spotify:album:4RMbnuwtOMbN3INQcaJwUr",
"artists": [
{
"name": "The Band",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4vpDg7Y7fU982Ds30zawDA"
},
"uri": "spotify:artist:4vpDg7Y7fU982Ds30zawDA",
"href": "https://api.spotify.com/v1/artists/4vpDg7Y7fU982Ds30zawDA",
"type": "artist",
"id": "4vpDg7Y7fU982Ds30zawDA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b8b604349f4beed80d5b923da34ead455be82774",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2dbf5a5e02da965923ab29e87af2a3b7af03806d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1537503f79de84471aaa487b43686d0caeee91dc",
"width": 64,
"height": 64
}
],
"id": "4RMbnuwtOMbN3INQcaJwUr"
},
"7a5U0GPoAvT3gvEY66FRuN": {
"name": "All That You Can't Leave Behind",
"release_date": "2000-01-01",
"uri": "spotify:album:7a5U0GPoAvT3gvEY66FRuN",
"artists": [
{
"name": "U2",
"external_urls": {
"spotify": "https://open.spotify.com/artist/51Blml2LZPmy7TTiAg47vQ"
},
"uri": "spotify:artist:51Blml2LZPmy7TTiAg47vQ",
"href": "https://api.spotify.com/v1/artists/51Blml2LZPmy7TTiAg47vQ",
"type": "artist",
"id": "51Blml2LZPmy7TTiAg47vQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/515919e9fd8a091bc103384e8a0460c0c30aad0d",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/0a680c32f39d7a9153cbcb816b9cfb579f1ab696",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/7b454a7b19af8c8f994d8065369dd31871aac917",
"width": 64,
"height": 63
}
],
"id": "7a5U0GPoAvT3gvEY66FRuN"
},
"4DVBJPJyizvHfJQt5pYaCa": {
"name": "Nothing's Shocking",
"release_date": "1988-08-23",
"uri": "spotify:album:4DVBJPJyizvHfJQt5pYaCa",
"artists": [
{
"name": "Jane's Addiction",
"external_urls": {
"spotify": "https://open.spotify.com/artist/02NfyD6AlLA12crYzw5YcR"
},
"uri": "spotify:artist:02NfyD6AlLA12crYzw5YcR",
"href": "https://api.spotify.com/v1/artists/02NfyD6AlLA12crYzw5YcR",
"type": "artist",
"id": "02NfyD6AlLA12crYzw5YcR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8823160af512086291eaa83a37a666f052dbc18b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/158b643557a379384a16279838b40ec1bd666efd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/173aaf56b47f54800453804fc2d2be4e116b4cd5",
"width": 64,
"height": 64
}
],
"id": "4DVBJPJyizvHfJQt5pYaCa"
},
"7KOZivQqRbfrKEsd5Hx9Ir": {
"name": "At San Quentin",
"release_date": "2006-11-14",
"uri": "spotify:album:7KOZivQqRbfrKEsd5Hx9Ir",
"artists": [
{
"name": "Johnny Cash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x"
},
"uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x",
"href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x",
"type": "artist",
"id": "6kACVPfCOnqzgfEF5ryl0x"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4a3f4be16e6d0d9db34b2088a1a16bdbed019b3a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f4409af5fb8fd35a407d4ab1b812244a9a2eeed9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ab88f75a1a23415ec7f1425b2c92f9fc3b655e5a",
"width": 64,
"height": 64
}
],
"id": "7KOZivQqRbfrKEsd5Hx9Ir"
},
"6wHjdKs7VVPVcqaHRzwqJt": {
"name": "The Pleasure Principle",
"release_date": "1979-09",
"uri": "spotify:album:6wHjdKs7VVPVcqaHRzwqJt",
"artists": [
{
"name": "Gary Numan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5KQMtyPE8DCQNUzoNqlEsE"
},
"uri": "spotify:artist:5KQMtyPE8DCQNUzoNqlEsE",
"href": "https://api.spotify.com/v1/artists/5KQMtyPE8DCQNUzoNqlEsE",
"type": "artist",
"id": "5KQMtyPE8DCQNUzoNqlEsE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b55d6fdb75cee62fc86b95eebdc92dd0fd2f1502",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cf834f7cfff2bc07faa80374e67fa983dfd66cad",
"width": 64,
"height": 64
}
],
"id": "6wHjdKs7VVPVcqaHRzwqJt"
},
"2wRH4pcI8TIQFCK1MeByWO": {
"name": "Rum Sodomy & The Lash [Expanded] (US Version)",
"release_date": "1985",
"uri": "spotify:album:2wRH4pcI8TIQFCK1MeByWO",
"artists": [
{
"name": "The Pogues",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2wzMOQwNT6ZvVB4amvhFAH"
},
"uri": "spotify:artist:2wzMOQwNT6ZvVB4amvhFAH",
"href": "https://api.spotify.com/v1/artists/2wzMOQwNT6ZvVB4amvhFAH",
"type": "artist",
"id": "2wzMOQwNT6ZvVB4amvhFAH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8228afcd59a56cd8ae9df2816435e76fbc24b76d",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/8dee3d7558dc0d3444648f8da9dd1186c4c3a07f",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/b0ea0fc6416fd3fa275a80a718229172ab59a5d8",
"width": 64,
"height": 64
}
],
"id": "2wRH4pcI8TIQFCK1MeByWO"
},
"6rrLvfVJh2GoIY36EphGSo": {
"name": "The Best Of The Specials",
"release_date": "2008-03-31",
"uri": "spotify:album:6rrLvfVJh2GoIY36EphGSo",
"artists": [
{
"name": "The Specials",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6xnvNmSzmeOE1bLKnYXKW3"
},
"uri": "spotify:artist:6xnvNmSzmeOE1bLKnYXKW3",
"href": "https://api.spotify.com/v1/artists/6xnvNmSzmeOE1bLKnYXKW3",
"type": "artist",
"id": "6xnvNmSzmeOE1bLKnYXKW3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/56a3607f238fa0a64a6399aff1a41c1b1250cfab",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/02da020754ae0557b17cc9ef03ac4e64bbf5e8c2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9f888f471ffec505b1d4728faf967bc17d266584",
"width": 64,
"height": 64
}
],
"id": "6rrLvfVJh2GoIY36EphGSo"
},
"2Aiv0ThDpFa7lqHphR6MN5": {
"name": "Songs Of Leonard Cohen",
"release_date": "1967-12-27",
"uri": "spotify:album:2Aiv0ThDpFa7lqHphR6MN5",
"artists": [
{
"name": "Leonard Cohen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5l8VQNuIg0turYE1VtM9zV"
},
"uri": "spotify:artist:5l8VQNuIg0turYE1VtM9zV",
"href": "https://api.spotify.com/v1/artists/5l8VQNuIg0turYE1VtM9zV",
"type": "artist",
"id": "5l8VQNuIg0turYE1VtM9zV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/da5406c4fb6603a6768d2aec067976a8108f258f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e902aba2fb201eb163d6152ecc288eafdd3dfe81",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1c76fe33e096b97a4e71c8350c07d5c7b235db6d",
"width": 64,
"height": 64
}
],
"id": "2Aiv0ThDpFa7lqHphR6MN5"
},
"7tFBY9TpRd91Z2mrcmwH4n": {
"name": "Bone Machine",
"release_date": "1992-09-08",
"uri": "spotify:album:7tFBY9TpRd91Z2mrcmwH4n",
"artists": [
{
"name": "Tom Waits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7x83XhcMbOTl1UdYsPTuZM"
},
"uri": "spotify:artist:7x83XhcMbOTl1UdYsPTuZM",
"href": "https://api.spotify.com/v1/artists/7x83XhcMbOTl1UdYsPTuZM",
"type": "artist",
"id": "7x83XhcMbOTl1UdYsPTuZM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fd0358bd4e8b9c33e7420f2305231e006ec82345",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f9ca7f930958c585bd051166eab5ee2eaf69ee06",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d54c35bab569c8147511b293f3af2dba6f0a0c28",
"width": 64,
"height": 64
}
],
"id": "7tFBY9TpRd91Z2mrcmwH4n"
},
"1vWnB0hYmluskQuzxwo25a": {
"name": "Music Has The Right To Children",
"release_date": "1998",
"uri": "spotify:album:1vWnB0hYmluskQuzxwo25a",
"artists": [
{
"name": "Boards of Canada",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2VAvhf61GgLYmC6C8anyX1"
},
"uri": "spotify:artist:2VAvhf61GgLYmC6C8anyX1",
"href": "https://api.spotify.com/v1/artists/2VAvhf61GgLYmC6C8anyX1",
"type": "artist",
"id": "2VAvhf61GgLYmC6C8anyX1"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e272406fb6591a431180da4d475215f4ad385cc4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e7663bc54fbb8334e097184c80eb033229c88106",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/81f3e4ed02000c80c3d56095495ff43993df0fb9",
"width": 64,
"height": 64
}
],
"id": "1vWnB0hYmluskQuzxwo25a"
},
"3v8BdkQNDP2f0kqzP5YYSU": {
"name": "Best Of Live At The Apollo: 50th Anniversary",
"release_date": "2013-01-01",
"uri": "spotify:album:3v8BdkQNDP2f0kqzP5YYSU",
"artists": [
{
"name": "James Brown",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7GaxyUddsPok8BuhxN6OUW"
},
"uri": "spotify:artist:7GaxyUddsPok8BuhxN6OUW",
"href": "https://api.spotify.com/v1/artists/7GaxyUddsPok8BuhxN6OUW",
"type": "artist",
"id": "7GaxyUddsPok8BuhxN6OUW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/db78ff0e57220f88d6e98c5c97cca03881670671",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/832a12544491886552c274be7480e3781cdbd4e4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8597139a32713a8deed30b4214ae60d34e449361",
"width": 64,
"height": 64
}
],
"id": "3v8BdkQNDP2f0kqzP5YYSU"
},
"2Xvjx615PC94mB2z5MqdKF": {
"name": "Scott 2",
"release_date": "1968",
"uri": "spotify:album:2Xvjx615PC94mB2z5MqdKF",
"artists": [
{
"name": "Scott Walker",
"external_urls": {
"spotify": "https://open.spotify.com/artist/04tBaW21jyUfeP5iqiKBVq"
},
"uri": "spotify:artist:04tBaW21jyUfeP5iqiKBVq",
"href": "https://api.spotify.com/v1/artists/04tBaW21jyUfeP5iqiKBVq",
"type": "artist",
"id": "04tBaW21jyUfeP5iqiKBVq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0915e4cf964dbbb1e5ccab703a53f24dd6b3dfc0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/21d04abf3d76604f794bab54f19436280eab523a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9ff245a9f2ebe1e0a95a45022f906ea4031f244d",
"width": 64,
"height": 64
}
],
"id": "2Xvjx615PC94mB2z5MqdKF"
},
"4SMNUQCyTvlO4vFEdXXG45": {
"name": "Disraeli Gears (Remastered)",
"release_date": "1967-11-02",
"uri": "spotify:album:4SMNUQCyTvlO4vFEdXXG45",
"artists": [
{
"name": "Cream",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74oJ4qxwOZvX6oSsu1DGnw"
},
"uri": "spotify:artist:74oJ4qxwOZvX6oSsu1DGnw",
"href": "https://api.spotify.com/v1/artists/74oJ4qxwOZvX6oSsu1DGnw",
"type": "artist",
"id": "74oJ4qxwOZvX6oSsu1DGnw"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d5fe07dc048d5c0d3ad6aee0e9cbf72f67725dad",
"width": 635,
"height": 640
},
{
"url": "https://i.scdn.co/image/0b683546a4aec9a4716ad7844512ad6672a4846d",
"width": 298,
"height": 300
},
{
"url": "https://i.scdn.co/image/1d6213ef34307b7cdc83e69ce15008f7a470d1ef",
"width": 64,
"height": 64
}
],
"id": "4SMNUQCyTvlO4vFEdXXG45"
},
"4SlY4oyiPg6At7vyouZ7ep": {
"name": "Billion Dollar Babies (Deluxe Reissue)",
"release_date": "1973",
"uri": "spotify:album:4SlY4oyiPg6At7vyouZ7ep",
"artists": [
{
"name": "Alice Cooper",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3EhbVgyfGd7HkpsagwL9GS"
},
"uri": "spotify:artist:3EhbVgyfGd7HkpsagwL9GS",
"href": "https://api.spotify.com/v1/artists/3EhbVgyfGd7HkpsagwL9GS",
"type": "artist",
"id": "3EhbVgyfGd7HkpsagwL9GS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8590a2eeaa1632cc580edf6ba592409b6a3bb888",
"width": 640,
"height": 573
},
{
"url": "https://i.scdn.co/image/96e0db388c6c728c04c84ee7ba6871c5d11fa45d",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/61ae89319aca0cf769d10c66c425f5c7591eb0a7",
"width": 64,
"height": 57
}
],
"id": "4SlY4oyiPg6At7vyouZ7ep"
},
"2Upqk0mMh9OMIVSj9F8Xzw": {
"name": "Buena Vista Social Club",
"release_date": "1997-06-23",
"uri": "spotify:album:2Upqk0mMh9OMIVSj9F8Xzw",
"artists": [
{
"name": "Buena Vista Social Club",
"external_urls": {
"spotify": "https://open.spotify.com/artist/11kBu957KTYoAltZHDm8gW"
},
"uri": "spotify:artist:11kBu957KTYoAltZHDm8gW",
"href": "https://api.spotify.com/v1/artists/11kBu957KTYoAltZHDm8gW",
"type": "artist",
"id": "11kBu957KTYoAltZHDm8gW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5bc586f5986aac22631f32ef3c1ff9d3d1505cce",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/587097fed39e95806b7ab08d3154327d37908356",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5a4c5673c231660c6f47f71c989b794d94386fad",
"width": 64,
"height": 64
}
],
"id": "2Upqk0mMh9OMIVSj9F8Xzw"
},
"6vUWpE8qciYHOhf7mgaGny": {
"name": "Crosby, Stills & Nash [with Bonus Tracks]",
"release_date": "1969-05-29",
"uri": "spotify:album:6vUWpE8qciYHOhf7mgaGny",
"artists": [
{
"name": "Crosby, Stills & Nash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2pdvghEHZJtgSXZ7cvNLou"
},
"uri": "spotify:artist:2pdvghEHZJtgSXZ7cvNLou",
"href": "https://api.spotify.com/v1/artists/2pdvghEHZJtgSXZ7cvNLou",
"type": "artist",
"id": "2pdvghEHZJtgSXZ7cvNLou"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c5d1007280049c25ea541825666a5f8c23d6a596",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c79971df3f3e288729e6561adbc967067c76418c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8f522294f16c7648838b48aa811fd0f4a127869e",
"width": 64,
"height": 64
}
],
"id": "6vUWpE8qciYHOhf7mgaGny"
},
"4a1QKRL1X9PlAX9wiiqmAm": {
"name": "Future Days (Remastered)",
"release_date": "1973",
"uri": "spotify:album:4a1QKRL1X9PlAX9wiiqmAm",
"artists": [
{
"name": "Can",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4l8xPGtl6DHR2uvunqrl8r"
},
"uri": "spotify:artist:4l8xPGtl6DHR2uvunqrl8r",
"href": "https://api.spotify.com/v1/artists/4l8xPGtl6DHR2uvunqrl8r",
"type": "artist",
"id": "4l8xPGtl6DHR2uvunqrl8r"
}
],
"images": [
{
"url": "https://i.scdn.co/image/883a546ada50538c591079e0167773cbad0535ee",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8a7db54c8c73c894aa4c7526764c27c970a4d428",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c954295e211f5ae422f542a8a4f3b479989aef2a",
"width": 64,
"height": 64
}
],
"id": "4a1QKRL1X9PlAX9wiiqmAm"
},
"7hhojBmp7o620ZSq1eP9a8": {
"name": "Seventeen Seconds (Deluxe Edition)",
"release_date": "1980-04-18",
"uri": "spotify:album:7hhojBmp7o620ZSq1eP9a8",
"artists": [
{
"name": "The Cure",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7bu3H8JO7d0UbMoVzbo70s"
},
"uri": "spotify:artist:7bu3H8JO7d0UbMoVzbo70s",
"href": "https://api.spotify.com/v1/artists/7bu3H8JO7d0UbMoVzbo70s",
"type": "artist",
"id": "7bu3H8JO7d0UbMoVzbo70s"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3955f24f33a28d63ac5865449328009b0bcf467d",
"width": 640,
"height": 574
},
{
"url": "https://i.scdn.co/image/a4af3f6531a17d8b739d06da55c15278ccb8ed95",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/8e4aa68dada4eae98fe099006c07c58f0d37432e",
"width": 64,
"height": 57
}
],
"id": "7hhojBmp7o620ZSq1eP9a8"
},
"5gWF47eGSbv4BOfxoFcQtd": {
"name": "Brilliant Corners",
"release_date": "1957",
"uri": "spotify:album:5gWF47eGSbv4BOfxoFcQtd",
"artists": [
{
"name": "Thelonious Monk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4PDpGtF16XpqvXxsrFwQnN"
},
"uri": "spotify:artist:4PDpGtF16XpqvXxsrFwQnN",
"href": "https://api.spotify.com/v1/artists/4PDpGtF16XpqvXxsrFwQnN",
"type": "artist",
"id": "4PDpGtF16XpqvXxsrFwQnN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/35a14baa40692385fb5b652b38aafcf44bac6f11",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/66be8b568a63bd39946e1ffc82fc9197c60113ca",
"width": 64,
"height": 64
}
],
"id": "5gWF47eGSbv4BOfxoFcQtd"
},
"7rv16IARB1Vl5oJWy6cSQd": {
"name": "Arc Of A Diver",
"release_date": "1980-01-01",
"uri": "spotify:album:7rv16IARB1Vl5oJWy6cSQd",
"artists": [
{
"name": "Steve Winwood",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5gxynDEKwNDgxGJmJjZyte"
},
"uri": "spotify:artist:5gxynDEKwNDgxGJmJjZyte",
"href": "https://api.spotify.com/v1/artists/5gxynDEKwNDgxGJmJjZyte",
"type": "artist",
"id": "5gxynDEKwNDgxGJmJjZyte"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5a1e41571d18257859805578e3da4a714bb1b79a",
"width": 638,
"height": 640
},
{
"url": "https://i.scdn.co/image/0a93f70c24b22f4fe050d2ccd093a158e1b95472",
"width": 299,
"height": 300
},
{
"url": "https://i.scdn.co/image/69ff4c516d18be151582265e0e22d9b9e0932118",
"width": 64,
"height": 64
}
],
"id": "7rv16IARB1Vl5oJWy6cSQd"
},
"1mPYMKJpTeOfXHYk2KZxa6": {
"name": "Live At Leeds (Deluxe Edition)",
"release_date": "1970-05-16",
"uri": "spotify:album:1mPYMKJpTeOfXHYk2KZxa6",
"artists": [
{
"name": "The Who",
"external_urls": {
"spotify": "https://open.spotify.com/artist/67ea9eGLXYMsO2eYQRui3w"
},
"uri": "spotify:artist:67ea9eGLXYMsO2eYQRui3w",
"href": "https://api.spotify.com/v1/artists/67ea9eGLXYMsO2eYQRui3w",
"type": "artist",
"id": "67ea9eGLXYMsO2eYQRui3w"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c19ab7a21ddf9a000024cf6637adeacf140b831b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/93214763bd0ba667a548f8c282baf16d049b5c1b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fee64df06c2d76561063e813015d1b169a78224e",
"width": 64,
"height": 64
}
],
"id": "1mPYMKJpTeOfXHYk2KZxa6"
},
"1TSZDcvlPtAnekTaItI3qO": {
"name": "A Night At The Opera (2011 Remaster)",
"release_date": "1975-11-21",
"uri": "spotify:album:1TSZDcvlPtAnekTaItI3qO",
"artists": [
{
"name": "Queen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d"
},
"uri": "spotify:artist:1dfeR4HaWDbWqFHLkxsg1d",
"href": "https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d",
"type": "artist",
"id": "1dfeR4HaWDbWqFHLkxsg1d"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b4cd2f68bcc3c6017d0e347b3c7f84bc24ea8dad",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7dc09be2030c957d4c4e0a00e2880aeefd42093b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/05e237f63c31eb4941753e5fb171e31cfca6a877",
"width": 64,
"height": 64
}
],
"id": "1TSZDcvlPtAnekTaItI3qO"
},
"2k5YAxjmAD3DmYtmlrY64p": {
"name": "Maxwell's Urban Hang Suite",
"release_date": "1996-02-22",
"uri": "spotify:album:2k5YAxjmAD3DmYtmlrY64p",
"artists": [
{
"name": "Maxwell",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2AOt5htsbtyaHd5Eq3kl3j"
},
"uri": "spotify:artist:2AOt5htsbtyaHd5Eq3kl3j",
"href": "https://api.spotify.com/v1/artists/2AOt5htsbtyaHd5Eq3kl3j",
"type": "artist",
"id": "2AOt5htsbtyaHd5Eq3kl3j"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f654bea617079cd7e68be4544cbb557bebb93919",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/18cc4427e0313717bd14bbe2067d90e1afd6f7cf",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a8427c22baee9bdc4d666d266cbe2dcee49f1aae",
"width": 64,
"height": 64
}
],
"id": "2k5YAxjmAD3DmYtmlrY64p"
},
"1niTZlsM14tECBG5PDAdZc": {
"name": "Fisherman's Blues",
"release_date": "1988-07-01",
"uri": "spotify:album:1niTZlsM14tECBG5PDAdZc",
"artists": [
{
"name": "The Waterboys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5TnuP42pw475UrjjeabtwZ"
},
"uri": "spotify:artist:5TnuP42pw475UrjjeabtwZ",
"href": "https://api.spotify.com/v1/artists/5TnuP42pw475UrjjeabtwZ",
"type": "artist",
"id": "5TnuP42pw475UrjjeabtwZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ad272fb53cbb8ab4cc60f495ccd46450b64aff0e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/016f5d649148d69074ff755b2ea17d51cb3abd22",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d793f921bd204c4edd2d208eb9d79537475f25af",
"width": 64,
"height": 64
}
],
"id": "1niTZlsM14tECBG5PDAdZc"
},
"5lKYNLYykoFAVRAeV5EqPE": {
"name": "Vauxhall And I (20th Anniversary Definitive Master)",
"release_date": "2014-06-02",
"uri": "spotify:album:5lKYNLYykoFAVRAeV5EqPE",
"artists": [
{
"name": "Morrissey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3iTsJGG39nMg9YiolUgLMQ"
},
"uri": "spotify:artist:3iTsJGG39nMg9YiolUgLMQ",
"href": "https://api.spotify.com/v1/artists/3iTsJGG39nMg9YiolUgLMQ",
"type": "artist",
"id": "3iTsJGG39nMg9YiolUgLMQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/79d46a5cd9fcc5c886bfddcfa90e98f0c2df0d4f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3780fb960338faea7d8ae97bc8f54b27802dd359",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bf3d02e5346cd056d52c1b942274145bf56ce7c0",
"width": 64,
"height": 64
}
],
"id": "5lKYNLYykoFAVRAeV5EqPE"
},
"7pr4eZjcBv6WQ1eeACmo8u": {
"name": "Abattoir Blues / The Lyre of Orpheus",
"release_date": "2004-10-12",
"uri": "spotify:album:7pr4eZjcBv6WQ1eeACmo8u",
"artists": [
{
"name": "Nick Cave & The Bad Seeds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4UXJsSlnKd7ltsrHebV79Q"
},
"uri": "spotify:artist:4UXJsSlnKd7ltsrHebV79Q",
"href": "https://api.spotify.com/v1/artists/4UXJsSlnKd7ltsrHebV79Q",
"type": "artist",
"id": "4UXJsSlnKd7ltsrHebV79Q"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cba285a1e308247122f9b96c8fd1b11923cd53d2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4b2abdb9116cbb3e1e430a3a010a964fc7c54682",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9b55615012e2ec00ccdbfa5bd194c7e79488d915",
"width": 64,
"height": 64
}
],
"id": "7pr4eZjcBv6WQ1eeACmo8u"
},
"4DEZVbAxlZPRXWCHUV5wF3": {
"name": "Fever To Tell",
"release_date": "2003-04-28",
"uri": "spotify:album:4DEZVbAxlZPRXWCHUV5wF3",
"artists": [
{
"name": "Yeah Yeah Yeahs",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3TNt4aUIxgfy9aoaft5Jj2"
},
"uri": "spotify:artist:3TNt4aUIxgfy9aoaft5Jj2",
"href": "https://api.spotify.com/v1/artists/3TNt4aUIxgfy9aoaft5Jj2",
"type": "artist",
"id": "3TNt4aUIxgfy9aoaft5Jj2"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b288e03ec8c7739000756bbeea48b732dd49825",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/d6c65eae8f038f0e85323a7c9f686283c72b2727",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/32d66005dadb1c5c2c8fb109ac39a0178a7cc28a",
"width": 64,
"height": 63
}
],
"id": "4DEZVbAxlZPRXWCHUV5wF3"
},
"5tuUAXD8S0QVhPW7M2aQb0": {
"name": "New Boots And Panties (Deluxe Edition)",
"release_date": "1977",
"uri": "spotify:album:5tuUAXD8S0QVhPW7M2aQb0",
"artists": [
{
"name": "Ian Dury",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5PFSmueeFLrjYXqn3agenn"
},
"uri": "spotify:artist:5PFSmueeFLrjYXqn3agenn",
"href": "https://api.spotify.com/v1/artists/5PFSmueeFLrjYXqn3agenn",
"type": "artist",
"id": "5PFSmueeFLrjYXqn3agenn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fda324aab793136bc797d7b928b1254c4d89777b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/330af5ca5acb12aecde33a2f1fb17d561f2ac444",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4677024a7a8b50f9fb95d18fac6637cb8105e261",
"width": 64,
"height": 64
}
],
"id": "5tuUAXD8S0QVhPW7M2aQb0"
},
"6LBiuhK7PZKjVXyMfPxPoh": {
"name": "My Beautiful Dark Twisted Fantasy",
"release_date": "2010-01-01",
"uri": "spotify:album:6LBiuhK7PZKjVXyMfPxPoh",
"artists": [
{
"name": "Kanye West",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5K4W6rqBFWDnAN6FQUkS6x"
},
"uri": "spotify:artist:5K4W6rqBFWDnAN6FQUkS6x",
"href": "https://api.spotify.com/v1/artists/5K4W6rqBFWDnAN6FQUkS6x",
"type": "artist",
"id": "5K4W6rqBFWDnAN6FQUkS6x"
}
],
"images": [
{
"url": "https://i.scdn.co/image/205b6692b6b710a322919c7ca9cece2997ac1869",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2225ea2c7fdb286dfc69ffbc1a67a1b92a9ad3e4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/27475aefd86ad8eaf6ff52b524ce049fbf44c2a8",
"width": 64,
"height": 64
}
],
"id": "6LBiuhK7PZKjVXyMfPxPoh"
},
"3QVPMlUATe3J9N7JKXNP25": {
"name": "Apocalypse 91\u2026 The Enemy Strikes Black",
"release_date": "1991-10-01",
"uri": "spotify:album:3QVPMlUATe3J9N7JKXNP25",
"artists": [
{
"name": "Public Enemy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6Mo9PoU6svvhgEum7wh2Nd"
},
"uri": "spotify:artist:6Mo9PoU6svvhgEum7wh2Nd",
"href": "https://api.spotify.com/v1/artists/6Mo9PoU6svvhgEum7wh2Nd",
"type": "artist",
"id": "6Mo9PoU6svvhgEum7wh2Nd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b3051ab3a68d54704511f7e9b55df0b6012beef1",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/15db6c35c48bab5a80e51bb8a18373b248845d2d",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/f78b4052716b4f5fd52fa941c324eab1f15684ef",
"width": 64,
"height": 63
}
],
"id": "3QVPMlUATe3J9N7JKXNP25"
},
"0qJ30kPyjNkKjtV5h0JpHm": {
"name": "Pornography",
"release_date": "1982-05-03",
"uri": "spotify:album:0qJ30kPyjNkKjtV5h0JpHm",
"artists": [
{
"name": "The Cure",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7bu3H8JO7d0UbMoVzbo70s"
},
"uri": "spotify:artist:7bu3H8JO7d0UbMoVzbo70s",
"href": "https://api.spotify.com/v1/artists/7bu3H8JO7d0UbMoVzbo70s",
"type": "artist",
"id": "7bu3H8JO7d0UbMoVzbo70s"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e826367e18ae48989d1fefd902f1eb3526c67e7b",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/5199df98157eb762ed720f2f76d7e7f250111b5f",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/25989b12554aba6461adc8d0c06bc9033fa4f946",
"width": 64,
"height": 63
}
],
"id": "0qJ30kPyjNkKjtV5h0JpHm"
},
"2s7M24j7qUjU24bA9yOum7": {
"name": "The Rise & Fall",
"release_date": "2010-06-28",
"uri": "spotify:album:2s7M24j7qUjU24bA9yOum7",
"artists": [
{
"name": "Madness",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4AYkFtEBnNnGuoo8HaHErd"
},
"uri": "spotify:artist:4AYkFtEBnNnGuoo8HaHErd",
"href": "https://api.spotify.com/v1/artists/4AYkFtEBnNnGuoo8HaHErd",
"type": "artist",
"id": "4AYkFtEBnNnGuoo8HaHErd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5c35c060f22ef063db8040e63a67c56bfb6cf84b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/28f371ea57a244daecc2a6c42a98ad0d34101a5d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1fcc0a4633585332e1fffe359e5e0bb8ad826d2f",
"width": 64,
"height": 64
}
],
"id": "2s7M24j7qUjU24bA9yOum7"
},
"4v9ZAufvuQKvTLcy21y6BM": {
"name": "If I Could Only Remember My Name",
"release_date": "1971-02-22",
"uri": "spotify:album:4v9ZAufvuQKvTLcy21y6BM",
"artists": [
{
"name": "David Crosby",
"external_urls": {
"spotify": "https://open.spotify.com/artist/59zdhVoWxSoHMc74n098Re"
},
"uri": "spotify:artist:59zdhVoWxSoHMc74n098Re",
"href": "https://api.spotify.com/v1/artists/59zdhVoWxSoHMc74n098Re",
"type": "artist",
"id": "59zdhVoWxSoHMc74n098Re"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6f691f39d4662ad9eae9785cc0c79940fe4a7799",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/0f6afa907ed7cb853c9fe07f3fca068a1477e7d8",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/de26d58fb594e61246ca9a6b1131b8254bc89c08",
"width": 64,
"height": 64
}
],
"id": "4v9ZAufvuQKvTLcy21y6BM"
},
"2WPS1YnbXiaX1Ekr1HNICt": {
"name": "The Essential Cypress Hill",
"release_date": "2014-10-10",
"uri": "spotify:album:2WPS1YnbXiaX1Ekr1HNICt",
"artists": [
{
"name": "Cypress Hill",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4P0dddbxPil35MNN9G2MEX"
},
"uri": "spotify:artist:4P0dddbxPil35MNN9G2MEX",
"href": "https://api.spotify.com/v1/artists/4P0dddbxPil35MNN9G2MEX",
"type": "artist",
"id": "4P0dddbxPil35MNN9G2MEX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5d27474c1c0e596cd688c420234f49ffa9ead107",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/2c4e71fd581f19eacbd5c2a0e2a2a239920fca79",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/0aa918d9c5cfd6b0c65ee2d1882dbb099718b8a1",
"width": 64,
"height": 64
}
],
"id": "2WPS1YnbXiaX1Ekr1HNICt"
},
"1emkiMRnLWtWfmCcJapjR1": {
"name": "Vespertine",
"release_date": "2001-08-27",
"uri": "spotify:album:1emkiMRnLWtWfmCcJapjR1",
"artists": [
{
"name": "Bj\u00f6rk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7w29UYBi0qsHi5RTcv3lmA"
},
"uri": "spotify:artist:7w29UYBi0qsHi5RTcv3lmA",
"href": "https://api.spotify.com/v1/artists/7w29UYBi0qsHi5RTcv3lmA",
"type": "artist",
"id": "7w29UYBi0qsHi5RTcv3lmA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b7033695fc752b0367dcc054ef54eec7f799456d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8f1de6f3a48227cbfda71e049ddea2bbe8fe5aec",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cc7ca59407234d6b4ae3441df4e129f4523d8342",
"width": 64,
"height": 64
}
],
"id": "1emkiMRnLWtWfmCcJapjR1"
},
"7mhk75WqSVNIvxZumfCdvu": {
"name": "In Utero - 20th Anniversary - Deluxe Edition",
"release_date": "1993-09-21",
"uri": "spotify:album:7mhk75WqSVNIvxZumfCdvu",
"artists": [
{
"name": "Nirvana",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6olE6TJLqED3rqDCT0FyPh"
},
"uri": "spotify:artist:6olE6TJLqED3rqDCT0FyPh",
"href": "https://api.spotify.com/v1/artists/6olE6TJLqED3rqDCT0FyPh",
"type": "artist",
"id": "6olE6TJLqED3rqDCT0FyPh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b45585a5798fd96457e1680a7a71df192a0eea2e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fd42f1b5f8b7ebc06a35d28cb64634fe4789fe2f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/73dc36ae229c19eae5749ed62bd53a275027b987",
"width": 64,
"height": 64
}
],
"id": "7mhk75WqSVNIvxZumfCdvu"
},
"3AFWrzAxdy9cX4fgc7TSBF": {
"name": "Like Water For Chocolate",
"release_date": "2000-03-28",
"uri": "spotify:album:3AFWrzAxdy9cX4fgc7TSBF",
"artists": [
{
"name": "Common",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2GHclqNVjqGuiE5mA7BEoc"
},
"uri": "spotify:artist:2GHclqNVjqGuiE5mA7BEoc",
"href": "https://api.spotify.com/v1/artists/2GHclqNVjqGuiE5mA7BEoc",
"type": "artist",
"id": "2GHclqNVjqGuiE5mA7BEoc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b9cb22bd8bf6abfb27e03028376ea49457c98845",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/e4b3d7426eecea228f238b4d197c38d0c28e81f8",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/1359637e5dce8a64d5278c6530c1c488b4ed7a2c",
"width": 64,
"height": 63
}
],
"id": "3AFWrzAxdy9cX4fgc7TSBF"
},
"7lEOKZaOpqP70UYqdLPejG": {
"name": "Lady Soul [w/bonus selections]",
"release_date": "1968",
"uri": "spotify:album:7lEOKZaOpqP70UYqdLPejG",
"artists": [
{
"name": "Aretha Franklin",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7nwUJBm0HE4ZxD3f5cy5ok"
},
"uri": "spotify:artist:7nwUJBm0HE4ZxD3f5cy5ok",
"href": "https://api.spotify.com/v1/artists/7nwUJBm0HE4ZxD3f5cy5ok",
"type": "artist",
"id": "7nwUJBm0HE4ZxD3f5cy5ok"
}
],
"images": [
{
"url": "https://i.scdn.co/image/35622ad48bd90dd79567bdb8211e5c635602b621",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/742fcdea16c23b2335b2ea655250831dfff22b84",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b768735d20261ee04a95f3de66d6a28266861abd",
"width": 64,
"height": 64
}
],
"id": "7lEOKZaOpqP70UYqdLPejG"
},
"4DJC1f7Fb0yX86qlw9aqsF": {
"name": "Eternally Yours",
"release_date": "2009-07-03",
"uri": "spotify:album:4DJC1f7Fb0yX86qlw9aqsF",
"artists": [
{
"name": "The Saints",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6OWPd5ByKaNSFAZ3TCe5AO"
},
"uri": "spotify:artist:6OWPd5ByKaNSFAZ3TCe5AO",
"href": "https://api.spotify.com/v1/artists/6OWPd5ByKaNSFAZ3TCe5AO",
"type": "artist",
"id": "6OWPd5ByKaNSFAZ3TCe5AO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/64a9187e0e0e9f13067eb03c3a87443c6847ed67",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/868825af1ebf6ca74ef0626e43dd2b33f2f20a08",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6adf4e009be65f19738df0fe22e203b6a37c7296",
"width": 64,
"height": 64
}
],
"id": "4DJC1f7Fb0yX86qlw9aqsF"
},
"4h1e47X26VQHXCjNZZ5P3v": {
"name": "Every Picture Tells A Story",
"release_date": "1971-01-01",
"uri": "spotify:album:4h1e47X26VQHXCjNZZ5P3v",
"artists": [
{
"name": "Rod Stewart",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2y8Jo9CKhJvtfeKOsYzRdT"
},
"uri": "spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT",
"href": "https://api.spotify.com/v1/artists/2y8Jo9CKhJvtfeKOsYzRdT",
"type": "artist",
"id": "2y8Jo9CKhJvtfeKOsYzRdT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/909b3bc8f74f49f5a4445451b7a2b6942205fc43",
"width": 631,
"height": 640
},
{
"url": "https://i.scdn.co/image/eb6b43b60800c75b3b54a2d97c158ca629fb73c6",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/1ce8b889f712387ef1ef2e1b10156d423f37c93b",
"width": 63,
"height": 64
}
],
"id": "4h1e47X26VQHXCjNZZ5P3v"
},
"202dPyTbmkn9I8PzGHyMil": {
"name": "Purgatory / Paradise",
"release_date": "2013-11-11",
"uri": "spotify:album:202dPyTbmkn9I8PzGHyMil",
"artists": [
{
"name": "Throwing Muses",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5xU5wRTlZHVRoo2OxPvqA4"
},
"uri": "spotify:artist:5xU5wRTlZHVRoo2OxPvqA4",
"href": "https://api.spotify.com/v1/artists/5xU5wRTlZHVRoo2OxPvqA4",
"type": "artist",
"id": "5xU5wRTlZHVRoo2OxPvqA4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0c9e92b7fc9ad2de85574f0babecafd570461e22",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/de2bc34e6b51df887cf71a623652449a0f4ca07b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/09659091fca1c822333e85ad207ddbbe21f88cfb",
"width": 64,
"height": 64
}
],
"id": "202dPyTbmkn9I8PzGHyMil"
},
"5bRDrsAfi4j65Zbf3LQE6E": {
"name": "Immigr\u00e9s",
"release_date": "1988",
"uri": "spotify:album:5bRDrsAfi4j65Zbf3LQE6E",
"artists": [
{
"name": "Youssou N'Dour",
"external_urls": {
"spotify": "https://open.spotify.com/artist/77zlytAFjPFjUKda8TNIDY"
},
"uri": "spotify:artist:77zlytAFjPFjUKda8TNIDY",
"href": "https://api.spotify.com/v1/artists/77zlytAFjPFjUKda8TNIDY",
"type": "artist",
"id": "77zlytAFjPFjUKda8TNIDY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2554af73c81e7a271223fa750f3a0e199b5f507f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7c7d4df9995443d2d171af25e6936f1a1fede279",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4400b7164364288487ddccc38a902b364a4bf3dd",
"width": 64,
"height": 64
}
],
"id": "5bRDrsAfi4j65Zbf3LQE6E"
},
"03M3VID0s2wANlxJIJBWKb": {
"name": "The Atomic Mr Basie",
"release_date": "1958",
"uri": "spotify:album:03M3VID0s2wANlxJIJBWKb",
"artists": [
{
"name": "Count Basie & His Orchestra",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0aXxUISeYgP4DEtdWJw4NV"
},
"uri": "spotify:artist:0aXxUISeYgP4DEtdWJw4NV",
"href": "https://api.spotify.com/v1/artists/0aXxUISeYgP4DEtdWJw4NV",
"type": "artist",
"id": "0aXxUISeYgP4DEtdWJw4NV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/11b8f6cba56c492931d3993fb8a31008641ac235",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/de46cfa841214303fa059b2ef540b75d4e97d014",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5666701bfd410f93117eda5bf38e0ad5b467b0e2",
"width": 64,
"height": 64
}
],
"id": "03M3VID0s2wANlxJIJBWKb"
},
"5RR55mlo6E08bhcEDRjXO2": {
"name": "S.F. Sorrow",
"release_date": "1968-01-01",
"uri": "spotify:album:5RR55mlo6E08bhcEDRjXO2",
"artists": [
{
"name": "The Pretty Things",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5U16QlMnlSAhkQxBZpLyLO"
},
"uri": "spotify:artist:5U16QlMnlSAhkQxBZpLyLO",
"href": "https://api.spotify.com/v1/artists/5U16QlMnlSAhkQxBZpLyLO",
"type": "artist",
"id": "5U16QlMnlSAhkQxBZpLyLO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b2784b9e46f628f220af8a74e984bde18e0602df",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3cb3eb47372830995f0a1a850b9eb54ce7746724",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b77d298888ceb913a73832fec64c1d5c1decc685",
"width": 64,
"height": 64
}
],
"id": "5RR55mlo6E08bhcEDRjXO2"
},
"4KTc14obmyxIcDFv3r4KHX": {
"name": "Guitar Town (Deluxe)",
"release_date": "1986",
"uri": "spotify:album:4KTc14obmyxIcDFv3r4KHX",
"artists": [
{
"name": "Steve Earle",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2UBTfUoLI07iRqGeUrwhZh"
},
"uri": "spotify:artist:2UBTfUoLI07iRqGeUrwhZh",
"href": "https://api.spotify.com/v1/artists/2UBTfUoLI07iRqGeUrwhZh",
"type": "artist",
"id": "2UBTfUoLI07iRqGeUrwhZh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dfed2ffb8c63ccb5290f6ba7ce23c4820d515d20",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/9b86dec0c62e454fd62e41606e91813d3f57d76f",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/d8e9c38b77a557d58294e844f9b8be13a832ae97",
"width": 64,
"height": 63
}
],
"id": "4KTc14obmyxIcDFv3r4KHX"
},
"734MC4wQsfNWsg9HLTrUoN": {
"name": "Mothership Connection",
"release_date": "1975-12-15",
"uri": "spotify:album:734MC4wQsfNWsg9HLTrUoN",
"artists": [
{
"name": "Parliament",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5SMVzTJyKFJ7TUb46DglcH"
},
"uri": "spotify:artist:5SMVzTJyKFJ7TUb46DglcH",
"href": "https://api.spotify.com/v1/artists/5SMVzTJyKFJ7TUb46DglcH",
"type": "artist",
"id": "5SMVzTJyKFJ7TUb46DglcH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8f30607567b2025116b289e7f5a0f5120dddfe2e",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/3bf4c8049d3d088de18ffb2dbdba26873792780b",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/c0f370b250871be17722ffc0f6ba12d38862e999",
"width": 64,
"height": 63
}
],
"id": "734MC4wQsfNWsg9HLTrUoN"
},
"3pIbqidFqx4fVljrJwAaAs": {
"name": "L'Eau Rouge/Red Water",
"release_date": "1989-08-28",
"uri": "spotify:album:3pIbqidFqx4fVljrJwAaAs",
"artists": [
{
"name": "The Young Gods",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1xF9B1eiCKUejBnEE9k3sY"
},
"uri": "spotify:artist:1xF9B1eiCKUejBnEE9k3sY",
"href": "https://api.spotify.com/v1/artists/1xF9B1eiCKUejBnEE9k3sY",
"type": "artist",
"id": "1xF9B1eiCKUejBnEE9k3sY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a2d2e344c72496aa6da5fea6a10af9f561b76cfd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9e779348b64a98d4ecd5ee1ce98b50f5a0295452",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/feb7f98355244c57f847aa4e6b692c8d0d2855e7",
"width": 64,
"height": 64
}
],
"id": "3pIbqidFqx4fVljrJwAaAs"
},
"01RJdKvXyz515O37itqMIJ": {
"name": "More Songs About Buildings And Food (Deluxe Version)",
"release_date": "1978-07-14",
"uri": "spotify:album:01RJdKvXyz515O37itqMIJ",
"artists": [
{
"name": "Talking Heads",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2x9SpqnPi8rlE9pjHBwmSC"
},
"uri": "spotify:artist:2x9SpqnPi8rlE9pjHBwmSC",
"href": "https://api.spotify.com/v1/artists/2x9SpqnPi8rlE9pjHBwmSC",
"type": "artist",
"id": "2x9SpqnPi8rlE9pjHBwmSC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9b19bd8cefe70de0c037f1160f3f4d86d5e411de",
"width": 640,
"height": 570
},
{
"url": "https://i.scdn.co/image/678a80a619331b59ade8edadf206ece884089e1f",
"width": 300,
"height": 267
},
{
"url": "https://i.scdn.co/image/6f450052953db227d096fc1cbdf01fa42c26b035",
"width": 64,
"height": 57
}
],
"id": "01RJdKvXyz515O37itqMIJ"
},
"4GMgNPA4fMv3U0QQsdRLJk": {
"name": "Ladies & Gentlemen We Are Floating In Space",
"release_date": "1997",
"uri": "spotify:album:4GMgNPA4fMv3U0QQsdRLJk",
"artists": [
{
"name": "Spiritualized",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6DKmuXxXASTF6xaJwcTfjv"
},
"uri": "spotify:artist:6DKmuXxXASTF6xaJwcTfjv",
"href": "https://api.spotify.com/v1/artists/6DKmuXxXASTF6xaJwcTfjv",
"type": "artist",
"id": "6DKmuXxXASTF6xaJwcTfjv"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c071954cee2f1be4a23ef81ae8b08daa09d2bafa",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/5b8b5ca30f92b70aa63e42f1140267e5b4bd2407",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6d5f2b199bc1bd2b9f600963b1d108cb712f69ce",
"width": 64,
"height": 64
}
],
"id": "4GMgNPA4fMv3U0QQsdRLJk"
},
"05ceWTY5vsofz9eOzzPzJV": {
"name": "Either Or",
"release_date": "1997",
"uri": "spotify:album:05ceWTY5vsofz9eOzzPzJV",
"artists": [
{
"name": "Elliott Smith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ApaG60P4r0yhBoDCGD8YG"
},
"uri": "spotify:artist:2ApaG60P4r0yhBoDCGD8YG",
"href": "https://api.spotify.com/v1/artists/2ApaG60P4r0yhBoDCGD8YG",
"type": "artist",
"id": "2ApaG60P4r0yhBoDCGD8YG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f98aa8a1a031f111af2f28cb1f263f8178a42e6b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d25af66a68002d0adfe8763bed34f0dbabd9d151",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e58d59ea1bd236e9ffb36fae02107c2ff98d0864",
"width": 64,
"height": 64
}
],
"id": "05ceWTY5vsofz9eOzzPzJV"
},
"30sgpxWf6U9417FySmLEGK": {
"name": "Green River (40th Anniversary Edition)",
"release_date": "1969",
"uri": "spotify:album:30sgpxWf6U9417FySmLEGK",
"artists": [
{
"name": "Creedence Clearwater Revival",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3IYUhFvPQItj6xySrBmZkd"
},
"uri": "spotify:artist:3IYUhFvPQItj6xySrBmZkd",
"href": "https://api.spotify.com/v1/artists/3IYUhFvPQItj6xySrBmZkd",
"type": "artist",
"id": "3IYUhFvPQItj6xySrBmZkd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ea280bc6c28ea05ff298f4c03ee9947509711eb0",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/cedecb95ed4265035f471197a695c49d63102050",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/57483177c3d7c986b8f2a145e3d6e882565cd9ba",
"width": 64,
"height": 64
}
],
"id": "30sgpxWf6U9417FySmLEGK"
},
"2Eu3dJJYgcbzrhp0zyRBZz": {
"name": "Elastica",
"release_date": "1995-02-08",
"uri": "spotify:album:2Eu3dJJYgcbzrhp0zyRBZz",
"artists": [
{
"name": "Elastica",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3l14gV4hIMAjmo7KUvEWTx"
},
"uri": "spotify:artist:3l14gV4hIMAjmo7KUvEWTx",
"href": "https://api.spotify.com/v1/artists/3l14gV4hIMAjmo7KUvEWTx",
"type": "artist",
"id": "3l14gV4hIMAjmo7KUvEWTx"
}
],
"images": [
{
"url": "https://i.scdn.co/image/91b39f42f07681db56fd9718b221d26cfee9ab80",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/48ec65df685895c4a06ab1c7212d8f46ba4b0ea4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/04bb7413930db559fdb01a466ef04247459e384d",
"width": 64,
"height": 64
}
],
"id": "2Eu3dJJYgcbzrhp0zyRBZz"
},
"1nj2Tvse0XTmAZg63pVkkP": {
"name": "Dear Science,",
"release_date": "2008-09-21",
"uri": "spotify:album:1nj2Tvse0XTmAZg63pVkkP",
"artists": [
{
"name": "TV On The Radio",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3HJIB8sYPyxrFGuwvKXSLR"
},
"uri": "spotify:artist:3HJIB8sYPyxrFGuwvKXSLR",
"href": "https://api.spotify.com/v1/artists/3HJIB8sYPyxrFGuwvKXSLR",
"type": "artist",
"id": "3HJIB8sYPyxrFGuwvKXSLR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7991d3a86012e1761adc0e8369c6f2c198685bd8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a1148c5816a88d1a211e92299248429a6f4cc6ec",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2407bd84bf687fd33b93981bc8ff5732a2ed3421",
"width": 64,
"height": 64
}
],
"id": "1nj2Tvse0XTmAZg63pVkkP"
},
"5WLhE2narEJDFpNu7IJ9CI": {
"name": "16 Lovers Lane",
"release_date": "1988",
"uri": "spotify:album:5WLhE2narEJDFpNu7IJ9CI",
"artists": [
{
"name": "The Go-Betweens",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4HCubdy7diarb4KZo8etrq"
},
"uri": "spotify:artist:4HCubdy7diarb4KZo8etrq",
"href": "https://api.spotify.com/v1/artists/4HCubdy7diarb4KZo8etrq",
"type": "artist",
"id": "4HCubdy7diarb4KZo8etrq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/836041cd1c480773d7ef6dafffcd175053c52d67",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/da8e28b01b4f5822cb3acd4ad50e961737488823",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/be48b9761fcb3a0f6f674c56ca304f36216f0ef5",
"width": 64,
"height": 62
}
],
"id": "5WLhE2narEJDFpNu7IJ9CI"
},
"1fi3IyodfojWTth7DhDQ6d": {
"name": "Everything Must Go",
"release_date": "1996-04-20",
"uri": "spotify:album:1fi3IyodfojWTth7DhDQ6d",
"artists": [
{
"name": "Manic Street Preachers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2uH0RyPcX7fnCcT90HFDQX"
},
"uri": "spotify:artist:2uH0RyPcX7fnCcT90HFDQX",
"href": "https://api.spotify.com/v1/artists/2uH0RyPcX7fnCcT90HFDQX",
"type": "artist",
"id": "2uH0RyPcX7fnCcT90HFDQX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/65615a2453abf1c3e683029d52d256ff184269e7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9c6236cea357a98050dca85035efa7ed4a8db58a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/82ca8d7b3badae3bf9c2363a645921abdc0da2bf",
"width": 64,
"height": 64
}
],
"id": "1fi3IyodfojWTth7DhDQ6d"
},
"0DBkFC6739trhCoVreZyds": {
"name": "Parklife [Special Edition]",
"release_date": "1994-04-25",
"uri": "spotify:album:0DBkFC6739trhCoVreZyds",
"artists": [
{
"name": "Blur",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MhMgCo0Bl0Kukl93PZbYS"
},
"uri": "spotify:artist:7MhMgCo0Bl0Kukl93PZbYS",
"href": "https://api.spotify.com/v1/artists/7MhMgCo0Bl0Kukl93PZbYS",
"type": "artist",
"id": "7MhMgCo0Bl0Kukl93PZbYS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/03c8065209537b0ac1c57c1ba9699b0220a4d4b8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ff643365919768d1d742a8cd7e7e199e401169df",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eeaa64d81f9cbe8e30671a392bba2c78de766067",
"width": 64,
"height": 64
}
],
"id": "0DBkFC6739trhCoVreZyds"
},
"0cGaQUOlAm0smFXWUB8KIL": {
"name": "Wonderful Rainbow",
"release_date": "2003",
"uri": "spotify:album:0cGaQUOlAm0smFXWUB8KIL",
"artists": [
{
"name": "Lightning Bolt",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2og3FOCLYXT9H7IYE6QPUq"
},
"uri": "spotify:artist:2og3FOCLYXT9H7IYE6QPUq",
"href": "https://api.spotify.com/v1/artists/2og3FOCLYXT9H7IYE6QPUq",
"type": "artist",
"id": "2og3FOCLYXT9H7IYE6QPUq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/714ecd2d9aaa3f6a63e465e42b63b327a3b1b9bd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f5620917da9c6e87c198d891ab5a68d9d840bb50",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/588a97e0068fd59c8517da80eacf35abedfa18d2",
"width": 64,
"height": 64
}
],
"id": "0cGaQUOlAm0smFXWUB8KIL"
},
"4EKODboelaOmS0gt7hbTHN": {
"name": "Reign In Blood (Expanded)",
"release_date": "1986",
"uri": "spotify:album:4EKODboelaOmS0gt7hbTHN",
"artists": [
{
"name": "Slayer",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1IQ2e1buppatiN1bxUVkrk"
},
"uri": "spotify:artist:1IQ2e1buppatiN1bxUVkrk",
"href": "https://api.spotify.com/v1/artists/1IQ2e1buppatiN1bxUVkrk",
"type": "artist",
"id": "1IQ2e1buppatiN1bxUVkrk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7b88e78e022dc6d360bd461e54e400400d513087",
"width": 640,
"height": 635
},
{
"url": "https://i.scdn.co/image/4f37781ec1f5f7670c5d8750851c785ecb204266",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/799696a7b28d132b21c71608a4faa9607df0f886",
"width": 64,
"height": 64
}
],
"id": "4EKODboelaOmS0gt7hbTHN"
},
"5cOS6szqlcoqmiSoVTqqe8": {
"name": "The Nightfly",
"release_date": "1982-10-20",
"uri": "spotify:album:5cOS6szqlcoqmiSoVTqqe8",
"artists": [
{
"name": "Donald Fagen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0S1SjYebdSaiMpI8xSW2Wb"
},
"uri": "spotify:artist:0S1SjYebdSaiMpI8xSW2Wb",
"href": "https://api.spotify.com/v1/artists/0S1SjYebdSaiMpI8xSW2Wb",
"type": "artist",
"id": "0S1SjYebdSaiMpI8xSW2Wb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7aee5f85d7d9af217f4a3dae73eb63d5eea4432a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3b404c41aaee21236fe119a303bddefa30974bc1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e23b0391ce088be3fe4b8701d9e71b18150098a4",
"width": 64,
"height": 64
}
],
"id": "5cOS6szqlcoqmiSoVTqqe8"
},
"6a3a1We83O9GOK6S4EyqiP": {
"name": "Wild Gift",
"release_date": "1981-05-01",
"uri": "spotify:album:6a3a1We83O9GOK6S4EyqiP",
"artists": [
{
"name": "X",
"external_urls": {
"spotify": "https://open.spotify.com/artist/54NqjhP2rT524Mi2GicG4K"
},
"uri": "spotify:artist:54NqjhP2rT524Mi2GicG4K",
"href": "https://api.spotify.com/v1/artists/54NqjhP2rT524Mi2GicG4K",
"type": "artist",
"id": "54NqjhP2rT524Mi2GicG4K"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8ee051a131eeb4fd3f5d41fd23801eb2aa8642bf",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/451d3a8d34bb784bae663ad4b56e882d03fefdfd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a90e5921d50a0bacf0c55c910a89b31e71712a65",
"width": 64,
"height": 64
}
],
"id": "6a3a1We83O9GOK6S4EyqiP"
},
"7Dln8ruq4VMRtmJDvSGtjJ": {
"name": "No Other",
"release_date": "1974-09",
"uri": "spotify:album:7Dln8ruq4VMRtmJDvSGtjJ",
"artists": [
{
"name": "Gene Clark",
"external_urls": {
"spotify": "https://open.spotify.com/artist/040Bv6cZTRh30LyyYVXgJX"
},
"uri": "spotify:artist:040Bv6cZTRh30LyyYVXgJX",
"href": "https://api.spotify.com/v1/artists/040Bv6cZTRh30LyyYVXgJX",
"type": "artist",
"id": "040Bv6cZTRh30LyyYVXgJX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ff830c56554527d4d1a634cf4f2c06f61a52f7b1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/14474187d6a9a8944361fdceefadb988a29c5681",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6aeab7662f0c5323e449efb9d872e4a7117be70b",
"width": 64,
"height": 64
}
],
"id": "7Dln8ruq4VMRtmJDvSGtjJ"
},
"2sSoLLxo3rLSirqUnlyalo": {
"name": "Heartattack And Vine",
"release_date": "1980-09-01",
"uri": "spotify:album:2sSoLLxo3rLSirqUnlyalo",
"artists": [
{
"name": "Tom Waits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7x83XhcMbOTl1UdYsPTuZM"
},
"uri": "spotify:artist:7x83XhcMbOTl1UdYsPTuZM",
"href": "https://api.spotify.com/v1/artists/7x83XhcMbOTl1UdYsPTuZM",
"type": "artist",
"id": "7x83XhcMbOTl1UdYsPTuZM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bdafb18af36734068513afd1f483b221a97b77ae",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b73fea694846cf03966b29a3c49a47651a15cacd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1683f443e50e8378618d6a1ab8537e7be87adbc0",
"width": 64,
"height": 64
}
],
"id": "2sSoLLxo3rLSirqUnlyalo"
},
"4PVqDVjitmZwRx8JIs3HJP": {
"name": "Rain Dogs",
"release_date": "1985-09-30",
"uri": "spotify:album:4PVqDVjitmZwRx8JIs3HJP",
"artists": [
{
"name": "Tom Waits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7x83XhcMbOTl1UdYsPTuZM"
},
"uri": "spotify:artist:7x83XhcMbOTl1UdYsPTuZM",
"href": "https://api.spotify.com/v1/artists/7x83XhcMbOTl1UdYsPTuZM",
"type": "artist",
"id": "7x83XhcMbOTl1UdYsPTuZM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b95785f0e8b2daa799e0bce6155ffe0fde53979f",
"width": 630,
"height": 640
},
{
"url": "https://i.scdn.co/image/8e05f11aadcff09c5ec541cd82fc654fc2d30a8c",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/d9565780d6aabe08d2b6faf75ff200caae8f8422",
"width": 63,
"height": 64
}
],
"id": "4PVqDVjitmZwRx8JIs3HJP"
},
"2wRg89V78bIRrFzTzaFYEq": {
"name": "Savane",
"release_date": "2006-07-17",
"uri": "spotify:album:2wRg89V78bIRrFzTzaFYEq",
"artists": [
{
"name": "Ali Farka Tour\u00e9",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3mNygoyrEKLgo6sx0MzwOL"
},
"uri": "spotify:artist:3mNygoyrEKLgo6sx0MzwOL",
"href": "https://api.spotify.com/v1/artists/3mNygoyrEKLgo6sx0MzwOL",
"type": "artist",
"id": "3mNygoyrEKLgo6sx0MzwOL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/935994a036b98c3f564174a23c5857b2613f2e7f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/28b72b6aabb50db1db5bebabf25a62f17bb7769d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1b7e4acc0cfc88d6ad51c2f3a585c4d9bdca90f5",
"width": 64,
"height": 64
}
],
"id": "2wRg89V78bIRrFzTzaFYEq"
},
"3vpVWxOR2W611w9lgAxWET": {
"name": "A Wizard/A True Star",
"release_date": "1973",
"uri": "spotify:album:3vpVWxOR2W611w9lgAxWET",
"artists": [
{
"name": "Todd Rundgren",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0Lpr5wXzWLtDWm1SjNbpPb"
},
"uri": "spotify:artist:0Lpr5wXzWLtDWm1SjNbpPb",
"href": "https://api.spotify.com/v1/artists/0Lpr5wXzWLtDWm1SjNbpPb",
"type": "artist",
"id": "0Lpr5wXzWLtDWm1SjNbpPb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3eacef90083ac6f0ecd566b39ef3cdb3f5c5699e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ec36f23e1b37dd5e59fa43fa7bd46efe2a94f7ed",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ce77c5fa9bcc88d85e640c172b958401667edbee",
"width": 64,
"height": 64
}
],
"id": "3vpVWxOR2W611w9lgAxWET"
},
"2fha0wrQ7OrBG9FfZYe2tt": {
"name": "Slanted And Enchanted",
"release_date": "1992",
"uri": "spotify:album:2fha0wrQ7OrBG9FfZYe2tt",
"artists": [
{
"name": "Pavement",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3inCNiUr4R6XQ3W43s9Aqi"
},
"uri": "spotify:artist:3inCNiUr4R6XQ3W43s9Aqi",
"href": "https://api.spotify.com/v1/artists/3inCNiUr4R6XQ3W43s9Aqi",
"type": "artist",
"id": "3inCNiUr4R6XQ3W43s9Aqi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/328517a055f9737125a55b430ecabce143ab8d45",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4830695154fc69bf972069c453d834f6eaa6ae3a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ef282bf07e2726cdf4a81ebf40c5356013a1abf1",
"width": 64,
"height": 64
}
],
"id": "2fha0wrQ7OrBG9FfZYe2tt"
},
"7Hj7jLvac1sBCDnvP6qBYd": {
"name": "Maxinquaye",
"release_date": "1994-02-20",
"uri": "spotify:album:7Hj7jLvac1sBCDnvP6qBYd",
"artists": [
{
"name": "Tricky",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6hhA8TKRNryM8FNzqCqdDO"
},
"uri": "spotify:artist:6hhA8TKRNryM8FNzqCqdDO",
"href": "https://api.spotify.com/v1/artists/6hhA8TKRNryM8FNzqCqdDO",
"type": "artist",
"id": "6hhA8TKRNryM8FNzqCqdDO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f1c64cfffa940110990bfb7d84bd81222c3aaed3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c438def43fe171e04e859b35e700f05b3f0b58fa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ba993a7a490c780caed77760e46ad2c7c1f6edc8",
"width": 64,
"height": 64
}
],
"id": "7Hj7jLvac1sBCDnvP6qBYd"
},
"3mvdHEE56sgj1NtTnTF8qK": {
"name": "A Nod Is As Good As A Wink To A Blind Horse",
"release_date": "1971",
"uri": "spotify:album:3mvdHEE56sgj1NtTnTF8qK",
"artists": [
{
"name": "Faces",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3v4feUQnU3VEUqFrjmtekL"
},
"uri": "spotify:artist:3v4feUQnU3VEUqFrjmtekL",
"href": "https://api.spotify.com/v1/artists/3v4feUQnU3VEUqFrjmtekL",
"type": "artist",
"id": "3v4feUQnU3VEUqFrjmtekL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/33e6a3a3fb3d93ca2d94b6268b39b65e38484868",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6ec2f01c5460588012e84263a2cbba0ad783e49e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3c41a30dc0de0ece9f344bc581373bbcab64b1f3",
"width": 64,
"height": 64
}
],
"id": "3mvdHEE56sgj1NtTnTF8qK"
},
"5tqJNAjU163MfKLIP6DtYu": {
"name": "Who's Next (Deluxe Edition)",
"release_date": "1971-08-14",
"uri": "spotify:album:5tqJNAjU163MfKLIP6DtYu",
"artists": [
{
"name": "The Who",
"external_urls": {
"spotify": "https://open.spotify.com/artist/67ea9eGLXYMsO2eYQRui3w"
},
"uri": "spotify:artist:67ea9eGLXYMsO2eYQRui3w",
"href": "https://api.spotify.com/v1/artists/67ea9eGLXYMsO2eYQRui3w",
"type": "artist",
"id": "67ea9eGLXYMsO2eYQRui3w"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d0fc637463fcb53926592e21f4546f74233e8985",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/17369f4b5fd691e4df57b2c65d31ec0ac5e2e64b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7e11e9274d534d2160e770ccb69b3b4fed19ae4f",
"width": 64,
"height": 64
}
],
"id": "5tqJNAjU163MfKLIP6DtYu"
},
"0lYmtEuL0fLXPP4XKr5O8K": {
"name": "The Yardbirds Story - Pt. 3 - 1965/66 - Big Hits & America Calling",
"release_date": "2002-05-08",
"uri": "spotify:album:0lYmtEuL0fLXPP4XKr5O8K",
"artists": [
{
"name": "The Yardbirds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2lxX1ivRYp26soIavdG9bX"
},
"uri": "spotify:artist:2lxX1ivRYp26soIavdG9bX",
"href": "https://api.spotify.com/v1/artists/2lxX1ivRYp26soIavdG9bX",
"type": "artist",
"id": "2lxX1ivRYp26soIavdG9bX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/921931c533d605aeb37fb74ab3c16c2e3f416dbe",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fbe95b3c3ac84b7ad496494379f18485660a6988",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/95bc58b34cc21572d2a7a43ae9cb9f4f6373c519",
"width": 64,
"height": 64
}
],
"id": "0lYmtEuL0fLXPP4XKr5O8K"
},
"03akiuheNt5mJqltALnalP": {
"name": "Franz Ferdinand",
"release_date": "2004-02-16",
"uri": "spotify:album:03akiuheNt5mJqltALnalP",
"artists": [
{
"name": "Franz Ferdinand",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0XNa1vTidXlvJ2gHSsRi4A"
},
"uri": "spotify:artist:0XNa1vTidXlvJ2gHSsRi4A",
"href": "https://api.spotify.com/v1/artists/0XNa1vTidXlvJ2gHSsRi4A",
"type": "artist",
"id": "0XNa1vTidXlvJ2gHSsRi4A"
}
],
"images": [
{
"url": "https://i.scdn.co/image/99efa448f8c7305788dea2ed3546b14556e44f1e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/65e5cbb5fbbb20385d042ce7aa357309388f555e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cd69c2fc2c86f602031465f3670cc99707fd59a6",
"width": 64,
"height": 64
}
],
"id": "03akiuheNt5mJqltALnalP"
},
"0PMasrHdpaoIRuHuhHp72O": {
"name": "Born In The U.S.A.",
"release_date": "1984-07-17",
"uri": "spotify:album:0PMasrHdpaoIRuHuhHp72O",
"artists": [
{
"name": "Bruce Springsteen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT"
},
"uri": "spotify:artist:3eqjTLE0HfPfh78zjh6TqT",
"href": "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT",
"type": "artist",
"id": "3eqjTLE0HfPfh78zjh6TqT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/60d572a6f384afec96e89887a9072b65782c1137",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ff30aee935ac235dcdf53e2b4cef4532de7d33cf",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/195d8359a37e94b0c1c710d1072afd8f06a1c178",
"width": 64,
"height": 64
}
],
"id": "0PMasrHdpaoIRuHuhHp72O"
},
"2ufQZaCxAGM01yQbotw9tA": {
"name": "Made In Japan (Deluxe / 2014 Remaster)",
"release_date": "2014-01-01",
"uri": "spotify:album:2ufQZaCxAGM01yQbotw9tA",
"artists": [
{
"name": "Deep Purple",
"external_urls": {
"spotify": "https://open.spotify.com/artist/568ZhdwyaiCyOGJRtNYhWf"
},
"uri": "spotify:artist:568ZhdwyaiCyOGJRtNYhWf",
"href": "https://api.spotify.com/v1/artists/568ZhdwyaiCyOGJRtNYhWf",
"type": "artist",
"id": "568ZhdwyaiCyOGJRtNYhWf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bfbe385e1721322de139a5089c3c9491d3a0abea",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0c22a608885a847c69663d8bc281bfa1ce3e194c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2590fc5eed213370bc02d351cac081de32d5acac",
"width": 64,
"height": 64
}
],
"id": "2ufQZaCxAGM01yQbotw9tA"
},
"7hmZCaBzp6mVrelxW6Ckrn": {
"name": "Heartbreaker",
"release_date": "2000-09-05",
"uri": "spotify:album:7hmZCaBzp6mVrelxW6Ckrn",
"artists": [
{
"name": "Ryan Adams",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2qc41rNTtdLK0tV3mJn2Pm"
},
"uri": "spotify:artist:2qc41rNTtdLK0tV3mJn2Pm",
"href": "https://api.spotify.com/v1/artists/2qc41rNTtdLK0tV3mJn2Pm",
"type": "artist",
"id": "2qc41rNTtdLK0tV3mJn2Pm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/64ace84bd2bd7339e24d7b7c49aec89404b5b7ea",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/43b3715cdd187a0911ab2e3770712f25e88066aa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ff5f812beab5b4e348995dfb57087ef20c32070f",
"width": 64,
"height": 64
}
],
"id": "7hmZCaBzp6mVrelxW6Ckrn"
},
"19MOC02Ei3l2SalGUGWozw": {
"name": "Aftermath (Remastered)",
"release_date": "1966-04-15",
"uri": "spotify:album:19MOC02Ei3l2SalGUGWozw",
"artists": [
{
"name": "The Rolling Stones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe"
},
"uri": "spotify:artist:22bE4uQ6baNwSHPVcDxLCe",
"href": "https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe",
"type": "artist",
"id": "22bE4uQ6baNwSHPVcDxLCe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b46bcd2a6ea3bc0c8e1a3f15d54179bf016d9528",
"width": 640,
"height": 574
},
{
"url": "https://i.scdn.co/image/00b7c9f8afe571e542672fbe19326bfd2c29239d",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/7e14f410ac12d72ac554349b29cb6ad1504bd3c0",
"width": 64,
"height": 57
}
],
"id": "19MOC02Ei3l2SalGUGWozw"
},
"1ER3B6zev5JEAaqhnyyfbf": {
"name": "Hunting High And Low",
"release_date": "1985-06-12",
"uri": "spotify:album:1ER3B6zev5JEAaqhnyyfbf",
"artists": [
{
"name": "a-ha",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2jzc5TC5TVFLXQlBNiIUzE"
},
"uri": "spotify:artist:2jzc5TC5TVFLXQlBNiIUzE",
"href": "https://api.spotify.com/v1/artists/2jzc5TC5TVFLXQlBNiIUzE",
"type": "artist",
"id": "2jzc5TC5TVFLXQlBNiIUzE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/73670555d3be929102d5cb2336e58762b4c041a8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/07b5abbe48330b094d13aeee3485255fe5bc8fca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8879aa1bad3fc33ab1ed5eb98b91201fa00ad0ea",
"width": 64,
"height": 64
}
],
"id": "1ER3B6zev5JEAaqhnyyfbf"
},
"2DYl4Z5qrQrQvEbMj4Alle": {
"name": "Dig Your Own Hole",
"release_date": "1997-03-26",
"uri": "spotify:album:2DYl4Z5qrQrQvEbMj4Alle",
"artists": [
{
"name": "The Chemical Brothers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1GhPHrq36VKCY3ucVaZCfo"
},
"uri": "spotify:artist:1GhPHrq36VKCY3ucVaZCfo",
"href": "https://api.spotify.com/v1/artists/1GhPHrq36VKCY3ucVaZCfo",
"type": "artist",
"id": "1GhPHrq36VKCY3ucVaZCfo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fa566549a74cbab1116ae95f9454768be01ed879",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/aaf526239abff18115f23dc29cad6cf9fcd4f103",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3e83da88c565ac057c7c8dc92b8d453d33a38ceb",
"width": 64,
"height": 64
}
],
"id": "2DYl4Z5qrQrQvEbMj4Alle"
},
"3Y0Fer1NCitpAQnMAUaHSe": {
"name": "It Takes A Nation Of Millions To Hold Us Back",
"release_date": "1988-04-14",
"uri": "spotify:album:3Y0Fer1NCitpAQnMAUaHSe",
"artists": [
{
"name": "Public Enemy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6Mo9PoU6svvhgEum7wh2Nd"
},
"uri": "spotify:artist:6Mo9PoU6svvhgEum7wh2Nd",
"href": "https://api.spotify.com/v1/artists/6Mo9PoU6svvhgEum7wh2Nd",
"type": "artist",
"id": "6Mo9PoU6svvhgEum7wh2Nd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/58a1207b150c78ba64246be9053168b9118aac36",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5068077fe78dba0c274252512b969aa0fc3dca9a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cd2081600e3bbac93d460f6427e30ba6398c0c85",
"width": 64,
"height": 64
}
],
"id": "3Y0Fer1NCitpAQnMAUaHSe"
},
"4gV58UaDEEHWy5hPPkKNWm": {
"name": "Haut de gamme / Kowe\u00eft, rive gauche",
"release_date": "1992-01-01",
"uri": "spotify:album:4gV58UaDEEHWy5hPPkKNWm",
"artists": [
{
"name": "Koffi Olomide",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7e14Bh8oZXNRmZxjhhTARb"
},
"uri": "spotify:artist:7e14Bh8oZXNRmZxjhhTARb",
"href": "https://api.spotify.com/v1/artists/7e14Bh8oZXNRmZxjhhTARb",
"type": "artist",
"id": "7e14Bh8oZXNRmZxjhhTARb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ac12712331d5302c41f09077adcfd158f6edc93e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/46ffe13e517fc95f6322f43331f65ba45c57d7c0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/07797e6c0337720c657124e82e3be921102b95ed",
"width": 64,
"height": 64
}
],
"id": "4gV58UaDEEHWy5hPPkKNWm"
},
"3U1ht9EdWEI9nMvaqdQI67": {
"name": "1999",
"release_date": "1982-10-27",
"uri": "spotify:album:3U1ht9EdWEI9nMvaqdQI67",
"artists": [
{
"name": "Prince",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5a2EaR3hamoenG9rDuVn8j"
},
"uri": "spotify:artist:5a2EaR3hamoenG9rDuVn8j",
"href": "https://api.spotify.com/v1/artists/5a2EaR3hamoenG9rDuVn8j",
"type": "artist",
"id": "5a2EaR3hamoenG9rDuVn8j"
}
],
"images": [
{
"url": "https://i.scdn.co/image/53cdf8a70b1d0e1a2f4efd189e4d3a0e9fe8e268",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8518eb5655ce5a44023943b0f87b61990f7db515",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c65c970e16d89d79103cbb4c6d19448bb68e33b2",
"width": 64,
"height": 64
}
],
"id": "3U1ht9EdWEI9nMvaqdQI67"
},
"3MANoCcmaHWeXSuWiO3iVo": {
"name": "The Stooges",
"release_date": "1969-08-05",
"uri": "spotify:album:3MANoCcmaHWeXSuWiO3iVo",
"artists": [
{
"name": "The Stooges",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4BFMTELQyWJU1SwqcXMBm3"
},
"uri": "spotify:artist:4BFMTELQyWJU1SwqcXMBm3",
"href": "https://api.spotify.com/v1/artists/4BFMTELQyWJU1SwqcXMBm3",
"type": "artist",
"id": "4BFMTELQyWJU1SwqcXMBm3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/68df83f2771000e2923147388755a6949de1fa10",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/7ff9a40add5c14858bd506358c58af25c163b592",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/455c04c5271ee6d229941a75335eefbc972c0de7",
"width": 64,
"height": 63
}
],
"id": "3MANoCcmaHWeXSuWiO3iVo"
},
"18JyZd2XLdT2rmekw6EwoS": {
"name": "Third",
"release_date": "2008-01-01",
"uri": "spotify:album:18JyZd2XLdT2rmekw6EwoS",
"artists": [
{
"name": "Portishead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6liAMWkVf5LH7YR9yfFy1Y"
},
"uri": "spotify:artist:6liAMWkVf5LH7YR9yfFy1Y",
"href": "https://api.spotify.com/v1/artists/6liAMWkVf5LH7YR9yfFy1Y",
"type": "artist",
"id": "6liAMWkVf5LH7YR9yfFy1Y"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7bf16fcb2a5d48fba8c70c54b9d4b5ad05131fc6",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/9a54b448a98eacbf1470323f0b11ff7061e655d2",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/db4a54c2ae873e9552efabe58569d2cac8bda8cf",
"width": 64,
"height": 64
}
],
"id": "18JyZd2XLdT2rmekw6EwoS"
},
"16m3S8uDo5ZNLEekcnOSxf": {
"name": "Boy In Da Corner",
"release_date": "2003-07-21",
"uri": "spotify:album:16m3S8uDo5ZNLEekcnOSxf",
"artists": [
{
"name": "Dizzee Rascal",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0gusqTJKxtU1UTmNRMHZcv"
},
"uri": "spotify:artist:0gusqTJKxtU1UTmNRMHZcv",
"href": "https://api.spotify.com/v1/artists/0gusqTJKxtU1UTmNRMHZcv",
"type": "artist",
"id": "0gusqTJKxtU1UTmNRMHZcv"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c4dcdba36dca78fe1b33b5d5191480201e854587",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/e612660b0760d44e00270d5644c6c93c4c58a29c",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/2904f0e535cc5a40e9ad214c2e575dbb41cfecb6",
"width": 64,
"height": 62
}
],
"id": "16m3S8uDo5ZNLEekcnOSxf"
},
"4HihJAJjF6hSVoh318zLu9": {
"name": "The Last Broadcast",
"release_date": "2002-06-04",
"uri": "spotify:album:4HihJAJjF6hSVoh318zLu9",
"artists": [
{
"name": "Doves",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0LVrQUinPUBFvVD5pLqmWY"
},
"uri": "spotify:artist:0LVrQUinPUBFvVD5pLqmWY",
"href": "https://api.spotify.com/v1/artists/0LVrQUinPUBFvVD5pLqmWY",
"type": "artist",
"id": "0LVrQUinPUBFvVD5pLqmWY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c9ce69805510816919d7256988ca5b31edf566e4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8bf02da817b03715d57fc2bb130e6962ffa7b151",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b500c69617f80009ead28ab1d5c7bf38cec4f93c",
"width": 64,
"height": 64
}
],
"id": "4HihJAJjF6hSVoh318zLu9"
},
"6FSgsN5ROADI1YQOieljKD": {
"name": "Sunday At The Village Vanguard [Keepnews Collection]",
"release_date": "1961",
"uri": "spotify:album:6FSgsN5ROADI1YQOieljKD",
"artists": [
{
"name": "Bill Evans Trio",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3VEG6gxFIMfl4Cdog26avS"
},
"uri": "spotify:artist:3VEG6gxFIMfl4Cdog26avS",
"href": "https://api.spotify.com/v1/artists/3VEG6gxFIMfl4Cdog26avS",
"type": "artist",
"id": "3VEG6gxFIMfl4Cdog26avS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e39c77ab32b247d86ec4e6eaf152052ab7a180be",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/250a1b948f7d62f5a49c1186fc1c81454670f8a5",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/98c53310d6ddabbe4b3cbf2bb72ca808f4e5eed1",
"width": 64,
"height": 63
}
],
"id": "6FSgsN5ROADI1YQOieljKD"
},
"3N4rp7pLbDlWo2EvtONFMG": {
"name": "Le Tigre",
"release_date": "1999-10-26",
"uri": "spotify:album:3N4rp7pLbDlWo2EvtONFMG",
"artists": [
{
"name": "Le Tigre",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2n6FviARgtjjimZXu18uRM"
},
"uri": "spotify:artist:2n6FviARgtjjimZXu18uRM",
"href": "https://api.spotify.com/v1/artists/2n6FviARgtjjimZXu18uRM",
"type": "artist",
"id": "2n6FviARgtjjimZXu18uRM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8f18d7311f8a9a3043442abdef7b85e10184ea77",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/abc7a04f3380ee9c0074663ebc6f9753bf9611ec",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/91b9a5da9d88ae9c61aff3450cc1b47510b69360",
"width": 64,
"height": 64
}
],
"id": "3N4rp7pLbDlWo2EvtONFMG"
},
"5dfFLlA2pgPWdZZxrgZAGP": {
"name": "Pink Flag",
"release_date": "1977",
"uri": "spotify:album:5dfFLlA2pgPWdZZxrgZAGP",
"artists": [
{
"name": "Wire",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2i8ynmFv4qgRksyDlBgi6d"
},
"uri": "spotify:artist:2i8ynmFv4qgRksyDlBgi6d",
"href": "https://api.spotify.com/v1/artists/2i8ynmFv4qgRksyDlBgi6d",
"type": "artist",
"id": "2i8ynmFv4qgRksyDlBgi6d"
}
],
"images": [
{
"url": "https://i.scdn.co/image/588dbbaf8cad128d9dd95a36346a24dfdf8798b6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3f054b00e63ca9093636beebfba25f34a6885f40",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/892561b66d8249a92031314a5ac39ae766859526",
"width": 64,
"height": 64
}
],
"id": "5dfFLlA2pgPWdZZxrgZAGP"
},
"5LMGAYhn2ywaxGZdtmXGpw": {
"name": "Eliminator",
"release_date": "1983-03-23",
"uri": "spotify:album:5LMGAYhn2ywaxGZdtmXGpw",
"artists": [
{
"name": "ZZ Top",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2AM4ilv6UzW0uMRuqKtDgN"
},
"uri": "spotify:artist:2AM4ilv6UzW0uMRuqKtDgN",
"href": "https://api.spotify.com/v1/artists/2AM4ilv6UzW0uMRuqKtDgN",
"type": "artist",
"id": "2AM4ilv6UzW0uMRuqKtDgN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0ec1e7080de6ef28455e4a75ca0a9e3160141d2c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f8036e7f6f60a1866f334f20054bcd9f8da07b1f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/832cbab41aa6239e672eb785f2ec3cbf788855ff",
"width": 64,
"height": 64
}
],
"id": "5LMGAYhn2ywaxGZdtmXGpw"
},
"44aVVevMGKS4q6nWXbELpP": {
"name": "Crocodiles",
"release_date": "1980-07-02",
"uri": "spotify:album:44aVVevMGKS4q6nWXbELpP",
"artists": [
{
"name": "Echo And The Bunnymen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0fgYKF9Avljex0L9Wt5b8Z"
},
"uri": "spotify:artist:0fgYKF9Avljex0L9Wt5b8Z",
"href": "https://api.spotify.com/v1/artists/0fgYKF9Avljex0L9Wt5b8Z",
"type": "artist",
"id": "0fgYKF9Avljex0L9Wt5b8Z"
}
],
"images": [
{
"url": "https://i.scdn.co/image/385f6159af839ec0d3e3b8f0375c0d75eb5b9010",
"width": 640,
"height": 635
},
{
"url": "https://i.scdn.co/image/553e2e481745b3bc3429b980833a88bd7f2a957f",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/42f7aa71f3e0b816d8d7835bd77f5d433971bd54",
"width": 63,
"height": 63
}
],
"id": "44aVVevMGKS4q6nWXbELpP"
},
"20fJJzq5ImlT929uORjN0h": {
"name": "The Suburbs",
"release_date": "2010-01-01",
"uri": "spotify:album:20fJJzq5ImlT929uORjN0h",
"artists": [
{
"name": "Arcade Fire",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3kjuyTCjPG1WMFCiyc5IuB"
},
"uri": "spotify:artist:3kjuyTCjPG1WMFCiyc5IuB",
"href": "https://api.spotify.com/v1/artists/3kjuyTCjPG1WMFCiyc5IuB",
"type": "artist",
"id": "3kjuyTCjPG1WMFCiyc5IuB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9ca83e6857f52d8fbba1db24ee4c630fffba6a6c",
"width": 640,
"height": 631
},
{
"url": "https://i.scdn.co/image/8c6588bb125ec6fce14f75d55993f249996e59c1",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/3aa3e58afed3c69eaedb3c5fe4faf94ee5befbde",
"width": 64,
"height": 63
}
],
"id": "20fJJzq5ImlT929uORjN0h"
},
"063f8Ej8rLVTz9KkjQKEMa": {
"name": "Ambient 1/Music For Airports",
"release_date": "1975-11-01",
"uri": "spotify:album:063f8Ej8rLVTz9KkjQKEMa",
"artists": [
{
"name": "Brian Eno",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7MSUfLeTdDEoZiJPDSBXgi"
},
"uri": "spotify:artist:7MSUfLeTdDEoZiJPDSBXgi",
"href": "https://api.spotify.com/v1/artists/7MSUfLeTdDEoZiJPDSBXgi",
"type": "artist",
"id": "7MSUfLeTdDEoZiJPDSBXgi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4adbb659aac44f3eb198e0d7adb85dcf3faf2578",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/42cda2065e164df3f923737f3f40b0a26c6b6bd5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6fdee9084e91faaa23bbf5880ad3cf5988aea438",
"width": 64,
"height": 64
}
],
"id": "063f8Ej8rLVTz9KkjQKEMa"
},
"2QOJAnJyPVu6DnlWJT1iZy": {
"name": "Don't Come Home A Drinkin' (With Lovin' On Your Mind)",
"release_date": "1967-01-01",
"uri": "spotify:album:2QOJAnJyPVu6DnlWJT1iZy",
"artists": [
{
"name": "Loretta Lynn",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1FE0rls8gfQT3laAeRYNgl"
},
"uri": "spotify:artist:1FE0rls8gfQT3laAeRYNgl",
"href": "https://api.spotify.com/v1/artists/1FE0rls8gfQT3laAeRYNgl",
"type": "artist",
"id": "1FE0rls8gfQT3laAeRYNgl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e204e63b1803a7766c0ce5cc871adeef00ba10e5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6cd72aa7bde6d9e5ac7b426c83b4b064e1113cb6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/066d56438ef613121e3c3dd6b6e86a0508d8022e",
"width": 64,
"height": 64
}
],
"id": "2QOJAnJyPVu6DnlWJT1iZy"
},
"1I2GiA5ntqkoaybsTpn9fw": {
"name": "Steve McQueen",
"release_date": "1985",
"uri": "spotify:album:1I2GiA5ntqkoaybsTpn9fw",
"artists": [
{
"name": "Prefab Sprout",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4w3QqrcmBv8dasemwBXmxf"
},
"uri": "spotify:artist:4w3QqrcmBv8dasemwBXmxf",
"href": "https://api.spotify.com/v1/artists/4w3QqrcmBv8dasemwBXmxf",
"type": "artist",
"id": "4w3QqrcmBv8dasemwBXmxf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/577b370a88f3e770412da55ea9ca08966d98ebf5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a4f1986f7ac9f6cac1167a2dfd4a68d2747a70b5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8edfa64bdc8b715fe26d6e941a6d665d3c56c60d",
"width": 64,
"height": 64
}
],
"id": "1I2GiA5ntqkoaybsTpn9fw"
},
"08CyNpU6VJMtGmR7DYjNmQ": {
"name": "Pacific Ocean Blue & Bambu - 2 CD Deluxe Legacy Edition",
"release_date": "2008-06-17",
"uri": "spotify:album:08CyNpU6VJMtGmR7DYjNmQ",
"artists": [
{
"name": "Dennis Wilson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5gl6pfPwJ1coivVUMZPiS9"
},
"uri": "spotify:artist:5gl6pfPwJ1coivVUMZPiS9",
"href": "https://api.spotify.com/v1/artists/5gl6pfPwJ1coivVUMZPiS9",
"type": "artist",
"id": "5gl6pfPwJ1coivVUMZPiS9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a3f7bafaee72f4f289f4b06f45f64cc3dd993dfa",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/76e4fad8748e815ba17d5dd9838f32a8f4ea06e7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/def63129db172f6b105fd453eca162a28882920d",
"width": 64,
"height": 64
}
],
"id": "08CyNpU6VJMtGmR7DYjNmQ"
},
"5MXXmiT2IK7VnwKhBTEoHo": {
"name": "The Beatles With Tony Sheridan",
"release_date": "2013-07-16",
"uri": "spotify:album:5MXXmiT2IK7VnwKhBTEoHo",
"artists": [
{
"name": "The Beatles With Tony Sheridan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5264gfijccY4lvqa45OVEp"
},
"uri": "spotify:artist:5264gfijccY4lvqa45OVEp",
"href": "https://api.spotify.com/v1/artists/5264gfijccY4lvqa45OVEp",
"type": "artist",
"id": "5264gfijccY4lvqa45OVEp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/39f4a6cec3ccae59ff34f5b1f122cbb6b01d6993",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6f935bebd1d7626e209478a1cba50cacc944cbca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8aa1f51315066f7b27305bf3ef5aaf69b5b3329c",
"width": 64,
"height": 64
}
],
"id": "5MXXmiT2IK7VnwKhBTEoHo"
},
"2wa0kOg4mJ94Iw17Gcv4IL": {
"name": "New Forms",
"release_date": "1997-01-01",
"uri": "spotify:album:2wa0kOg4mJ94Iw17Gcv4IL",
"artists": [
{
"name": "Roni Size",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5UjqeSp9dX6Nrge7WdDukr"
},
"uri": "spotify:artist:5UjqeSp9dX6Nrge7WdDukr",
"href": "https://api.spotify.com/v1/artists/5UjqeSp9dX6Nrge7WdDukr",
"type": "artist",
"id": "5UjqeSp9dX6Nrge7WdDukr"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1a7bcf98990fb9c8fd4dcf615398aef5425eb086",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/ad213325455be4e389360817d4f0e84bb964d811",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/513daefd79cae77d5db0290a24598d0c093259cd",
"width": 64,
"height": 63
}
],
"id": "2wa0kOg4mJ94Iw17Gcv4IL"
},
"2Qs2SpclDToB087fLolhCN": {
"name": "Siamese Dream (2011 - Remaster)",
"release_date": "1993-07-27",
"uri": "spotify:album:2Qs2SpclDToB087fLolhCN",
"artists": [
{
"name": "The Smashing Pumpkins",
"external_urls": {
"spotify": "https://open.spotify.com/artist/40Yq4vzPs9VNUrIBG5Jr2i"
},
"uri": "spotify:artist:40Yq4vzPs9VNUrIBG5Jr2i",
"href": "https://api.spotify.com/v1/artists/40Yq4vzPs9VNUrIBG5Jr2i",
"type": "artist",
"id": "40Yq4vzPs9VNUrIBG5Jr2i"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b728c5cdb49c6976ec318e2451461e95d452a3a1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/86a5fb6d39a889db62b5a8d19c6ca97307962f2c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6d123b8f633862d708015c6adeadd684219d54d8",
"width": 64,
"height": 64
}
],
"id": "2Qs2SpclDToB087fLolhCN"
},
"6GkGI6WUnWSITDCx3y1GAB": {
"name": "Peggy Suicide (Deluxe Edition)",
"release_date": "1991",
"uri": "spotify:album:6GkGI6WUnWSITDCx3y1GAB",
"artists": [
{
"name": "Julian Cope",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5sMku8iI6FH3ypZTErz4kv"
},
"uri": "spotify:artist:5sMku8iI6FH3ypZTErz4kv",
"href": "https://api.spotify.com/v1/artists/5sMku8iI6FH3ypZTErz4kv",
"type": "artist",
"id": "5sMku8iI6FH3ypZTErz4kv"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fed8f43860b57f8120386825737c681ea64cf4b0",
"width": 640,
"height": 589
},
{
"url": "https://i.scdn.co/image/a9481b6b50007f27deca0b786ec842e8cc5f9249",
"width": 300,
"height": 276
},
{
"url": "https://i.scdn.co/image/229e251c12054c2487166cf0272ef95450245422",
"width": 64,
"height": 59
}
],
"id": "6GkGI6WUnWSITDCx3y1GAB"
},
"6FCzvataOZh68j8OKzOt9a": {
"name": "London Calling",
"release_date": "1979",
"uri": "spotify:album:6FCzvataOZh68j8OKzOt9a",
"artists": [
{
"name": "The Clash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3RGLhK1IP9jnYFH4BRFJBS"
},
"uri": "spotify:artist:3RGLhK1IP9jnYFH4BRFJBS",
"href": "https://api.spotify.com/v1/artists/3RGLhK1IP9jnYFH4BRFJBS",
"type": "artist",
"id": "3RGLhK1IP9jnYFH4BRFJBS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a522c89d9d23539071d1f4b334dc2d50cabc3693",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/84ca0f9564ae1eff9163a6a1dfae2a10b1d60a6a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f5dd8399a2d82d776c9da3832b562b532c288201",
"width": 64,
"height": 64
}
],
"id": "6FCzvataOZh68j8OKzOt9a"
},
"5WZFtmADuJUZPtt0NER0Qi": {
"name": "Beggars Banquet",
"release_date": "1968-12-06",
"uri": "spotify:album:5WZFtmADuJUZPtt0NER0Qi",
"artists": [
{
"name": "The Rolling Stones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe"
},
"uri": "spotify:artist:22bE4uQ6baNwSHPVcDxLCe",
"href": "https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe",
"type": "artist",
"id": "22bE4uQ6baNwSHPVcDxLCe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/26eeacf6c54f0221fea60df1d3c520f9ccdbbe45",
"width": 640,
"height": 574
},
{
"url": "https://i.scdn.co/image/a8bd5a7d5ab71a76b998ce256b046e90571de0d3",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/a981f00b6d4d937bbdb91037ab17c19d3ae1432f",
"width": 64,
"height": 57
}
],
"id": "5WZFtmADuJUZPtt0NER0Qi"
},
"2NEQ5Q4sBbUHVVx3Wf8TEZ": {
"name": "Sweet Baby James",
"release_date": "1970",
"uri": "spotify:album:2NEQ5Q4sBbUHVVx3Wf8TEZ",
"artists": [
{
"name": "James Taylor",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0vn7UBvSQECKJm2817Yf1P"
},
"uri": "spotify:artist:0vn7UBvSQECKJm2817Yf1P",
"href": "https://api.spotify.com/v1/artists/0vn7UBvSQECKJm2817Yf1P",
"type": "artist",
"id": "0vn7UBvSQECKJm2817Yf1P"
}
],
"images": [
{
"url": "https://i.scdn.co/image/36115fb8f1c39515cf29eac120c6527b9f531535",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2b02b4223457de6e49eced71745c20e47b0c0a29",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f1544e8ed281b25fe05e9817a9e3046e48743d9d",
"width": 64,
"height": 64
}
],
"id": "2NEQ5Q4sBbUHVVx3Wf8TEZ"
},
"5DXmUb5WnwvBeNJDgXx3sL": {
"name": "A Love Supreme",
"release_date": "1965",
"uri": "spotify:album:5DXmUb5WnwvBeNJDgXx3sL",
"artists": [
{
"name": "John Coltrane",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2hGh5VOeeqimQFxqXvfCUf"
},
"uri": "spotify:artist:2hGh5VOeeqimQFxqXvfCUf",
"href": "https://api.spotify.com/v1/artists/2hGh5VOeeqimQFxqXvfCUf",
"type": "artist",
"id": "2hGh5VOeeqimQFxqXvfCUf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6464a0a863598ff8af2e281375d0217ec33347c7",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/5727cd4a065e14ecbb410a3c7141aff4629c58e9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/14f7e39ffe67f8111c119c5d9502c7db3e445e17",
"width": 64,
"height": 64
}
],
"id": "5DXmUb5WnwvBeNJDgXx3sL"
},
"3B3czVD9TsLfd5mfq4kqRS": {
"name": "Ramone's Solo Performances",
"release_date": "2007-01-01",
"uri": "spotify:album:3B3czVD9TsLfd5mfq4kqRS",
"artists": [
{
"name": "Johnny Ramone, Marky Ramone & Dee Dee Ramone (of The Ramones)",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6u3eqTBC77gibTS60r3pPp"
},
"uri": "spotify:artist:6u3eqTBC77gibTS60r3pPp",
"href": "https://api.spotify.com/v1/artists/6u3eqTBC77gibTS60r3pPp",
"type": "artist",
"id": "6u3eqTBC77gibTS60r3pPp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9231ef0e910509ae268c51a4ca011cec52edba2f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/29297e6a72f9ce8a3ac2f78134a241c5386a9181",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a9db8a0c8039049ed8f36c19390ee6a718fcbc49",
"width": 64,
"height": 64
}
],
"id": "3B3czVD9TsLfd5mfq4kqRS"
},
"70Vuh3jYUMO8LLP5BaqZMb": {
"name": "Let Love Rule",
"release_date": "1989-09-19",
"uri": "spotify:album:70Vuh3jYUMO8LLP5BaqZMb",
"artists": [
{
"name": "Lenny Kravitz",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5gznATMVO85ZcLTkE9ULU7"
},
"uri": "spotify:artist:5gznATMVO85ZcLTkE9ULU7",
"href": "https://api.spotify.com/v1/artists/5gznATMVO85ZcLTkE9ULU7",
"type": "artist",
"id": "5gznATMVO85ZcLTkE9ULU7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/417eed931e4c0af28c64d7adb899d77619438086",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/fb7bce86167f45eb377d80828a38db11e385a9ff",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/798ea10ac3cfbebf30c5e99fbf8cc1c9cdf0bda1",
"width": 64,
"height": 63
}
],
"id": "70Vuh3jYUMO8LLP5BaqZMb"
},
"7HcHPb1P9mubh0vyDdawAv": {
"name": "S&M",
"release_date": "1999-11-23",
"uri": "spotify:album:7HcHPb1P9mubh0vyDdawAv",
"artists": [
{
"name": "Metallica",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ye2Wgw4gimLv2eAKyk1NB"
},
"uri": "spotify:artist:2ye2Wgw4gimLv2eAKyk1NB",
"href": "https://api.spotify.com/v1/artists/2ye2Wgw4gimLv2eAKyk1NB",
"type": "artist",
"id": "2ye2Wgw4gimLv2eAKyk1NB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a4353db27a40a32c0ea022ba8601e2a013d3fb84",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/86e6ad42510e64f3758cd4077bb2955514241865",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e0df187a5559076f65188cee7bc0b47eef2025d0",
"width": 64,
"height": 64
}
],
"id": "7HcHPb1P9mubh0vyDdawAv"
},
"6UkdyvPElK6JDkyeRClbI2": {
"name": "Supa Dupa Fly",
"release_date": "1997-07-11",
"uri": "spotify:album:6UkdyvPElK6JDkyeRClbI2",
"artists": [
{
"name": "Missy Elliott",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2wIVse2owClT7go1WT98tk"
},
"uri": "spotify:artist:2wIVse2owClT7go1WT98tk",
"href": "https://api.spotify.com/v1/artists/2wIVse2owClT7go1WT98tk",
"type": "artist",
"id": "2wIVse2owClT7go1WT98tk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7b8a549ce3759f60a677e822db0004c543998481",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4672587446756df1d5cfcb2858d55405fa27b941",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ca8331b45f430e9827f8f897c244f74cc3c74412",
"width": 64,
"height": 64
}
],
"id": "6UkdyvPElK6JDkyeRClbI2"
},
"6yAq2UFAPa09ebFC8kzF2l": {
"name": "Rubber Soul Unplugged",
"release_date": "2012-12-21",
"uri": "spotify:album:6yAq2UFAPa09ebFC8kzF2l",
"artists": [
{
"name": "The Beatles Covered",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0qVGD3AptaPDfBSDntaBzb"
},
"uri": "spotify:artist:0qVGD3AptaPDfBSDntaBzb",
"href": "https://api.spotify.com/v1/artists/0qVGD3AptaPDfBSDntaBzb",
"type": "artist",
"id": "0qVGD3AptaPDfBSDntaBzb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/edd126dc31fdd769cac2f4115abc7a2326d8ac33",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2fb99fbea6809512b3f203f884a91d786ae3bb6b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a277d78798406191fc68ebbbc33b29ef1f79584b",
"width": 64,
"height": 64
}
],
"id": "6yAq2UFAPa09ebFC8kzF2l"
},
"0rBsmtPnOGz2IYmAqCrbuy": {
"name": "Aladdin Sane (40th Anniversary)",
"release_date": "1973-04-13",
"uri": "spotify:album:0rBsmtPnOGz2IYmAqCrbuy",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7194b26858e4ecb752f71da17776881e52551852",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/110be672ea4167d50dda569504ddea10d4792395",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f6177376845ed344ca494a835a8b4ad1ba3c05f1",
"width": 64,
"height": 64
}
],
"id": "0rBsmtPnOGz2IYmAqCrbuy"
},
"6jf4hF2qwjQL270WMPYxow": {
"name": "Home Is Where The Music Is",
"release_date": "1972",
"uri": "spotify:album:6jf4hF2qwjQL270WMPYxow",
"artists": [
{
"name": "Hugh Masekela",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1b3F5FI7TX4IWTNA4P1kWp"
},
"uri": "spotify:artist:1b3F5FI7TX4IWTNA4P1kWp",
"href": "https://api.spotify.com/v1/artists/1b3F5FI7TX4IWTNA4P1kWp",
"type": "artist",
"id": "1b3F5FI7TX4IWTNA4P1kWp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e010541b766bdc1d0623f30f15f727e708b86b43",
"width": 640,
"height": 577
},
{
"url": "https://i.scdn.co/image/32ab9b86a46e162739d23efde82fcce7c3665873",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/7bd1245b7bc072638b69e40200592317769790fa",
"width": 64,
"height": 58
}
],
"id": "6jf4hF2qwjQL270WMPYxow"
},
"1djwiQ802xeU8Q45jv1b0x": {
"name": "The La's",
"release_date": "1990",
"uri": "spotify:album:1djwiQ802xeU8Q45jv1b0x",
"artists": [
{
"name": "The La's",
"external_urls": {
"spotify": "https://open.spotify.com/artist/47Z8LEl3LnQkcpva0xSthT"
},
"uri": "spotify:artist:47Z8LEl3LnQkcpva0xSthT",
"href": "https://api.spotify.com/v1/artists/47Z8LEl3LnQkcpva0xSthT",
"type": "artist",
"id": "47Z8LEl3LnQkcpva0xSthT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1495ae16b91e5c8c00e31077958ba046fcb4c136",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/13d3196b543a44f58c527819013516caae901bb6",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/fd4cbf34e13300c1dec297c1d11f900a4ce764fb",
"width": 64,
"height": 63
}
],
"id": "1djwiQ802xeU8Q45jv1b0x"
},
"2hf0aTKqdxsobNVda2vvUz": {
"name": "This Is Hardcore Deluxe Edition (2 CD )",
"release_date": "2006-09-01",
"uri": "spotify:album:2hf0aTKqdxsobNVda2vvUz",
"artists": [
{
"name": "Pulp",
"external_urls": {
"spotify": "https://open.spotify.com/artist/36E7oYfz3LLRto6l2WmDcD"
},
"uri": "spotify:artist:36E7oYfz3LLRto6l2WmDcD",
"href": "https://api.spotify.com/v1/artists/36E7oYfz3LLRto6l2WmDcD",
"type": "artist",
"id": "36E7oYfz3LLRto6l2WmDcD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b236ff38c7a8e1e0e68aba9d8e404e697789e0ad",
"width": 640,
"height": 575
},
{
"url": "https://i.scdn.co/image/2fdbc3d8059f6eb7d6e7b80faf923be45ba0ec01",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/fddf704595e1c8ef69ca27893f8af5b01ae5be20",
"width": 64,
"height": 58
}
],
"id": "2hf0aTKqdxsobNVda2vvUz"
},
"5m2MQk77aAXPhwI6Ges8X5": {
"name": "Rust Never Sleeps",
"release_date": "1979-06-27",
"uri": "spotify:album:5m2MQk77aAXPhwI6Ges8X5",
"artists": [
{
"name": "Neil Young & Crazy Horse",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1jVuLlkfKibBT0hXDnzQjp"
},
"uri": "spotify:artist:1jVuLlkfKibBT0hXDnzQjp",
"href": "https://api.spotify.com/v1/artists/1jVuLlkfKibBT0hXDnzQjp",
"type": "artist",
"id": "1jVuLlkfKibBT0hXDnzQjp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0cda30e673dafdebb42793f18fa3ea112fd6b57c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/01244d847df2e994a5474a2a8979715cc8d77a7a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/234dec285c40e65f01f48539ead4d6bf748d8df2",
"width": 64,
"height": 64
}
],
"id": "5m2MQk77aAXPhwI6Ges8X5"
},
"36VJqCEgUg3nj0Eyxtc1av": {
"name": "High Violet (Expanded Edition)",
"release_date": "2010-11-22",
"uri": "spotify:album:36VJqCEgUg3nj0Eyxtc1av",
"artists": [
{
"name": "The National",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2cCUtGK9sDU2EoElnk0GNB"
},
"uri": "spotify:artist:2cCUtGK9sDU2EoElnk0GNB",
"href": "https://api.spotify.com/v1/artists/2cCUtGK9sDU2EoElnk0GNB",
"type": "artist",
"id": "2cCUtGK9sDU2EoElnk0GNB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/afb43da1297469decb43652db44a5583539ba597",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/99577140a121fd62f7b0e098ae7e69c95702901f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7b479b4abd278ccd902b683b66e93ea73307e509",
"width": 64,
"height": 64
}
],
"id": "36VJqCEgUg3nj0Eyxtc1av"
},
"6isi41U6Wdh0JBglB26rKX": {
"name": "Very",
"release_date": "1993-09-27",
"uri": "spotify:album:6isi41U6Wdh0JBglB26rKX",
"artists": [
{
"name": "Pet Shop Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ycnb8Er79LoH2AsR5ldjh"
},
"uri": "spotify:artist:2ycnb8Er79LoH2AsR5ldjh",
"href": "https://api.spotify.com/v1/artists/2ycnb8Er79LoH2AsR5ldjh",
"type": "artist",
"id": "2ycnb8Er79LoH2AsR5ldjh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6d3f6bb6ca1fe9a45cb4bcec044a8d75164bb785",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1d17231c24e4ce7d4e766d9354da055f65991805",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/96ce86e11a409767898e74eb045dbbeef78b2808",
"width": 64,
"height": 64
}
],
"id": "6isi41U6Wdh0JBglB26rKX"
},
"4vqaqoTEbNyeeSHJA6KpdM": {
"name": "Here Are the Sonics",
"release_date": "1965",
"uri": "spotify:album:4vqaqoTEbNyeeSHJA6KpdM",
"artists": [
{
"name": "The Sonics",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2g3PKH7Z1Ofn5oGR6oDjLy"
},
"uri": "spotify:artist:2g3PKH7Z1Ofn5oGR6oDjLy",
"href": "https://api.spotify.com/v1/artists/2g3PKH7Z1Ofn5oGR6oDjLy",
"type": "artist",
"id": "2g3PKH7Z1Ofn5oGR6oDjLy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e7a07ba6460b230291cc571ff3df941183ae9bcf",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d139bfd5bd0a89e6071b81c27b7a8abc994f7181",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a5813ef874c2227e6805e0f2a5df136434ca03b6",
"width": 64,
"height": 64
}
],
"id": "4vqaqoTEbNyeeSHJA6KpdM"
},
"0I7bOh7mYGUEyqCFHU9R0A": {
"name": "Soul Mining",
"release_date": "1983",
"uri": "spotify:album:0I7bOh7mYGUEyqCFHU9R0A",
"artists": [
{
"name": "The The",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7cKtqv9cYVlOwnuCFH95ce"
},
"uri": "spotify:artist:7cKtqv9cYVlOwnuCFH95ce",
"href": "https://api.spotify.com/v1/artists/7cKtqv9cYVlOwnuCFH95ce",
"type": "artist",
"id": "7cKtqv9cYVlOwnuCFH95ce"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c4dcf7dc10a3ce9df25e1ababa33dab597b4a46c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/36c56bed4c81ec4852de7ece042f268d307bb377",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a8b5af11795231db9c98dd24f8f43c2e771f1e7d",
"width": 64,
"height": 64
}
],
"id": "0I7bOh7mYGUEyqCFHU9R0A"
},
"43YIoHKSrEw2GJsWmhZIpu": {
"name": "Born To Run",
"release_date": "1975",
"uri": "spotify:album:43YIoHKSrEw2GJsWmhZIpu",
"artists": [
{
"name": "Bruce Springsteen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT"
},
"uri": "spotify:artist:3eqjTLE0HfPfh78zjh6TqT",
"href": "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT",
"type": "artist",
"id": "3eqjTLE0HfPfh78zjh6TqT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/38f8c2de50ea73d29418b3c7fad2287e1f5fc626",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ae5cc1ad1b55621c1d835c08c7135bcb37f0f903",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5d2e8f5eff8b885c07196e171ca02519b2a49738",
"width": 64,
"height": 64
}
],
"id": "43YIoHKSrEw2GJsWmhZIpu"
},
"2phQN0obJGFy6fLKXlIts6": {
"name": "This Is Fats Domino (Original Album Plus Bonus Tracks, 1957)",
"release_date": "2012-08-31",
"uri": "spotify:album:2phQN0obJGFy6fLKXlIts6",
"artists": [
{
"name": "Fats Domino",
"external_urls": {
"spotify": "https://open.spotify.com/artist/09C0xjtosNAIXP36wTnWxd"
},
"uri": "spotify:artist:09C0xjtosNAIXP36wTnWxd",
"href": "https://api.spotify.com/v1/artists/09C0xjtosNAIXP36wTnWxd",
"type": "artist",
"id": "09C0xjtosNAIXP36wTnWxd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7dec382de8f39fd1b79370ae7ac033d5381c07ec",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1753fb7d8c99249c818a94beba279d9b3165ba2b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ca90416fa41b23b49c9f7bae70b7d7d7e7551ef9",
"width": 64,
"height": 64
}
],
"id": "2phQN0obJGFy6fLKXlIts6"
},
"5NJHGcHNdLURknY2LfzjZg": {
"name": "Surf's Up",
"release_date": "1971-08-30",
"uri": "spotify:album:5NJHGcHNdLURknY2LfzjZg",
"artists": [
{
"name": "The Beach Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3oDbviiivRWhXwIE8hxkVV"
},
"uri": "spotify:artist:3oDbviiivRWhXwIE8hxkVV",
"href": "https://api.spotify.com/v1/artists/3oDbviiivRWhXwIE8hxkVV",
"type": "artist",
"id": "3oDbviiivRWhXwIE8hxkVV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/89b7d42a03ac7593b00edabb06b05c48d12c0345",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0d63cfe4af962b4ea8a8855ae00e658897e1bc09",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d03f95664cb257aaf1e6b3a9c0792fef4a0c075a",
"width": 64,
"height": 64
}
],
"id": "5NJHGcHNdLURknY2LfzjZg"
},
"2TXvjVOhfNjAYpRpODqmVb": {
"name": "Rising Above Bedlam",
"release_date": "1991",
"uri": "spotify:album:2TXvjVOhfNjAYpRpODqmVb",
"artists": [
{
"name": "Jah Wobble's Invaders Of The Heart",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3f2ld0zljQSyarVWTmaYbd"
},
"uri": "spotify:artist:3f2ld0zljQSyarVWTmaYbd",
"href": "https://api.spotify.com/v1/artists/3f2ld0zljQSyarVWTmaYbd",
"type": "artist",
"id": "3f2ld0zljQSyarVWTmaYbd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/61fcd1ddc7f7a3f3dbaff1e150e4784bd6d5e459",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ef159c9d1723553844295505b95444dddf19066b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c7b92ff52d15c4afbf578e290f32e2401ca89c67",
"width": 64,
"height": 64
}
],
"id": "2TXvjVOhfNjAYpRpODqmVb"
},
"22fr5eq3nh5n7MS69kN2wx": {
"name": "Sound Affects (Deluxe Edition)",
"release_date": "1980-11-28",
"uri": "spotify:album:22fr5eq3nh5n7MS69kN2wx",
"artists": [
{
"name": "The Jam",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2P560DaOMNDUACoH8ZhOCR"
},
"uri": "spotify:artist:2P560DaOMNDUACoH8ZhOCR",
"href": "https://api.spotify.com/v1/artists/2P560DaOMNDUACoH8ZhOCR",
"type": "artist",
"id": "2P560DaOMNDUACoH8ZhOCR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c9515d7a62c6fe6c2216334753b7690cfe8ab427",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d4d0be70ab3ec6ec4c0300a2d19dca2e8695ab31",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c49121c0b164ab3bbb38e8b5775ad64fe91c35b9",
"width": 64,
"height": 64
}
],
"id": "22fr5eq3nh5n7MS69kN2wx"
},
"3GCQzHjGHSvtW99n7U7iD8": {
"name": "Vento De Maio",
"release_date": "1998",
"uri": "spotify:album:3GCQzHjGHSvtW99n7U7iD8",
"artists": [
{
"name": "Elis Regina",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0yFvXd36g5sNKYDi0Kkvl8"
},
"uri": "spotify:artist:0yFvXd36g5sNKYDi0Kkvl8",
"href": "https://api.spotify.com/v1/artists/0yFvXd36g5sNKYDi0Kkvl8",
"type": "artist",
"id": "0yFvXd36g5sNKYDi0Kkvl8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ccb84879a8380476d08b1d085c90ed2e69e4a038",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ab1ef8c11d211013fd748317386a4713b8ef0010",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/83c702b7a6de87ebfc0c7434280d849a81b07c82",
"width": 64,
"height": 64
}
],
"id": "3GCQzHjGHSvtW99n7U7iD8"
},
"0kDWc46IZOmh5nF7h8ZKue": {
"name": "Muddy Waters At Newport 1960 (Live)",
"release_date": "1960-01-01",
"uri": "spotify:album:0kDWc46IZOmh5nF7h8ZKue",
"artists": [
{
"name": "Muddy Waters",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4y6J8jwRAwO4dssiSmN91R"
},
"uri": "spotify:artist:4y6J8jwRAwO4dssiSmN91R",
"href": "https://api.spotify.com/v1/artists/4y6J8jwRAwO4dssiSmN91R",
"type": "artist",
"id": "4y6J8jwRAwO4dssiSmN91R"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a45eb513634337dcdf715bdb80bc5820ce9c3207",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a999d36f7c556f3885b05f6399f089ca79b75bbb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2ff01982380aed2a40bda64d110ac518ea3a0f12",
"width": 64,
"height": 64
}
],
"id": "0kDWc46IZOmh5nF7h8ZKue"
},
"22v70dJq6kWS32SkR2c7kd": {
"name": "The Blueprint 3",
"release_date": "2009-01-01",
"uri": "spotify:album:22v70dJq6kWS32SkR2c7kd",
"artists": [
{
"name": "JAY Z",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3nFkdlSjzX9mRTtwJOzDYB"
},
"uri": "spotify:artist:3nFkdlSjzX9mRTtwJOzDYB",
"href": "https://api.spotify.com/v1/artists/3nFkdlSjzX9mRTtwJOzDYB",
"type": "artist",
"id": "3nFkdlSjzX9mRTtwJOzDYB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1474679cf69db23f6d8b98ef3a6dae0aa7e41b2b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5f7ef3aa1d42c5cc1f7c4b6d56fb31e03f245209",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/81d2d5c74282233eb6600e24f1322ed81308327e",
"width": 64,
"height": 64
}
],
"id": "22v70dJq6kWS32SkR2c7kd"
},
"5EvsfavFbWpzcg3VNLQEOF": {
"name": "INSPIRATION INFORMATION",
"release_date": "1974",
"uri": "spotify:album:5EvsfavFbWpzcg3VNLQEOF",
"artists": [
{
"name": "Shuggie Otis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4YHtIE7FI8ITfekzzN5Jpl"
},
"uri": "spotify:artist:4YHtIE7FI8ITfekzzN5Jpl",
"href": "https://api.spotify.com/v1/artists/4YHtIE7FI8ITfekzzN5Jpl",
"type": "artist",
"id": "4YHtIE7FI8ITfekzzN5Jpl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d1dff0c3f091e836426360784b424da1e9b5d458",
"width": 640,
"height": 635
},
{
"url": "https://i.scdn.co/image/626bbd1ddc3be50690c172956e17f7eb5c110388",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/c1773f8a1853140260c4085fa10ba327c20db2e3",
"width": 64,
"height": 63
}
],
"id": "5EvsfavFbWpzcg3VNLQEOF"
},
"7Ce9F1Eof9r7u9tr702H5C": {
"name": "Felt Mountain",
"release_date": "2000",
"uri": "spotify:album:7Ce9F1Eof9r7u9tr702H5C",
"artists": [
{
"name": "Goldfrapp",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5BKsn7SCN2XmbF7apdCpRS"
},
"uri": "spotify:artist:5BKsn7SCN2XmbF7apdCpRS",
"href": "https://api.spotify.com/v1/artists/5BKsn7SCN2XmbF7apdCpRS",
"type": "artist",
"id": "5BKsn7SCN2XmbF7apdCpRS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3e37b8c206eceb4dc5f064f2a86de0fc562b7f1d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4e25aaca94965011715c2a574a54cf295c365916",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0a6d842c8169ad0e52e5ed7a561b4eb1b303023d",
"width": 64,
"height": 64
}
],
"id": "7Ce9F1Eof9r7u9tr702H5C"
},
"1Qo7LnY9VsqcQ75YbO8JEs": {
"name": "Teenage Head",
"release_date": "1971",
"uri": "spotify:album:1Qo7LnY9VsqcQ75YbO8JEs",
"artists": [
{
"name": "Flamin' Groovies",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3yesh1QeNXucaDFw8ZPKxd"
},
"uri": "spotify:artist:3yesh1QeNXucaDFw8ZPKxd",
"href": "https://api.spotify.com/v1/artists/3yesh1QeNXucaDFw8ZPKxd",
"type": "artist",
"id": "3yesh1QeNXucaDFw8ZPKxd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5fea23253c6738a137b87b4d668936fb4933da0f",
"width": 631,
"height": 640
},
{
"url": "https://i.scdn.co/image/4a1c311d344394b66537af268b27e87242e95b09",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/61a3e5094fdbe929f4f3261d40b769e2e95d0b71",
"width": 63,
"height": 64
}
],
"id": "1Qo7LnY9VsqcQ75YbO8JEs"
},
"2yFbw2SIBZ7ExIBRVoFkJJ": {
"name": "Faust IV",
"release_date": "2006-04-24",
"uri": "spotify:album:2yFbw2SIBZ7ExIBRVoFkJJ",
"artists": [
{
"name": "Faust",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4yBBNmdvVaoPEnr2lt14q7"
},
"uri": "spotify:artist:4yBBNmdvVaoPEnr2lt14q7",
"href": "https://api.spotify.com/v1/artists/4yBBNmdvVaoPEnr2lt14q7",
"type": "artist",
"id": "4yBBNmdvVaoPEnr2lt14q7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1e1d60a8e968cd73fd8a9ff25e4e527626e08fc9",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/f73b81fe336071103af18a69890295b20be67137",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f7df719a77ca4b3b9606bfd30353f38b5e04f2d5",
"width": 64,
"height": 64
}
],
"id": "2yFbw2SIBZ7ExIBRVoFkJJ"
},
"5viZ5HyYtV0wafK7DoXmgF": {
"name": "Double Nickels On The Dime",
"release_date": "1984",
"uri": "spotify:album:5viZ5HyYtV0wafK7DoXmgF",
"artists": [
{
"name": "Minutemen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0z6zRFzl5njXWLVAisXQBz"
},
"uri": "spotify:artist:0z6zRFzl5njXWLVAisXQBz",
"href": "https://api.spotify.com/v1/artists/0z6zRFzl5njXWLVAisXQBz",
"type": "artist",
"id": "0z6zRFzl5njXWLVAisXQBz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/499b4f3d117012c5e2d32c451affa78450ade364",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c818a295b61d042a9aeed08a2ef144bcf5755590",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/361e1a769ab06e1ead37a9006a68bf43e38ffa99",
"width": 64,
"height": 64
}
],
"id": "5viZ5HyYtV0wafK7DoXmgF"
},
"1pHo7X82cTObgZll65R1rW": {
"name": "Harvest",
"release_date": "1972-02-14",
"uri": "spotify:album:1pHo7X82cTObgZll65R1rW",
"artists": [
{
"name": "Neil Young",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6v8FB84lnmJs434UJf2Mrm"
},
"uri": "spotify:artist:6v8FB84lnmJs434UJf2Mrm",
"href": "https://api.spotify.com/v1/artists/6v8FB84lnmJs434UJf2Mrm",
"type": "artist",
"id": "6v8FB84lnmJs434UJf2Mrm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b4fbcc661f50babf44bd8c68c3d6e574739bd95a",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/644ae2a5d92b559a8d7714f7a5de305afa317fb8",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/23250729dffb370005019c807ecbc69cbaa0e9e2",
"width": 64,
"height": 63
}
],
"id": "1pHo7X82cTObgZll65R1rW"
},
"3a0UOgDWw2pTajw85QPMiz": {
"name": "The Dark Side Of The Moon [2011 - Remaster] (2011 Remastered Version)",
"release_date": "1973-03-01",
"uri": "spotify:album:3a0UOgDWw2pTajw85QPMiz",
"artists": [
{
"name": "Pink Floyd",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0k17h0D3J5VfsdmQ1iZtE9"
},
"uri": "spotify:artist:0k17h0D3J5VfsdmQ1iZtE9",
"href": "https://api.spotify.com/v1/artists/0k17h0D3J5VfsdmQ1iZtE9",
"type": "artist",
"id": "0k17h0D3J5VfsdmQ1iZtE9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cee9e4e565ff57f338222d8cbf05b7d19080b6e8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c61eee6e4322b187faf78e94b72979d831a60f4e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a81408cd6fd303da7c5f1fe26f5eea49a4665d60",
"width": 64,
"height": 64
}
],
"id": "3a0UOgDWw2pTajw85QPMiz"
},
"5dVZpNJraoqCo3BssinMoo": {
"name": "Fear Of Music (Deluxe Version)",
"release_date": "1979-08-03",
"uri": "spotify:album:5dVZpNJraoqCo3BssinMoo",
"artists": [
{
"name": "Talking Heads",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2x9SpqnPi8rlE9pjHBwmSC"
},
"uri": "spotify:artist:2x9SpqnPi8rlE9pjHBwmSC",
"href": "https://api.spotify.com/v1/artists/2x9SpqnPi8rlE9pjHBwmSC",
"type": "artist",
"id": "2x9SpqnPi8rlE9pjHBwmSC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/89a94e9dcc3988dea066f3094fb0a1eb8ba3b850",
"width": 640,
"height": 570
},
{
"url": "https://i.scdn.co/image/18c02c43c76a8c6ad873f3575bfb4f297ee183fd",
"width": 300,
"height": 267
},
{
"url": "https://i.scdn.co/image/eb3771db04fe42739f3b915af2fddc6b66db6932",
"width": 64,
"height": 57
}
],
"id": "5dVZpNJraoqCo3BssinMoo"
},
"0B9F4PVtJGSaQSQRs044Dl": {
"name": "Germ Free Adolescents",
"release_date": "2009",
"uri": "spotify:album:0B9F4PVtJGSaQSQRs044Dl",
"artists": [
{
"name": "X-Ray Spex",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5BgWMOdEUJYdUBH3WXfMWt"
},
"uri": "spotify:artist:5BgWMOdEUJYdUBH3WXfMWt",
"href": "https://api.spotify.com/v1/artists/5BgWMOdEUJYdUBH3WXfMWt",
"type": "artist",
"id": "5BgWMOdEUJYdUBH3WXfMWt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/51163bfa4b867f74dd33b36a7220f57fc38ebc75",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b8baec9859ab0ced3518bee8a36ea95cc775c1ce",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f868676a3e292b62d7f0d7c561d0052cc5dc9a95",
"width": 64,
"height": 64
}
],
"id": "0B9F4PVtJGSaQSQRs044Dl"
},
"5bqtZRbUZUxUps8mrO9tGY": {
"name": "British Steel",
"release_date": "1980",
"uri": "spotify:album:5bqtZRbUZUxUps8mrO9tGY",
"artists": [
{
"name": "Judas Priest",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2tRsMl4eGxwoNabM08Dm4I"
},
"uri": "spotify:artist:2tRsMl4eGxwoNabM08Dm4I",
"href": "https://api.spotify.com/v1/artists/2tRsMl4eGxwoNabM08Dm4I",
"type": "artist",
"id": "2tRsMl4eGxwoNabM08Dm4I"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2a9886e798c02d28be1841ee00d63106f7051bd0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4e457a6c048eff0456d83077be966d2182e77c33",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/de4f6ebd3be62482ea55ca572d5786e2a6748d11",
"width": 64,
"height": 64
}
],
"id": "5bqtZRbUZUxUps8mrO9tGY"
},
"1pbv5B5KgzK25qbMSxomr0": {
"name": "Clandestino",
"release_date": "1998",
"uri": "spotify:album:1pbv5B5KgzK25qbMSxomr0",
"artists": [
{
"name": "Manu Chao",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6wH6iStAh4KIaWfuhf0NYM"
},
"uri": "spotify:artist:6wH6iStAh4KIaWfuhf0NYM",
"href": "https://api.spotify.com/v1/artists/6wH6iStAh4KIaWfuhf0NYM",
"type": "artist",
"id": "6wH6iStAh4KIaWfuhf0NYM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dfb49ebb87fa47a24b29defbb1a2e00425ccf20c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d94d7574dc978fb44ea6783294ab064033aeed63",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/28114312a1bdb00096122c0bd64f2d9d6093b545",
"width": 64,
"height": 64
}
],
"id": "1pbv5B5KgzK25qbMSxomr0"
},
"5ShmAjEGEkWROooVfA0Amb": {
"name": "Juju (Remastered & Expanded)",
"release_date": "1981",
"uri": "spotify:album:5ShmAjEGEkWROooVfA0Amb",
"artists": [
{
"name": "Siouxsie And The Banshees",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1n65zfwYIj5kKEtNgxUlWb"
},
"uri": "spotify:artist:1n65zfwYIj5kKEtNgxUlWb",
"href": "https://api.spotify.com/v1/artists/1n65zfwYIj5kKEtNgxUlWb",
"type": "artist",
"id": "1n65zfwYIj5kKEtNgxUlWb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e1f93c4ead808a910416558aef15570124ade412",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/6c7cb961e2c95eaad94a9c529d131a14b2b666f6",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/e802352555b46cc74e4e54207cd442e6b6d53e19",
"width": 64,
"height": 63
}
],
"id": "5ShmAjEGEkWROooVfA0Amb"
},
"1NZ8YBYnruBPeKLuvTBARx": {
"name": "Buenas Noches From A Lonely Room",
"release_date": "1988",
"uri": "spotify:album:1NZ8YBYnruBPeKLuvTBARx",
"artists": [
{
"name": "Dwight Yoakam",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2sxmKe3CUrWnx7eoXMhOlW"
},
"uri": "spotify:artist:2sxmKe3CUrWnx7eoXMhOlW",
"href": "https://api.spotify.com/v1/artists/2sxmKe3CUrWnx7eoXMhOlW",
"type": "artist",
"id": "2sxmKe3CUrWnx7eoXMhOlW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5263e2013669dc6e1e5e2deb6b054013b8000865",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/758f9ae8cbb7a88120f93bdf4fd05cbd1cc85ab3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/279dd0e13aae09fcdfbc8ab428fd7adbb4d8a671",
"width": 64,
"height": 64
}
],
"id": "1NZ8YBYnruBPeKLuvTBARx"
},
"1p12OAWwudgMqfMzjMvl2a": {
"name": "The Low End Theory",
"release_date": "1991-09-24",
"uri": "spotify:album:1p12OAWwudgMqfMzjMvl2a",
"artists": [
{
"name": "A Tribe Called Quest",
"external_urls": {
"spotify": "https://open.spotify.com/artist/09hVIj6vWgoCDtT03h8ZCa"
},
"uri": "spotify:artist:09hVIj6vWgoCDtT03h8ZCa",
"href": "https://api.spotify.com/v1/artists/09hVIj6vWgoCDtT03h8ZCa",
"type": "artist",
"id": "09hVIj6vWgoCDtT03h8ZCa"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e2ec84a0b68bc50ae1c8366e9ea00c91f4a39c17",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/b6b9740d104cf31a9c2cd30be1374167f2e4179b",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/98fc865cc040c67db070be611ecb01060bec0444",
"width": 64,
"height": 64
}
],
"id": "1p12OAWwudgMqfMzjMvl2a"
},
"0hFWapnP7orzXCMwNU5DuA": {
"name": "All Hope Is Gone",
"release_date": "2008-08-22",
"uri": "spotify:album:0hFWapnP7orzXCMwNU5DuA",
"artists": [
{
"name": "Slipknot",
"external_urls": {
"spotify": "https://open.spotify.com/artist/05fG473iIaoy82BF1aGhL8"
},
"uri": "spotify:artist:05fG473iIaoy82BF1aGhL8",
"href": "https://api.spotify.com/v1/artists/05fG473iIaoy82BF1aGhL8",
"type": "artist",
"id": "05fG473iIaoy82BF1aGhL8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a7049dcc2f66fe38a36fec7b51633f4512345927",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/71678257b3f85b915d932500ec897d3c0d0ab02d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e3d73856d862886a1409b45f0549532d8f6a4dbf",
"width": 64,
"height": 64
}
],
"id": "0hFWapnP7orzXCMwNU5DuA"
},
"4Qgz29mI2wJFD1tbnXqj7V": {
"name": "The Piper At The Gates Of Dawn [2011 - Remaster] (2011 Remastered Version)",
"release_date": "1967-08-05",
"uri": "spotify:album:4Qgz29mI2wJFD1tbnXqj7V",
"artists": [
{
"name": "Pink Floyd",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0k17h0D3J5VfsdmQ1iZtE9"
},
"uri": "spotify:artist:0k17h0D3J5VfsdmQ1iZtE9",
"href": "https://api.spotify.com/v1/artists/0k17h0D3J5VfsdmQ1iZtE9",
"type": "artist",
"id": "0k17h0D3J5VfsdmQ1iZtE9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7fdbd342a1cb9680a3471e684f7f97da51f737ac",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/78464d995485d97222eca3b057ba577496a47836",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b715a425f3f147694c6a22cd9d8a2059e710bc83",
"width": 64,
"height": 64
}
],
"id": "4Qgz29mI2wJFD1tbnXqj7V"
},
"630o1rKTDsLeIPreOY1jqP": {
"name": "Marquee Moon",
"release_date": "1977-02-08",
"uri": "spotify:album:630o1rKTDsLeIPreOY1jqP",
"artists": [
{
"name": "Television",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0S7Zur2g8YhqlzqtlYStli"
},
"uri": "spotify:artist:0S7Zur2g8YhqlzqtlYStli",
"href": "https://api.spotify.com/v1/artists/0S7Zur2g8YhqlzqtlYStli",
"type": "artist",
"id": "0S7Zur2g8YhqlzqtlYStli"
}
],
"images": [
{
"url": "https://i.scdn.co/image/84a609609c0ff7efe635a3faeb7bf9bbbec92681",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/71974d61e6a75e0de7e0196574d138fdc2b6614d",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/93d03549bc586fedf159106215a30538501cacf5",
"width": 64,
"height": 64
}
],
"id": "630o1rKTDsLeIPreOY1jqP"
},
"6YhvR14clg0yibdTKB5aBv": {
"name": "Back At The Chicken Shack",
"release_date": "1960",
"uri": "spotify:album:6YhvR14clg0yibdTKB5aBv",
"artists": [
{
"name": "Jimmy Smith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5GXruybcLmXPjR9rKKFyS6"
},
"uri": "spotify:artist:5GXruybcLmXPjR9rKKFyS6",
"href": "https://api.spotify.com/v1/artists/5GXruybcLmXPjR9rKKFyS6",
"type": "artist",
"id": "5GXruybcLmXPjR9rKKFyS6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/168c0ca328678e9ad092d4c0aa09427e68e06ebe",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d134231706dd69f75f286d4c9cc0b8e2686cca79",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/38d222a0ff1b98c1b19560fefc50fedb5e40c3e8",
"width": 64,
"height": 64
}
],
"id": "6YhvR14clg0yibdTKB5aBv"
},
"2ZFCR4pxXNKfPFUzzMw8X1": {
"name": "Gasoline Alley",
"release_date": "1970-01-01",
"uri": "spotify:album:2ZFCR4pxXNKfPFUzzMw8X1",
"artists": [
{
"name": "Rod Stewart",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2y8Jo9CKhJvtfeKOsYzRdT"
},
"uri": "spotify:artist:2y8Jo9CKhJvtfeKOsYzRdT",
"href": "https://api.spotify.com/v1/artists/2y8Jo9CKhJvtfeKOsYzRdT",
"type": "artist",
"id": "2y8Jo9CKhJvtfeKOsYzRdT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ef0600346b12ea1662a29add098ceeaaa927a026",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/596c078d2435b6ddbdab5092d7bf4b5e63bd308c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f92893944f73afb9ecbb054c9e1579bb6b8340ac",
"width": 64,
"height": 64
}
],
"id": "2ZFCR4pxXNKfPFUzzMw8X1"
},
"17k01Y7uKSVOrnyEZPOqKR": {
"name": "American IV: The Man Comes Around",
"release_date": "2002-10-29",
"uri": "spotify:album:17k01Y7uKSVOrnyEZPOqKR",
"artists": [
{
"name": "Johnny Cash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x"
},
"uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x",
"href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x",
"type": "artist",
"id": "6kACVPfCOnqzgfEF5ryl0x"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ff4252fe10563380a58cd7ec98e571291a64ce39",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/66fd30da44cd9a21d402513f1ed0edf5e1a77c4b",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/741e67159be990445200f821c702f893cf52215e",
"width": 64,
"height": 64
}
],
"id": "17k01Y7uKSVOrnyEZPOqKR"
},
"4kca7vXd1Wo5GE2DMafvMc": {
"name": "Songs For Swingin' Lovers!",
"release_date": "1956",
"uri": "spotify:album:4kca7vXd1Wo5GE2DMafvMc",
"artists": [
{
"name": "Frank Sinatra",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1Mxqyy3pSjf8kZZL4QVxS0"
},
"uri": "spotify:artist:1Mxqyy3pSjf8kZZL4QVxS0",
"href": "https://api.spotify.com/v1/artists/1Mxqyy3pSjf8kZZL4QVxS0",
"type": "artist",
"id": "1Mxqyy3pSjf8kZZL4QVxS0"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d266bc7bfdbd7ae6b15c529068e9035cf5e7427f",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/d26a832b18ad9ae75dbbffed89a5e157c70861bc",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/a16b1054ebc14408845e0466b2315d3bc73ffeea",
"width": 64,
"height": 64
}
],
"id": "4kca7vXd1Wo5GE2DMafvMc"
},
"6DvxgXySoAVKEeQ80xnQ4i": {
"name": "Connected",
"release_date": "1992-01-01",
"uri": "spotify:album:6DvxgXySoAVKEeQ80xnQ4i",
"artists": [
{
"name": "Stereo MC's",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1k8VBufn1nBs8LN9n4snc8"
},
"uri": "spotify:artist:1k8VBufn1nBs8LN9n4snc8",
"href": "https://api.spotify.com/v1/artists/1k8VBufn1nBs8LN9n4snc8",
"type": "artist",
"id": "1k8VBufn1nBs8LN9n4snc8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3810efd2494037f419a6aa7321d087acc84d3839",
"width": 629,
"height": 640
},
{
"url": "https://i.scdn.co/image/eac1cd94e6a21bbd16867a342402c3c84a6a7c70",
"width": 295,
"height": 300
},
{
"url": "https://i.scdn.co/image/a7d9aa8badb692c55d41832b78c6a1839ef90c35",
"width": 63,
"height": 64
}
],
"id": "6DvxgXySoAVKEeQ80xnQ4i"
},
"34aFnrFRBlErcbU6moRZR3": {
"name": "Damaged",
"release_date": "1981",
"uri": "spotify:album:34aFnrFRBlErcbU6moRZR3",
"artists": [
{
"name": "Black Flag",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5Mhs3Eu8lU6sRCtRYsmABV"
},
"uri": "spotify:artist:5Mhs3Eu8lU6sRCtRYsmABV",
"href": "https://api.spotify.com/v1/artists/5Mhs3Eu8lU6sRCtRYsmABV",
"type": "artist",
"id": "5Mhs3Eu8lU6sRCtRYsmABV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/22598575dfb5120129481e7e840bc0c5e27ebc2e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2e51f75e84a6c25816c3a785b38fd8d5d0f04718",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/258b3a28f8097e9486cf080aa0447fcbe5888fd5",
"width": 64,
"height": 64
}
],
"id": "34aFnrFRBlErcbU6moRZR3"
},
"427BvOYZQRjTHODnreiZCo": {
"name": "Manassas",
"release_date": "1972",
"uri": "spotify:album:427BvOYZQRjTHODnreiZCo",
"artists": [
{
"name": "Stephen Stills",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4WlSvDKaq1PA2Nr7cCIPxX"
},
"uri": "spotify:artist:4WlSvDKaq1PA2Nr7cCIPxX",
"href": "https://api.spotify.com/v1/artists/4WlSvDKaq1PA2Nr7cCIPxX",
"type": "artist",
"id": "4WlSvDKaq1PA2Nr7cCIPxX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6c7e054cbb744e6b547c77fc4bdb09fdba24cd91",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0df54136c1ef2a4efaca306f1ca5ae2f1eab523c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6cc2209b543ae38306f5d8d8bf10ab8b090ad3eb",
"width": 64,
"height": 64
}
],
"id": "427BvOYZQRjTHODnreiZCo"
},
"6Hh2XrY2Yuse8omAzSabdp": {
"name": "Leftism",
"release_date": "1995",
"uri": "spotify:album:6Hh2XrY2Yuse8omAzSabdp",
"artists": [
{
"name": "Leftfield",
"external_urls": {
"spotify": "https://open.spotify.com/artist/72hqBMsw7x5jnfxxwkii8L"
},
"uri": "spotify:artist:72hqBMsw7x5jnfxxwkii8L",
"href": "https://api.spotify.com/v1/artists/72hqBMsw7x5jnfxxwkii8L",
"type": "artist",
"id": "72hqBMsw7x5jnfxxwkii8L"
}
],
"images": [
{
"url": "https://i.scdn.co/image/392afafc23bc58d7db40d30ed1533ddf8f3c4c25",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6a5c1a6fd23dd0e3acce1e18ece4f5e687736731",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/43514c4c0dc0ba86122cc65d4591d88d478d99f5",
"width": 64,
"height": 64
}
],
"id": "6Hh2XrY2Yuse8omAzSabdp"
},
"0o1uFxZ1VTviqvNaYkTJek": {
"name": "The Freewheelin' Bob Dylan",
"release_date": "1963-05-27",
"uri": "spotify:album:0o1uFxZ1VTviqvNaYkTJek",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ddde54f8e79714523603388c3f76d136539bdb56",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/48950e52d435e6993a3b2e3dbcaecd825e4a595b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6cc031899ed09ec6887ff9ff6676451f9d257e8c",
"width": 64,
"height": 64
}
],
"id": "0o1uFxZ1VTviqvNaYkTJek"
},
"5OMRsoc2rgjoGXQEESeu80": {
"name": "Africa Brasil",
"release_date": "1976-01-01",
"uri": "spotify:album:5OMRsoc2rgjoGXQEESeu80",
"artists": [
{
"name": "Jorge Ben Jor",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5JYtpnUKxAzXfHEYpOeeit"
},
"uri": "spotify:artist:5JYtpnUKxAzXfHEYpOeeit",
"href": "https://api.spotify.com/v1/artists/5JYtpnUKxAzXfHEYpOeeit",
"type": "artist",
"id": "5JYtpnUKxAzXfHEYpOeeit"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bea9798f27bc1d2943cb57a6c99d31eb28706bb1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2b78959aeaf66aa1889a2afb819f18ba9e585c50",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/820d7a5f495adddefe70ed6b10365e849380ed51",
"width": 64,
"height": 64
}
],
"id": "5OMRsoc2rgjoGXQEESeu80"
},
"6mCuFwJ9yOf6XJOB9hMvnB": {
"name": "Oedipus Schmoedipus",
"release_date": "1996",
"uri": "spotify:album:6mCuFwJ9yOf6XJOB9hMvnB",
"artists": [
{
"name": "Barry Adamson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4xoV3kh3rwrWaPc17zyDyY"
},
"uri": "spotify:artist:4xoV3kh3rwrWaPc17zyDyY",
"href": "https://api.spotify.com/v1/artists/4xoV3kh3rwrWaPc17zyDyY",
"type": "artist",
"id": "4xoV3kh3rwrWaPc17zyDyY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b8b759d9aa8467561a550c440063327b1eaaed0b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/654106fe5d0cd1ed331079d9128f6a73faf5c465",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d77b14e613e8b8c9b927fe4164165ba9e9f1230b",
"width": 64,
"height": 64
}
],
"id": "6mCuFwJ9yOf6XJOB9hMvnB"
},
"1JvoMzqg04nC29gam4Qaiq": {
"name": "Come Away With Me",
"release_date": "2002-02-26",
"uri": "spotify:album:1JvoMzqg04nC29gam4Qaiq",
"artists": [
{
"name": "Norah Jones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2Kx7MNY7cI1ENniW7vT30N"
},
"uri": "spotify:artist:2Kx7MNY7cI1ENniW7vT30N",
"href": "https://api.spotify.com/v1/artists/2Kx7MNY7cI1ENniW7vT30N",
"type": "artist",
"id": "2Kx7MNY7cI1ENniW7vT30N"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dbbec299844faf0b4d905a84cda75d7afd20c891",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b82ae5622075fa43ddecf556de69ca89ea24961a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f928c684c38dabd504092c64a72877771f7c07d7",
"width": 64,
"height": 64
}
],
"id": "1JvoMzqg04nC29gam4Qaiq"
},
"49LA20VMk65fQyEaIzYdvf": {
"name": "Yoshimi Battles The Pink Robots",
"release_date": "2002-05-13",
"uri": "spotify:album:49LA20VMk65fQyEaIzYdvf",
"artists": [
{
"name": "The Flaming Lips",
"external_urls": {
"spotify": "https://open.spotify.com/artist/16eRpMNXSQ15wuJoeqguaB"
},
"uri": "spotify:artist:16eRpMNXSQ15wuJoeqguaB",
"href": "https://api.spotify.com/v1/artists/16eRpMNXSQ15wuJoeqguaB",
"type": "artist",
"id": "16eRpMNXSQ15wuJoeqguaB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4673ce413797dd6e0076735d5c48a8d5d8c2e0ac",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2a86248a6ce38d85133b0a49832f3d3ebb3ceac1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/375e0691e33321e72e325c2f1de101864b776d0a",
"width": 64,
"height": 64
}
],
"id": "49LA20VMk65fQyEaIzYdvf"
},
"6YabPKtZAjxwyWbuO9p4ZD": {
"name": "Highway 61 Revisited",
"release_date": "1965-08-30",
"uri": "spotify:album:6YabPKtZAjxwyWbuO9p4ZD",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4475b6e95cd5c153cf89f49daa3a85b939359690",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/70188a3795fe296d98539cc2f2ec48f7efb68c22",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6a7d28341ed202ba76e647a802d110fd7b53cfdd",
"width": 64,
"height": 64
}
],
"id": "6YabPKtZAjxwyWbuO9p4ZD"
},
"26w2aZwxfX6MCP5jkt18P9": {
"name": "Copper Blue [Deluxe Edition]",
"release_date": "2012-05-28",
"uri": "spotify:album:26w2aZwxfX6MCP5jkt18P9",
"artists": [
{
"name": "Sugar",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4DD6xBZ1INIT3yGJRQLzej"
},
"uri": "spotify:artist:4DD6xBZ1INIT3yGJRQLzej",
"href": "https://api.spotify.com/v1/artists/4DD6xBZ1INIT3yGJRQLzej",
"type": "artist",
"id": "4DD6xBZ1INIT3yGJRQLzej"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1d5b5a53c7e4ea7435b4d20e48da015a28549b13",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5d3e7c7fe298bc22060b0f9e6c746e0b85407a7f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ac1c9bf8fb28988209932121069d1fda4a2f8751",
"width": 64,
"height": 64
}
],
"id": "26w2aZwxfX6MCP5jkt18P9"
},
"1XG6LCgenqe1bgkG3u2cHA": {
"name": "Wild Is The Wind",
"release_date": "1966-01-01",
"uri": "spotify:album:1XG6LCgenqe1bgkG3u2cHA",
"artists": [
{
"name": "Nina Simone",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7G1GBhoKtEPnP86X2PvEYO"
},
"uri": "spotify:artist:7G1GBhoKtEPnP86X2PvEYO",
"href": "https://api.spotify.com/v1/artists/7G1GBhoKtEPnP86X2PvEYO",
"type": "artist",
"id": "7G1GBhoKtEPnP86X2PvEYO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ed5720f09881a9e0e6f86f821bc939b6adf21259",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/c863204a11f07cbce562771acdf73e7dc02e9906",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/53ed8c0b8ad75981d2dacd7046dbc324f3ed39df",
"width": 64,
"height": 63
}
],
"id": "1XG6LCgenqe1bgkG3u2cHA"
},
"3QyqhSxACBlGzsai7TqB1G": {
"name": "This Year's Model",
"release_date": "1978-01-01",
"uri": "spotify:album:3QyqhSxACBlGzsai7TqB1G",
"artists": [
{
"name": "Elvis Costello & The Attractions",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4qmHkMxr6pTWh5Zo74odpH"
},
"uri": "spotify:artist:4qmHkMxr6pTWh5Zo74odpH",
"href": "https://api.spotify.com/v1/artists/4qmHkMxr6pTWh5Zo74odpH",
"type": "artist",
"id": "4qmHkMxr6pTWh5Zo74odpH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a904df3c8a5b4ade5e465b7fd7037335a46a4a0f",
"width": 640,
"height": 576
},
{
"url": "https://i.scdn.co/image/317126abc2cd089cfc2d9446b202a93d20edc790",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/07a2c8513acaca142707ab47d158557cd115759a",
"width": 64,
"height": 58
}
],
"id": "3QyqhSxACBlGzsai7TqB1G"
},
"6347aGYak5Dsi0hwPMMpmj": {
"name": "Giant Steps",
"release_date": "1993-08-13",
"uri": "spotify:album:6347aGYak5Dsi0hwPMMpmj",
"artists": [
{
"name": "The Boo Radleys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6UYwzZChuolxsylHcZcBBP"
},
"uri": "spotify:artist:6UYwzZChuolxsylHcZcBBP",
"href": "https://api.spotify.com/v1/artists/6UYwzZChuolxsylHcZcBBP",
"type": "artist",
"id": "6UYwzZChuolxsylHcZcBBP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1dc17d3b5ba66cb8ac9009f7e08528705f29f13a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/612e3324ef7726b370bb86acc9328d5c8be57304",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/82cd548a6c61d357e504cceb0e72b2e9d6c76ffd",
"width": 64,
"height": 64
}
],
"id": "6347aGYak5Dsi0hwPMMpmj"
},
"5dN7F9DV0Qg1XRdIgW8rke": {
"name": "American Idiot",
"release_date": "2004-09-21",
"uri": "spotify:album:5dN7F9DV0Qg1XRdIgW8rke",
"artists": [
{
"name": "Green Day",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7oPftvlwr6VrsViSDV7fJY"
},
"uri": "spotify:artist:7oPftvlwr6VrsViSDV7fJY",
"href": "https://api.spotify.com/v1/artists/7oPftvlwr6VrsViSDV7fJY",
"type": "artist",
"id": "7oPftvlwr6VrsViSDV7fJY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/650afb8a0b8660462fa707c2bec4a427b17f329f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/329423c0d0435d8a29c91689f48c4b6a3c067575",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0a652bf1398c7b303a2572863275d78bf43ee37e",
"width": 64,
"height": 64
}
],
"id": "5dN7F9DV0Qg1XRdIgW8rke"
},
"0TTt6Qm26MyMKv0EM2BKAa": {
"name": "AmeriKKKa's Most Wanted",
"release_date": "1990-05-16",
"uri": "spotify:album:0TTt6Qm26MyMKv0EM2BKAa",
"artists": [
{
"name": "Ice Cube",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Mcii5XWf6E0lrY3Uky4cA"
},
"uri": "spotify:artist:3Mcii5XWf6E0lrY3Uky4cA",
"href": "https://api.spotify.com/v1/artists/3Mcii5XWf6E0lrY3Uky4cA",
"type": "artist",
"id": "3Mcii5XWf6E0lrY3Uky4cA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/73b8ce6a52e73f5044289d1f64c377ae4bb1fbc2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b1a70df5d1229cb1ac916f28f3b6a1a32fc9c469",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cd62cb09f4022225c8883530e390cb2cfbce031b",
"width": 64,
"height": 64
}
],
"id": "0TTt6Qm26MyMKv0EM2BKAa"
},
"1HikauozonmM2vgsgGFeDk": {
"name": "Street Life",
"release_date": "1979-01-01",
"uri": "spotify:album:1HikauozonmM2vgsgGFeDk",
"artists": [
{
"name": "The Crusaders",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Bhgbs9kIwl8SuU0eIqN6b"
},
"uri": "spotify:artist:3Bhgbs9kIwl8SuU0eIqN6b",
"href": "https://api.spotify.com/v1/artists/3Bhgbs9kIwl8SuU0eIqN6b",
"type": "artist",
"id": "3Bhgbs9kIwl8SuU0eIqN6b"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fa41d914020feb22e6f22ac1f0b5214beb60a999",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4a4d2c6cc47c4d1c67ee5aad6c3afd5029dddcb3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bd4a96f723a40b4b947a5a4961a6b8977ddcbed4",
"width": 64,
"height": 64
}
],
"id": "1HikauozonmM2vgsgGFeDk"
},
"59RclwjkzMJTJZNxrfGdLC": {
"name": "Country Life",
"release_date": "1974-11-01",
"uri": "spotify:album:59RclwjkzMJTJZNxrfGdLC",
"artists": [
{
"name": "Roxy Music",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3fhOTtm0LBJ3Ojn4hIljLo"
},
"uri": "spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo",
"href": "https://api.spotify.com/v1/artists/3fhOTtm0LBJ3Ojn4hIljLo",
"type": "artist",
"id": "3fhOTtm0LBJ3Ojn4hIljLo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5b1f1070530d697bec8e494884ac15593affe038",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4420fc8aed9eb8b5c88b2a36812cdb5985c38874",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/70c94173c056c4a49876fb59f200f022b9aed370",
"width": 64,
"height": 64
}
],
"id": "59RclwjkzMJTJZNxrfGdLC"
},
"6DaTfshdfMQiM00Yw1CG3J": {
"name": "Bad Company",
"release_date": "1974",
"uri": "spotify:album:6DaTfshdfMQiM00Yw1CG3J",
"artists": [
{
"name": "Bad Company",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5AEG63ajney2BoDXi0Vb84"
},
"uri": "spotify:artist:5AEG63ajney2BoDXi0Vb84",
"href": "https://api.spotify.com/v1/artists/5AEG63ajney2BoDXi0Vb84",
"type": "artist",
"id": "5AEG63ajney2BoDXi0Vb84"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bced88d2be33cab73adbb5ab2db47a5c78a76488",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c2e368e2e5a2cada0b1ab31d3b09458b28ecd4eb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5bf29d0a31d00c5028ec00c63dfcb71fd9e71025",
"width": 64,
"height": 64
}
],
"id": "6DaTfshdfMQiM00Yw1CG3J"
},
"55YlfsaFPB5HTlhxY114CI": {
"name": "Moving Pictures (2011 Remaster)",
"release_date": "1981",
"uri": "spotify:album:55YlfsaFPB5HTlhxY114CI",
"artists": [
{
"name": "Rush",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2Hkut4rAAyrQxRdof7FVJq"
},
"uri": "spotify:artist:2Hkut4rAAyrQxRdof7FVJq",
"href": "https://api.spotify.com/v1/artists/2Hkut4rAAyrQxRdof7FVJq",
"type": "artist",
"id": "2Hkut4rAAyrQxRdof7FVJq"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4dbf80d891b8ce1b75a78763df63dfdf26def8b3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7dfedccefb4c69ee9581787fa640d8708100132d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ffe4ccd8402dd78844e2f6490ff996fab5b077bd",
"width": 64,
"height": 64
}
],
"id": "55YlfsaFPB5HTlhxY114CI"
},
"5DM1qCdgGt2zbknnsVn1Ca": {
"name": "Meat Is Murder",
"release_date": "1985",
"uri": "spotify:album:5DM1qCdgGt2zbknnsVn1Ca",
"artists": [
{
"name": "The Smiths",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3yY2gUcIsjMr8hjo51PoJ8"
},
"uri": "spotify:artist:3yY2gUcIsjMr8hjo51PoJ8",
"href": "https://api.spotify.com/v1/artists/3yY2gUcIsjMr8hjo51PoJ8",
"type": "artist",
"id": "3yY2gUcIsjMr8hjo51PoJ8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e160b9fc08866c311b1fb5d380ec0b99fbfc1a72",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b043d763e859a3b1d60f2c17b9615f9cdb8dd821",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/391dfb04d7234681370622db95db532b6f6e760b",
"width": 64,
"height": 64
}
],
"id": "5DM1qCdgGt2zbknnsVn1Ca"
},
"1mxexj4e88DzAPPkmI9F48": {
"name": "Cosmo's Factory (40th Anniversary Edition)",
"release_date": "1970",
"uri": "spotify:album:1mxexj4e88DzAPPkmI9F48",
"artists": [
{
"name": "Creedence Clearwater Revival",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3IYUhFvPQItj6xySrBmZkd"
},
"uri": "spotify:artist:3IYUhFvPQItj6xySrBmZkd",
"href": "https://api.spotify.com/v1/artists/3IYUhFvPQItj6xySrBmZkd",
"type": "artist",
"id": "3IYUhFvPQItj6xySrBmZkd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ea280bc6c28ea05ff298f4c03ee9947509711eb0",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/cedecb95ed4265035f471197a695c49d63102050",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/57483177c3d7c986b8f2a145e3d6e882565cd9ba",
"width": 64,
"height": 64
}
],
"id": "1mxexj4e88DzAPPkmI9F48"
},
"1Mhn9VosyjtWn4dMPFlna6": {
"name": "The Stranger (30th Anniversary Legacy Edition)",
"release_date": "1977",
"uri": "spotify:album:1Mhn9VosyjtWn4dMPFlna6",
"artists": [
{
"name": "Billy Joel",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zFYqv1mOsgBRQbae3JJ9e"
},
"uri": "spotify:artist:6zFYqv1mOsgBRQbae3JJ9e",
"href": "https://api.spotify.com/v1/artists/6zFYqv1mOsgBRQbae3JJ9e",
"type": "artist",
"id": "6zFYqv1mOsgBRQbae3JJ9e"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e8952f8ceb8cd5873bad47c17bf492a4dd410570",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d31dba82453e271c6b6c4463e56da06c59cb1ce7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0cb40c2939de7701481ea303f42266329718641a",
"width": 64,
"height": 64
}
],
"id": "1Mhn9VosyjtWn4dMPFlna6"
},
"3lFioPGhn7x5Y3H3YbPV83": {
"name": "Heroes",
"release_date": "1977-10-14",
"uri": "spotify:album:3lFioPGhn7x5Y3H3YbPV83",
"artists": [
{
"name": "David Bowie",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0oSGxfWSnnOXhD2fKuz2Gy"
},
"uri": "spotify:artist:0oSGxfWSnnOXhD2fKuz2Gy",
"href": "https://api.spotify.com/v1/artists/0oSGxfWSnnOXhD2fKuz2Gy",
"type": "artist",
"id": "0oSGxfWSnnOXhD2fKuz2Gy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fd97f0d14fe892d6999b70353623393792a5ce0b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2c1d5611677c95f1880d6f110b30386f4381e36c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7136d749619a0a3208f21b33fb82eca1dc68eade",
"width": 64,
"height": 64
}
],
"id": "3lFioPGhn7x5Y3H3YbPV83"
},
"1gRJsaJ7ExC9Q9YdB9ZMC5": {
"name": "The Dreaming",
"release_date": "1982",
"uri": "spotify:album:1gRJsaJ7ExC9Q9YdB9ZMC5",
"artists": [
{
"name": "Kate Bush",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1aSxMhuvixZ8h9dK9jIDwL"
},
"uri": "spotify:artist:1aSxMhuvixZ8h9dK9jIDwL",
"href": "https://api.spotify.com/v1/artists/1aSxMhuvixZ8h9dK9jIDwL",
"type": "artist",
"id": "1aSxMhuvixZ8h9dK9jIDwL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9d7ec1f2d13267aa257579036452e48abb61d4a6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8e1f568dd1f400c9624af63a2e25d9e71d8857da",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/be956e9de1472e091bfbb8cf2e18271f7c7ef6d2",
"width": 64,
"height": 64
}
],
"id": "1gRJsaJ7ExC9Q9YdB9ZMC5"
},
"16RbYsL8rkGIn02qZx6t2o": {
"name": "Wild Wood",
"release_date": "1993",
"uri": "spotify:album:16RbYsL8rkGIn02qZx6t2o",
"artists": [
{
"name": "Paul Weller",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7Lf3LOZp3U3u2f6cWMd3AH"
},
"uri": "spotify:artist:7Lf3LOZp3U3u2f6cWMd3AH",
"href": "https://api.spotify.com/v1/artists/7Lf3LOZp3U3u2f6cWMd3AH",
"type": "artist",
"id": "7Lf3LOZp3U3u2f6cWMd3AH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6355798028fb4a7dc1999fbd72a7dc39a91e4876",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/f52e4c71b0f329198a24d155e18421e83b0831f9",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/19d08e062e42e710723c24bfb106c17700f2d97b",
"width": 64,
"height": 63
}
],
"id": "16RbYsL8rkGIn02qZx6t2o"
},
"3y4o8DtTqCFEFcJrI87nqu": {
"name": "The Infotainment Scan",
"release_date": "2006-05-24",
"uri": "spotify:album:3y4o8DtTqCFEFcJrI87nqu",
"artists": [
{
"name": "The Fall",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6WoTvA9qinpHtSRJuldYh6"
},
"uri": "spotify:artist:6WoTvA9qinpHtSRJuldYh6",
"href": "https://api.spotify.com/v1/artists/6WoTvA9qinpHtSRJuldYh6",
"type": "artist",
"id": "6WoTvA9qinpHtSRJuldYh6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/821ed79d8c273af8e5de3fb43abb7090b2cb739d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/453ec696f9d3686fdf71435521ab756f08525244",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2f8b150735519fac34ea4ee8f3d7c4d80380e83e",
"width": 64,
"height": 64
}
],
"id": "3y4o8DtTqCFEFcJrI87nqu"
},
"0qaLL09EtF1hiUis7PRvaJ": {
"name": "Rust In Peace",
"release_date": "1990-10-04",
"uri": "spotify:album:0qaLL09EtF1hiUis7PRvaJ",
"artists": [
{
"name": "Megadeth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1Yox196W7bzVNZI7RBaPnf"
},
"uri": "spotify:artist:1Yox196W7bzVNZI7RBaPnf",
"href": "https://api.spotify.com/v1/artists/1Yox196W7bzVNZI7RBaPnf",
"type": "artist",
"id": "1Yox196W7bzVNZI7RBaPnf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a60d87c5f6ba7a324a2108d59570b21d47033b36",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/34f4c4d55279c0ef0bf4cfbc7810e674d44bf6ce",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/81040f290601641cb290ec01586c12eb02239a8f",
"width": 64,
"height": 64
}
],
"id": "0qaLL09EtF1hiUis7PRvaJ"
},
"2fJgWsAG6PKSOhcrsNEyDm": {
"name": "Shaft",
"release_date": "1971",
"uri": "spotify:album:2fJgWsAG6PKSOhcrsNEyDm",
"artists": [
{
"name": "Isaac Hayes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3IKV7o6WPphDB7cCWXaG3E"
},
"uri": "spotify:artist:3IKV7o6WPphDB7cCWXaG3E",
"href": "https://api.spotify.com/v1/artists/3IKV7o6WPphDB7cCWXaG3E",
"type": "artist",
"id": "3IKV7o6WPphDB7cCWXaG3E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a851ed6a197ad0ede86b21b6c302fea104442288",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/03bed0bb8632d2ad769b604d7e2462bee7b350ad",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a50992a261da1a5a4c39958ef365b47698b2e539",
"width": 64,
"height": 64
}
],
"id": "2fJgWsAG6PKSOhcrsNEyDm"
},
"2uEf3r9i2bnxwJQsxQ0xQ7": {
"name": "Nevermind (Deluxe Edition)",
"release_date": "1991-09-26",
"uri": "spotify:album:2uEf3r9i2bnxwJQsxQ0xQ7",
"artists": [
{
"name": "Nirvana",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6olE6TJLqED3rqDCT0FyPh"
},
"uri": "spotify:artist:6olE6TJLqED3rqDCT0FyPh",
"href": "https://api.spotify.com/v1/artists/6olE6TJLqED3rqDCT0FyPh",
"type": "artist",
"id": "6olE6TJLqED3rqDCT0FyPh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fb9bc92eab30abb520e345a98c07d49a3931c009",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/12774832148bd91cbf757bab34cbbeabbb7aa63b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fa61a229e2cf46f498c3c65d68077ef237b0390f",
"width": 64,
"height": 64
}
],
"id": "2uEf3r9i2bnxwJQsxQ0xQ7"
},
"4iNtNt45SY3Ieb5FR8qt3Q": {
"name": "Cut",
"release_date": "1979",
"uri": "spotify:album:4iNtNt45SY3Ieb5FR8qt3Q",
"artists": [
{
"name": "The Slits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5O0RrEgz4NLCPLrDZiPggz"
},
"uri": "spotify:artist:5O0RrEgz4NLCPLrDZiPggz",
"href": "https://api.spotify.com/v1/artists/5O0RrEgz4NLCPLrDZiPggz",
"type": "artist",
"id": "5O0RrEgz4NLCPLrDZiPggz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5bca6c1250ca1b8cb464a78a639237e751f9d9e7",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/927b7aeb56bb92bc1b58673b2f542c89461d5a2c",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/60edd497476f1914c4d454e081d10fc45b65000a",
"width": 64,
"height": 63
}
],
"id": "4iNtNt45SY3Ieb5FR8qt3Q"
},
"7m1r9h3wfPRm3Iv8uvq9vQ": {
"name": "The Score",
"release_date": "1996-02-12",
"uri": "spotify:album:7m1r9h3wfPRm3Iv8uvq9vQ",
"artists": [
{
"name": "Fugees",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2WKdxPFRD7IqZvlIAvhMgY"
},
"uri": "spotify:artist:2WKdxPFRD7IqZvlIAvhMgY",
"href": "https://api.spotify.com/v1/artists/2WKdxPFRD7IqZvlIAvhMgY",
"type": "artist",
"id": "2WKdxPFRD7IqZvlIAvhMgY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4de65291e1795f1e20e5b0c28becd1fa4fd0830a",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/e46633eff20c4e1e044abd854d74abdd1b064450",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6041d74d6c748614a50af129edd2b69932a7a629",
"width": 64,
"height": 64
}
],
"id": "7m1r9h3wfPRm3Iv8uvq9vQ"
},
"5aexsAqRIZhM7wWeAoSOcZ": {
"name": "The Who Sell Out (Deluxe Edition)",
"release_date": "1967-01-01",
"uri": "spotify:album:5aexsAqRIZhM7wWeAoSOcZ",
"artists": [
{
"name": "The Who",
"external_urls": {
"spotify": "https://open.spotify.com/artist/67ea9eGLXYMsO2eYQRui3w"
},
"uri": "spotify:artist:67ea9eGLXYMsO2eYQRui3w",
"href": "https://api.spotify.com/v1/artists/67ea9eGLXYMsO2eYQRui3w",
"type": "artist",
"id": "67ea9eGLXYMsO2eYQRui3w"
}
],
"images": [
{
"url": "https://i.scdn.co/image/de99f4a67ba611ecc0b6f34c4e789ed04873d0d3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c37161066823c11144723a02c6f153b6dff1a9e4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d2af21f49e2a876873beef31bf3c6ea1d22be250",
"width": 64,
"height": 64
}
],
"id": "5aexsAqRIZhM7wWeAoSOcZ"
},
"7rIhZOxiuEieQylkZt50TN": {
"name": "White Blood Cells",
"release_date": "2001-07-03",
"uri": "spotify:album:7rIhZOxiuEieQylkZt50TN",
"artists": [
{
"name": "The White Stripes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4F84IBURUo98rz4r61KF70"
},
"uri": "spotify:artist:4F84IBURUo98rz4r61KF70",
"href": "https://api.spotify.com/v1/artists/4F84IBURUo98rz4r61KF70",
"type": "artist",
"id": "4F84IBURUo98rz4r61KF70"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ba2d40cd66ad2a41b9c87289a168cfe6ec30eebf",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/46bbe215854113958297fca03d81b7816a90c8a8",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/2b7f33676fff9fb9bc2fc29b4ae39f7630fc0bf7",
"width": 64,
"height": 62
}
],
"id": "7rIhZOxiuEieQylkZt50TN"
},
"41bTjcSaiEe4G40RVVHbux": {
"name": "Master Of Puppets",
"release_date": "1986-03-03",
"uri": "spotify:album:41bTjcSaiEe4G40RVVHbux",
"artists": [
{
"name": "Metallica",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ye2Wgw4gimLv2eAKyk1NB"
},
"uri": "spotify:artist:2ye2Wgw4gimLv2eAKyk1NB",
"href": "https://api.spotify.com/v1/artists/2ye2Wgw4gimLv2eAKyk1NB",
"type": "artist",
"id": "2ye2Wgw4gimLv2eAKyk1NB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/74a3da0609d62ee0112ff51e764d1b57736b0d57",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/720e1d7a38da870d3efce843d0bcc4ccd4cafaad",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1504b13a5f50f70b100424ea6805fb0be63bfbda",
"width": 64,
"height": 64
}
],
"id": "41bTjcSaiEe4G40RVVHbux"
},
"3fFLTUfssjzN4vipRRfGxZ": {
"name": "Truth And Soul",
"release_date": "1988-08-01",
"uri": "spotify:album:3fFLTUfssjzN4vipRRfGxZ",
"artists": [
{
"name": "Fishbone",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2X3pNc13eRGofTO9Yt3sMi"
},
"uri": "spotify:artist:2X3pNc13eRGofTO9Yt3sMi",
"href": "https://api.spotify.com/v1/artists/2X3pNc13eRGofTO9Yt3sMi",
"type": "artist",
"id": "2X3pNc13eRGofTO9Yt3sMi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3c63125261867de0524d3c0e8876e0317eaa186d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/45c31419e23f55cdaa78c55ccfa87d4bbcb65dff",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/832b8c61b4acfb360aff1cd835e38ef88c34dbcf",
"width": 64,
"height": 64
}
],
"id": "3fFLTUfssjzN4vipRRfGxZ"
},
"4ugIloQYMfDhN7lOtEWezy": {
"name": "Love Shack [edit] / Channel Z [Digital 45]",
"release_date": "1989",
"uri": "spotify:album:4ugIloQYMfDhN7lOtEWezy",
"artists": [
{
"name": "The B-52's",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3gdbcIdNypBsYNu3iiCjtN"
},
"uri": "spotify:artist:3gdbcIdNypBsYNu3iiCjtN",
"href": "https://api.spotify.com/v1/artists/3gdbcIdNypBsYNu3iiCjtN",
"type": "artist",
"id": "3gdbcIdNypBsYNu3iiCjtN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/26ceba057c25dec8c20ca6e71c82960bf7902b68",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a8f4e0af1f11fde17a3c36d1fda6d306d62b04ea",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9db4171d84ca72afa7e41cd98d87719d9846e595",
"width": 64,
"height": 64
}
],
"id": "4ugIloQYMfDhN7lOtEWezy"
},
"6GphKx2QAPRoVGWE9D7ou8": {
"name": "Pet Sounds",
"release_date": "1966-06-16",
"uri": "spotify:album:6GphKx2QAPRoVGWE9D7ou8",
"artists": [
{
"name": "The Beach Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3oDbviiivRWhXwIE8hxkVV"
},
"uri": "spotify:artist:3oDbviiivRWhXwIE8hxkVV",
"href": "https://api.spotify.com/v1/artists/3oDbviiivRWhXwIE8hxkVV",
"type": "artist",
"id": "3oDbviiivRWhXwIE8hxkVV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cb5a561ee1e68fb56e747a84534c23767e61af1e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/033c5c30c94b672083748ba667a08851ae2e1fd9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f992d657dc601f92eccbaf4a2992919806b71973",
"width": 64,
"height": 64
}
],
"id": "6GphKx2QAPRoVGWE9D7ou8"
},
"3QKOefqeoWmK67Fv6ToyJa": {
"name": "Behaviour",
"release_date": "1990-10-22",
"uri": "spotify:album:3QKOefqeoWmK67Fv6ToyJa",
"artists": [
{
"name": "Pet Shop Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ycnb8Er79LoH2AsR5ldjh"
},
"uri": "spotify:artist:2ycnb8Er79LoH2AsR5ldjh",
"href": "https://api.spotify.com/v1/artists/2ycnb8Er79LoH2AsR5ldjh",
"type": "artist",
"id": "2ycnb8Er79LoH2AsR5ldjh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9c8c828189a0f16fbf647fd653940ef421af94fd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0e72ab3383ec90fbb50584697d559e117b222157",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/029094d4c65861703fd0c0e1366934c876a88737",
"width": 64,
"height": 64
}
],
"id": "3QKOefqeoWmK67Fv6ToyJa"
},
"784THwrPRbheFoUMDEpWh8": {
"name": "At Folsom Prison (Legacy Edition)",
"release_date": "1968",
"uri": "spotify:album:784THwrPRbheFoUMDEpWh8",
"artists": [
{
"name": "Johnny Cash",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6kACVPfCOnqzgfEF5ryl0x"
},
"uri": "spotify:artist:6kACVPfCOnqzgfEF5ryl0x",
"href": "https://api.spotify.com/v1/artists/6kACVPfCOnqzgfEF5ryl0x",
"type": "artist",
"id": "6kACVPfCOnqzgfEF5ryl0x"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b34d71056adc4ecd19e6eb83153b7b1d2ffd904",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f153f30ed8e045a9d92e46c87199751e3a38e866",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7811693d01390d46c57d691458fd90d727485fb4",
"width": 64,
"height": 64
}
],
"id": "784THwrPRbheFoUMDEpWh8"
},
"20CYfxjKvqXkCXBhAgOE39": {
"name": "Happy Sad",
"release_date": "1969",
"uri": "spotify:album:20CYfxjKvqXkCXBhAgOE39",
"artists": [
{
"name": "Tim Buckley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zHRqvws8dVeqL8D31ponr"
},
"uri": "spotify:artist:6zHRqvws8dVeqL8D31ponr",
"href": "https://api.spotify.com/v1/artists/6zHRqvws8dVeqL8D31ponr",
"type": "artist",
"id": "6zHRqvws8dVeqL8D31ponr"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3f87162d49352aea06025e376660ab0b6bbfdd30",
"width": 640,
"height": 632
},
{
"url": "https://i.scdn.co/image/c1b16d37acf1a5588ddbd81e491eec07a5d9aa65",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/eab0ee21eea724cea50b6ead417c0ac94c54fee2",
"width": 64,
"height": 63
}
],
"id": "20CYfxjKvqXkCXBhAgOE39"
},
"0n6dZEvzLUq0qUm5e8zFn5": {
"name": "Daydream Nation (Deluxe Edition)",
"release_date": "1988",
"uri": "spotify:album:0n6dZEvzLUq0qUm5e8zFn5",
"artists": [
{
"name": "Sonic Youth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5UqTO8smerMvxHYA5xsXb6"
},
"uri": "spotify:artist:5UqTO8smerMvxHYA5xsXb6",
"href": "https://api.spotify.com/v1/artists/5UqTO8smerMvxHYA5xsXb6",
"type": "artist",
"id": "5UqTO8smerMvxHYA5xsXb6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fd0df6290e3bc37870087565bbd8938a618c16d4",
"width": 640,
"height": 576
},
{
"url": "https://i.scdn.co/image/79d5f4ba454a9bb9fb4c86361cae89795f5a635b",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/434384f4ec238e3815e62e363f28627a91c58ade",
"width": 64,
"height": 58
}
],
"id": "0n6dZEvzLUq0qUm5e8zFn5"
},
"6tF9nPl6x7ACsKZ8alL1he": {
"name": "Cafe Bleu",
"release_date": "1984-01-01",
"uri": "spotify:album:6tF9nPl6x7ACsKZ8alL1he",
"artists": [
{
"name": "The Style Council",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3loflELg7MzgrOyNqERolN"
},
"uri": "spotify:artist:3loflELg7MzgrOyNqERolN",
"href": "https://api.spotify.com/v1/artists/3loflELg7MzgrOyNqERolN",
"type": "artist",
"id": "3loflELg7MzgrOyNqERolN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a9d410ec5c0b2a0cfe509eaf052fbdfa24e53426",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/caaf27853f155797291693b09d4c96da9d8d6d77",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/f100168aa6c81be7dca2894b2db071a13c3c7ce7",
"width": 64,
"height": 63
}
],
"id": "6tF9nPl6x7ACsKZ8alL1he"
},
"7MvSB0JTdtl1pSwZcgvYQX": {
"name": "The ArchAndroid",
"release_date": "2010-05-17",
"uri": "spotify:album:7MvSB0JTdtl1pSwZcgvYQX",
"artists": [
{
"name": "Janelle Mon\u00e1e",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6ueGR6SWhUJfvEhqkvMsVs"
},
"uri": "spotify:artist:6ueGR6SWhUJfvEhqkvMsVs",
"href": "https://api.spotify.com/v1/artists/6ueGR6SWhUJfvEhqkvMsVs",
"type": "artist",
"id": "6ueGR6SWhUJfvEhqkvMsVs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d3bea747793efa8db33ba638c0eb3b1eb2822e3e",
"width": 640,
"height": 636
},
{
"url": "https://i.scdn.co/image/be8c0c9df007c75ed0da899d85f8ce532971b7bb",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/289c4aa27cec9cf19b1604ed21ed6faa7082a66b",
"width": 64,
"height": 64
}
],
"id": "7MvSB0JTdtl1pSwZcgvYQX"
},
"68BCjMsHX4Gf11BJSkjwGz": {
"name": "Otis Blue: Otis Redding Sings Soul [Collector's Edition]",
"release_date": "2008-04-21",
"uri": "spotify:album:68BCjMsHX4Gf11BJSkjwGz",
"artists": [
{
"name": "Otis Redding",
"external_urls": {
"spotify": "https://open.spotify.com/artist/60df5JBRRPcnSpsIMxxwQm"
},
"uri": "spotify:artist:60df5JBRRPcnSpsIMxxwQm",
"href": "https://api.spotify.com/v1/artists/60df5JBRRPcnSpsIMxxwQm",
"type": "artist",
"id": "60df5JBRRPcnSpsIMxxwQm"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9044898c6b10fb4f915cad2016309aeda2100c48",
"width": 640,
"height": 569
},
{
"url": "https://i.scdn.co/image/8b08512ec1a3cdc9a1e8c5881fd586f60f9d0f86",
"width": 300,
"height": 267
},
{
"url": "https://i.scdn.co/image/45b9375bad5298ddddd5ef9d9ea00c7baa743a48",
"width": 64,
"height": 57
}
],
"id": "68BCjMsHX4Gf11BJSkjwGz"
},
"32RPBIthlaFGpOjf5t9FS7": {
"name": "Hypocrisy Is The Greatest Luxury",
"release_date": "1992-04-06",
"uri": "spotify:album:32RPBIthlaFGpOjf5t9FS7",
"artists": [
{
"name": "The Disposable Heroes Of Hiphoprisy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6RqyNFZlXUHKZHEoAws5Jd"
},
"uri": "spotify:artist:6RqyNFZlXUHKZHEoAws5Jd",
"href": "https://api.spotify.com/v1/artists/6RqyNFZlXUHKZHEoAws5Jd",
"type": "artist",
"id": "6RqyNFZlXUHKZHEoAws5Jd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bc66903967fafa0a4b357d493b42821f635e869e",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/9cdf8ba15c39ce24824a8d0adbecfdeb32105dac",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/f0473095b24a98de0b71f551d98e36feacc5f009",
"width": 64,
"height": 63
}
],
"id": "32RPBIthlaFGpOjf5t9FS7"
},
"2fUrVWDYASjthLVsVH53zP": {
"name": "Natty Dread (Remastered)",
"release_date": "1974",
"uri": "spotify:album:2fUrVWDYASjthLVsVH53zP",
"artists": [
{
"name": "Bob Marley & The Wailers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2QsynagSdAqZj3U9HgDzjD"
},
"uri": "spotify:artist:2QsynagSdAqZj3U9HgDzjD",
"href": "https://api.spotify.com/v1/artists/2QsynagSdAqZj3U9HgDzjD",
"type": "artist",
"id": "2QsynagSdAqZj3U9HgDzjD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/427cbfb3bd0650454f60570e384369a58849ef99",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/a3f37004aa4e5ee2cc5030df661adb64edf08d2d",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/40e3a6e8d2433940e8ec882e51ff8dcb72fcf80a",
"width": 64,
"height": 63
}
],
"id": "2fUrVWDYASjthLVsVH53zP"
},
"1x0uzT3ETlIYjPueTyNfnQ": {
"name": "Wish You Were Here [2011 - Remaster] (2011 Remastered Version)",
"release_date": "1975-09-15",
"uri": "spotify:album:1x0uzT3ETlIYjPueTyNfnQ",
"artists": [
{
"name": "Pink Floyd",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0k17h0D3J5VfsdmQ1iZtE9"
},
"uri": "spotify:artist:0k17h0D3J5VfsdmQ1iZtE9",
"href": "https://api.spotify.com/v1/artists/0k17h0D3J5VfsdmQ1iZtE9",
"type": "artist",
"id": "0k17h0D3J5VfsdmQ1iZtE9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/015298910a64e2f4be650dd21792cfa7a9d3a58f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6829a473324951b73d58f284ec9ee2595df417c9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d55ddbc595a425c840f020ff245b39d0ea7e8e35",
"width": 64,
"height": 64
}
],
"id": "1x0uzT3ETlIYjPueTyNfnQ"
},
"0nw38yniBfbluS93FdYcbE": {
"name": "Introducing The Hardline According To Terence Trent D'Arby",
"release_date": "1987-07-06",
"uri": "spotify:album:0nw38yniBfbluS93FdYcbE",
"artists": [
{
"name": "Terence Trent D'Arby",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1JpHKf8Ztyd8HXU8p6m9cc"
},
"uri": "spotify:artist:1JpHKf8Ztyd8HXU8p6m9cc",
"href": "https://api.spotify.com/v1/artists/1JpHKf8Ztyd8HXU8p6m9cc",
"type": "artist",
"id": "1JpHKf8Ztyd8HXU8p6m9cc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/417c375cbd1ba148bf3ba53858615b97b639fffd",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/6a4a8714fce7b0215461a79f9f43e285410c76b3",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/9610b01195f10e490fbadc35a42053dc17e23b04",
"width": 64,
"height": 63
}
],
"id": "0nw38yniBfbluS93FdYcbE"
},
"6hPt04r4KtO00nwhdGJ8Ox": {
"name": "Electric Warrior (Deluxe Edition)",
"release_date": "1971",
"uri": "spotify:album:6hPt04r4KtO00nwhdGJ8Ox",
"artists": [
{
"name": "T. Rex",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3dBVyJ7JuOMt4GE9607Qin"
},
"uri": "spotify:artist:3dBVyJ7JuOMt4GE9607Qin",
"href": "https://api.spotify.com/v1/artists/3dBVyJ7JuOMt4GE9607Qin",
"type": "artist",
"id": "3dBVyJ7JuOMt4GE9607Qin"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cefbe69cde1f66b36de0ce73965c43ddecd68cf5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7eeb7340ce10be92de78004c27e737cbab476f12",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/48a3b8656c28b7bb6d279a3cab0704e24ca24c87",
"width": 64,
"height": 64
}
],
"id": "6hPt04r4KtO00nwhdGJ8Ox"
},
"5eIhRd5XE73unTMYluIbz1": {
"name": "Rock Bottom",
"release_date": "1974",
"uri": "spotify:album:5eIhRd5XE73unTMYluIbz1",
"artists": [
{
"name": "Robert Wyatt",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5iksmHDN2qZQcgFfXqIXtT"
},
"uri": "spotify:artist:5iksmHDN2qZQcgFfXqIXtT",
"href": "https://api.spotify.com/v1/artists/5iksmHDN2qZQcgFfXqIXtT",
"type": "artist",
"id": "5iksmHDN2qZQcgFfXqIXtT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/917297cffe45ef46bd41819435cf4e6bd9082814",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/faef50596089bcae17e3fd6074147653eb42bc7f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/38c6215a3d69c5c1a87f9a01b2da9c4614dac7f7",
"width": 64,
"height": 64
}
],
"id": "5eIhRd5XE73unTMYluIbz1"
},
"3eyz60xEK5dGEeZF1JJSi9": {
"name": "The Man Machine (2009 Remastered Version)",
"release_date": "1978",
"uri": "spotify:album:3eyz60xEK5dGEeZF1JJSi9",
"artists": [
{
"name": "Kraftwerk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0dmPX6ovclgOy8WWJaFEUU"
},
"uri": "spotify:artist:0dmPX6ovclgOy8WWJaFEUU",
"href": "https://api.spotify.com/v1/artists/0dmPX6ovclgOy8WWJaFEUU",
"type": "artist",
"id": "0dmPX6ovclgOy8WWJaFEUU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2ed4bd5e72af30abc5fee42dd58f2f31961a2fe3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/916da41b713993c9a7b6d957f304da51bdea9347",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/95c56a533fc0ef4abf71319ad20f2c7af023fb8a",
"width": 64,
"height": 64
}
],
"id": "3eyz60xEK5dGEeZF1JJSi9"
},
"6mxbG8KrOTZIxlP4gzaliM": {
"name": "Raw Power",
"release_date": "1973",
"uri": "spotify:album:6mxbG8KrOTZIxlP4gzaliM",
"artists": [
{
"name": "Iggy Pop",
"external_urls": {
"spotify": "https://open.spotify.com/artist/33EUXrFKGjpUSGacqEHhU4"
},
"uri": "spotify:artist:33EUXrFKGjpUSGacqEHhU4",
"href": "https://api.spotify.com/v1/artists/33EUXrFKGjpUSGacqEHhU4",
"type": "artist",
"id": "33EUXrFKGjpUSGacqEHhU4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/da318589d362181a19011394c57ba83d9205edf1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5af77ca175c106e062da41a71880f20042b74c91",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2832d08065b245def7e10c0528faaa0091562db8",
"width": 64,
"height": 64
}
],
"id": "6mxbG8KrOTZIxlP4gzaliM"
},
"6j46SsO69ZCvYUGCkyfYrD": {
"name": "Bluesbreakers",
"release_date": "1966-07-22",
"uri": "spotify:album:6j46SsO69ZCvYUGCkyfYrD",
"artists": [
{
"name": "John Mayall & The Bluesbreakers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ScuQMRWThcifBRIvNDFDC"
},
"uri": "spotify:artist:2ScuQMRWThcifBRIvNDFDC",
"href": "https://api.spotify.com/v1/artists/2ScuQMRWThcifBRIvNDFDC",
"type": "artist",
"id": "2ScuQMRWThcifBRIvNDFDC"
},
{
"name": "Eric Clapton",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6PAt558ZEZl0DmdXlnjMgD"
},
"uri": "spotify:artist:6PAt558ZEZl0DmdXlnjMgD",
"href": "https://api.spotify.com/v1/artists/6PAt558ZEZl0DmdXlnjMgD",
"type": "artist",
"id": "6PAt558ZEZl0DmdXlnjMgD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/70f2f462189caadcc23c0bf0e5c560f32db84c7c",
"width": 632,
"height": 640
},
{
"url": "https://i.scdn.co/image/b3c95eeecec5e65c5fcc6fdf1fd8fe7f4d081921",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/197f5ef97158ed7060659cec9bd5d526afbc9a73",
"width": 63,
"height": 64
}
],
"id": "6j46SsO69ZCvYUGCkyfYrD"
},
"4LwFCUyV4wM6SEg84PaLuL": {
"name": "Let It Be [Expanded Edition]",
"release_date": "1984",
"uri": "spotify:album:4LwFCUyV4wM6SEg84PaLuL",
"artists": [
{
"name": "The Replacements",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4WPY0N74T3KUja57xMQTZ3"
},
"uri": "spotify:artist:4WPY0N74T3KUja57xMQTZ3",
"href": "https://api.spotify.com/v1/artists/4WPY0N74T3KUja57xMQTZ3",
"type": "artist",
"id": "4WPY0N74T3KUja57xMQTZ3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e5905f4620329a2793b4f58cdc41918cae2da6b8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e6b7017e41004f75772887ce49368884ce7fa7db",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/44cd6d2f9affe346ac6b82dfe9238cec438c5b6d",
"width": 64,
"height": 64
}
],
"id": "4LwFCUyV4wM6SEg84PaLuL"
},
"7Hk9jGHupUwHa0JXQr8m0F": {
"name": "Clube Da Esquina",
"release_date": "1972",
"uri": "spotify:album:7Hk9jGHupUwHa0JXQr8m0F",
"artists": [
{
"name": "Milton Nascimento",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Bnq7jiU506HcPjRgQ43TM"
},
"uri": "spotify:artist:3Bnq7jiU506HcPjRgQ43TM",
"href": "https://api.spotify.com/v1/artists/3Bnq7jiU506HcPjRgQ43TM",
"type": "artist",
"id": "3Bnq7jiU506HcPjRgQ43TM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fabe96069f45ee579b962f3acd8cd73945850e86",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7539e882e3ab22b9aedba27b9cf05fdd3f309e26",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/48c8776d309717bf017f51ae8b91931c6e84bf25",
"width": 64,
"height": 64
}
],
"id": "7Hk9jGHupUwHa0JXQr8m0F"
},
"6lfjbwFGzQ6aSNP1N3JlT8": {
"name": "Ill Communication",
"release_date": "1994-05-23",
"uri": "spotify:album:6lfjbwFGzQ6aSNP1N3JlT8",
"artists": [
{
"name": "Beastie Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/03r4iKL2g2442PT9n2UKsx"
},
"uri": "spotify:artist:03r4iKL2g2442PT9n2UKsx",
"href": "https://api.spotify.com/v1/artists/03r4iKL2g2442PT9n2UKsx",
"type": "artist",
"id": "03r4iKL2g2442PT9n2UKsx"
}
],
"images": [
{
"url": "https://i.scdn.co/image/073ee33ea455b31a2ee4db34f10f3dce1fe391bf",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/730ba683efd452583b60ba1a0b227c5abdf224b8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1f9105efad9a5f8e0dba6d86050fddc660555843",
"width": 64,
"height": 64
}
],
"id": "6lfjbwFGzQ6aSNP1N3JlT8"
},
"2JmwtB6nd7Iy3LpaAAvI3m": {
"name": "Kilimanjaro (Remastered With Extra Tracks)",
"release_date": "1980",
"uri": "spotify:album:2JmwtB6nd7Iy3LpaAAvI3m",
"artists": [
{
"name": "The Teardrop Explodes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4AIo9dEYhuS3AtwhhKgA0M"
},
"uri": "spotify:artist:4AIo9dEYhuS3AtwhhKgA0M",
"href": "https://api.spotify.com/v1/artists/4AIo9dEYhuS3AtwhhKgA0M",
"type": "artist",
"id": "4AIo9dEYhuS3AtwhhKgA0M"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d71053541249a4fe5237ece9c993ffe3eb5e0d8d",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/290f7eb732b7af3bcde589a0bbd2942d33fef266",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/d3002e0445c7dc7c8ddb99dfa33b63825f269332",
"width": 64,
"height": 63
}
],
"id": "2JmwtB6nd7Iy3LpaAAvI3m"
},
"4Nro0nGcWVybv8cZXmSU4P": {
"name": "A Date With The Everly Brothers",
"release_date": "1961",
"uri": "spotify:album:4Nro0nGcWVybv8cZXmSU4P",
"artists": [
{
"name": "The Everly Brothers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4ACplpEqD6JIVgKrafauzs"
},
"uri": "spotify:artist:4ACplpEqD6JIVgKrafauzs",
"href": "https://api.spotify.com/v1/artists/4ACplpEqD6JIVgKrafauzs",
"type": "artist",
"id": "4ACplpEqD6JIVgKrafauzs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/177286cc1cb957fa4848eaea7a8c60b698703650",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8844370861386c17559250469d82b8221170d181",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ea2ec5a08f68d07f6d620ec075e047832d1f7005",
"width": 64,
"height": 64
}
],
"id": "4Nro0nGcWVybv8cZXmSU4P"
},
"533zqKatpy90jse2K5IaiQ": {
"name": "Eli And The Thirteenth Confession",
"release_date": "1968",
"uri": "spotify:album:533zqKatpy90jse2K5IaiQ",
"artists": [
{
"name": "Laura Nyro",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6QDWC6QeGhvCWCv3nUJwoV"
},
"uri": "spotify:artist:6QDWC6QeGhvCWCv3nUJwoV",
"href": "https://api.spotify.com/v1/artists/6QDWC6QeGhvCWCv3nUJwoV",
"type": "artist",
"id": "6QDWC6QeGhvCWCv3nUJwoV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/57362d54bb8d4dc1137467bdc6242c9f563adcc0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c316ed2e12c8954ae9f7218ae71d05b15b4dcd68",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/86497db1145853d343b3ddb910e24dd15a3ff185",
"width": 64,
"height": 64
}
],
"id": "533zqKatpy90jse2K5IaiQ"
},
"5ikYamOFbQN31cSkf9ofWY": {
"name": "Chirping Crickets",
"release_date": "2010-05-01",
"uri": "spotify:album:5ikYamOFbQN31cSkf9ofWY",
"artists": [
{
"name": "Buddy Holly & The Crickets",
"external_urls": {
"spotify": "https://open.spotify.com/artist/15jBNfRUPUgdZOTSaNoF5l"
},
"uri": "spotify:artist:15jBNfRUPUgdZOTSaNoF5l",
"href": "https://api.spotify.com/v1/artists/15jBNfRUPUgdZOTSaNoF5l",
"type": "artist",
"id": "15jBNfRUPUgdZOTSaNoF5l"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b8eb8cabaec6047db72d54612e54f0939b6aea0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/41b6d161a9f1690dfcb62e8889d79a0e17f34b8e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cff321cd236d432cb4116c2d50973a844821196c",
"width": 64,
"height": 64
}
],
"id": "5ikYamOFbQN31cSkf9ofWY"
},
"7diHYi0CglGJekoM3KaWBK": {
"name": "Moondance (Deluxe Edition)",
"release_date": "2013-10-18",
"uri": "spotify:album:7diHYi0CglGJekoM3KaWBK",
"artists": [
{
"name": "Van Morrison",
"external_urls": {
"spotify": "https://open.spotify.com/artist/44NX2ffIYHr6D4n7RaZF7A"
},
"uri": "spotify:artist:44NX2ffIYHr6D4n7RaZF7A",
"href": "https://api.spotify.com/v1/artists/44NX2ffIYHr6D4n7RaZF7A",
"type": "artist",
"id": "44NX2ffIYHr6D4n7RaZF7A"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3d5dbd04125b31e50fb8f6d77dc84f53f9aa861c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/42dabea4eea85507e311d6336c7d6cd1ad9a1b2d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/91c78ee8726a84de1da8bc48c28a11794b79c2b7",
"width": 64,
"height": 64
}
],
"id": "7diHYi0CglGJekoM3KaWBK"
},
"215g9jBzdRufNn0uFN1VZN": {
"name": "Rid Of Me",
"release_date": "1993-04-26",
"uri": "spotify:album:215g9jBzdRufNn0uFN1VZN",
"artists": [
{
"name": "PJ Harvey",
"external_urls": {
"spotify": "https://open.spotify.com/artist/12VaqyEhgwDRuFfEqbnrpz"
},
"uri": "spotify:artist:12VaqyEhgwDRuFfEqbnrpz",
"href": "https://api.spotify.com/v1/artists/12VaqyEhgwDRuFfEqbnrpz",
"type": "artist",
"id": "12VaqyEhgwDRuFfEqbnrpz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/864156e34c3d692f41ea41d0fb1a2e1183bf4dac",
"width": 639,
"height": 640
},
{
"url": "https://i.scdn.co/image/e95f4de6ab88f9454a9f9947186427e832ff343b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/014726dfce6f497ef0d975fc29dd3359d9da346e",
"width": 64,
"height": 64
}
],
"id": "215g9jBzdRufNn0uFN1VZN"
},
"1pstYUSjG1gM0k1Sn2KYrH": {
"name": "First Band On The Moon",
"release_date": "1996-09-02",
"uri": "spotify:album:1pstYUSjG1gM0k1Sn2KYrH",
"artists": [
{
"name": "The Cardigans",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1tqZaCwM57UFKjWoYwMLrw"
},
"uri": "spotify:artist:1tqZaCwM57UFKjWoYwMLrw",
"href": "https://api.spotify.com/v1/artists/1tqZaCwM57UFKjWoYwMLrw",
"type": "artist",
"id": "1tqZaCwM57UFKjWoYwMLrw"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f1a2bf7c405895ec5cace8f2df1d1a74907f55c5",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/fed36f5d9e671890bd478d06f1b37a535a8398c4",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/78769b38047685498b5f59fe5a8eca28cb96e325",
"width": 64,
"height": 63
}
],
"id": "1pstYUSjG1gM0k1Sn2KYrH"
},
"4sb0eMpDn3upAFfyi4q2rw": {
"name": "Kind Of Blue (Legacy Edition)",
"release_date": "1959",
"uri": "spotify:album:4sb0eMpDn3upAFfyi4q2rw",
"artists": [
{
"name": "Miles Davis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0kbYTNQb4Pb1rPbbaF0pT4"
},
"uri": "spotify:artist:0kbYTNQb4Pb1rPbbaF0pT4",
"href": "https://api.spotify.com/v1/artists/0kbYTNQb4Pb1rPbbaF0pT4",
"type": "artist",
"id": "0kbYTNQb4Pb1rPbbaF0pT4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d3a5855bc9c50767090e4e29f2d207061114888d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d6f99fe6af542c3c59baa8c24419a90bc3dfe27e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/50af590474f0a763178eb552e2ea4efb2e55f525",
"width": 64,
"height": 64
}
],
"id": "4sb0eMpDn3upAFfyi4q2rw"
},
"0QNPblZ1LIHTKja8pvHauW": {
"name": "Fear Of A Black Planet",
"release_date": "1990-04-10",
"uri": "spotify:album:0QNPblZ1LIHTKja8pvHauW",
"artists": [
{
"name": "Public Enemy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6Mo9PoU6svvhgEum7wh2Nd"
},
"uri": "spotify:artist:6Mo9PoU6svvhgEum7wh2Nd",
"href": "https://api.spotify.com/v1/artists/6Mo9PoU6svvhgEum7wh2Nd",
"type": "artist",
"id": "6Mo9PoU6svvhgEum7wh2Nd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/103dbfcea9dbff1393c3499492e5951b180ee26c",
"width": 627,
"height": 640
},
{
"url": "https://i.scdn.co/image/f4bbe525446761a4c9b11b819c82ba090ae14125",
"width": 294,
"height": 300
},
{
"url": "https://i.scdn.co/image/7e6446195ded95b9823a167458d7ef5ae5e70642",
"width": 63,
"height": 64
}
],
"id": "0QNPblZ1LIHTKja8pvHauW"
},
"69ALRb17J5Hx2jta7Gn3kS": {
"name": "Treasure",
"release_date": "1984",
"uri": "spotify:album:69ALRb17J5Hx2jta7Gn3kS",
"artists": [
{
"name": "Cocteau Twins",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5Wabl1lPdNOeIn0SQ5A1mp"
},
"uri": "spotify:artist:5Wabl1lPdNOeIn0SQ5A1mp",
"href": "https://api.spotify.com/v1/artists/5Wabl1lPdNOeIn0SQ5A1mp",
"type": "artist",
"id": "5Wabl1lPdNOeIn0SQ5A1mp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/565d1168eee0a016a337ad1b45d440147e32895b",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/797ead565a5b60868b1770cd069a47b673778c9e",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/0641394146b03e5286bea362a2cde08034b86091",
"width": 64,
"height": 62
}
],
"id": "69ALRb17J5Hx2jta7Gn3kS"
},
"2qd7QaBMaK15aNWo7mdWMH": {
"name": "Out Of The Blue",
"release_date": "1977",
"uri": "spotify:album:2qd7QaBMaK15aNWo7mdWMH",
"artists": [
{
"name": "Electric Light Orchestra",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7jefIIksOi1EazgRTfW2Pk"
},
"uri": "spotify:artist:7jefIIksOi1EazgRTfW2Pk",
"href": "https://api.spotify.com/v1/artists/7jefIIksOi1EazgRTfW2Pk",
"type": "artist",
"id": "7jefIIksOi1EazgRTfW2Pk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a6f64edd91bd69365e0862dd15570dc1bc7511ec",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/32abd87b6cbfb66c5555ad4819f0f765f0185c8b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8c55e5f36c91894571e34825d274e3b484c0786c",
"width": 64,
"height": 64
}
],
"id": "2qd7QaBMaK15aNWo7mdWMH"
},
"1vz94WpXDVYIEGja8cjFNa": {
"name": "Blue",
"release_date": "1971-06-22",
"uri": "spotify:album:1vz94WpXDVYIEGja8cjFNa",
"artists": [
{
"name": "Joni Mitchell",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5hW4L92KnC6dX9t7tYM4Ve"
},
"uri": "spotify:artist:5hW4L92KnC6dX9t7tYM4Ve",
"href": "https://api.spotify.com/v1/artists/5hW4L92KnC6dX9t7tYM4Ve",
"type": "artist",
"id": "5hW4L92KnC6dX9t7tYM4Ve"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a1396481102f7692e27d7df348969132903e9680",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5c1c8db3bf0f4f4c050acf9986ed05b48cf7a32c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1803d886fec44082204f1365ef86edbf42f4d154",
"width": 64,
"height": 64
}
],
"id": "1vz94WpXDVYIEGja8cjFNa"
},
"5yvjiLsbi25u0PjdpqQM2S": {
"name": "Millions Now Living Will Never Die",
"release_date": "1996-01-30",
"uri": "spotify:album:5yvjiLsbi25u0PjdpqQM2S",
"artists": [
{
"name": "Tortoise",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3WggbHDpj4rPKbL97zG5MQ"
},
"uri": "spotify:artist:3WggbHDpj4rPKbL97zG5MQ",
"href": "https://api.spotify.com/v1/artists/3WggbHDpj4rPKbL97zG5MQ",
"type": "artist",
"id": "3WggbHDpj4rPKbL97zG5MQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b2c799943e2bf1ff8d02589c06362274559ffb54",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/cc7aabc327ad0d339e7250c49f94fe43a734ca29",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/915a47e7723c15da187fda6ec6581abfb1e82a83",
"width": 64,
"height": 64
}
],
"id": "5yvjiLsbi25u0PjdpqQM2S"
},
"3LLnMc4NxRmhlvqT6zDeie": {
"name": "Private Dancer",
"release_date": "1984",
"uri": "spotify:album:3LLnMc4NxRmhlvqT6zDeie",
"artists": [
{
"name": "Tina Turner",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1zuJe6b1roixEKMOtyrEak"
},
"uri": "spotify:artist:1zuJe6b1roixEKMOtyrEak",
"href": "https://api.spotify.com/v1/artists/1zuJe6b1roixEKMOtyrEak",
"type": "artist",
"id": "1zuJe6b1roixEKMOtyrEak"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9096bb074261db312deb7dd812248b45e318e75d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e4c1dc92a1ee6940bf8a8b547c36a813728e32f2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e3f3489edb6a9c122cbaf805feb555ebe93a2225",
"width": 64,
"height": 64
}
],
"id": "3LLnMc4NxRmhlvqT6zDeie"
},
"4G1YVElmzCn3QkVFQyuxkt": {
"name": "Goo",
"release_date": "1990-01-01",
"uri": "spotify:album:4G1YVElmzCn3QkVFQyuxkt",
"artists": [
{
"name": "Sonic Youth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5UqTO8smerMvxHYA5xsXb6"
},
"uri": "spotify:artist:5UqTO8smerMvxHYA5xsXb6",
"href": "https://api.spotify.com/v1/artists/5UqTO8smerMvxHYA5xsXb6",
"type": "artist",
"id": "5UqTO8smerMvxHYA5xsXb6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/faecf6a2d22024e22cb8fb40b06350a77b8d169b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d5bbe8a7e2554e06e8277a28f4f3fe8c7edd020a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ef1d75f489b778f78c24f4a914b2b61dcc6ca255",
"width": 64,
"height": 64
}
],
"id": "4G1YVElmzCn3QkVFQyuxkt"
},
"4kR4Yr84lErTVOaZ0uiULu": {
"name": "The Velvet Underground",
"release_date": "1969-03",
"uri": "spotify:album:4kR4Yr84lErTVOaZ0uiULu",
"artists": [
{
"name": "The Velvet Underground",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC"
},
"uri": "spotify:artist:1nJvji2KIlWSseXRSlNYsC",
"href": "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC",
"type": "artist",
"id": "1nJvji2KIlWSseXRSlNYsC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f022b34ac2f539a3889fb7f9ad481e914b3112b1",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/19843335f185c8b706e18e3cbc5c356400bdf00f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4db99f82c6e5dac0b16b006a2c8efad73fc9ec3b",
"width": 64,
"height": 64
}
],
"id": "4kR4Yr84lErTVOaZ0uiULu"
},
"7dJLDJkGND4ovSCRL4r4bk": {
"name": "New Wave",
"release_date": "1993",
"uri": "spotify:album:7dJLDJkGND4ovSCRL4r4bk",
"artists": [
{
"name": "The Auteurs",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5EtBXjUUyPJmiljpRdN6RJ"
},
"uri": "spotify:artist:5EtBXjUUyPJmiljpRdN6RJ",
"href": "https://api.spotify.com/v1/artists/5EtBXjUUyPJmiljpRdN6RJ",
"type": "artist",
"id": "5EtBXjUUyPJmiljpRdN6RJ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4ae385ee00c33a777f88df5537d57d6d12314d60",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/21af51aa9ee980ead9daa2a5eb21443b6c3f916d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b90e76bec346dc9f221b12d1ea8bd9b1cb51315b",
"width": 64,
"height": 64
}
],
"id": "7dJLDJkGND4ovSCRL4r4bk"
},
"1dOzzihyWTb4buhmCDoJ7p": {
"name": "Bummed",
"release_date": "2007-11-12",
"uri": "spotify:album:1dOzzihyWTb4buhmCDoJ7p",
"artists": [
{
"name": "Happy Mondays",
"external_urls": {
"spotify": "https://open.spotify.com/artist/339DNkQkuhHKEcHw6oK8f0"
},
"uri": "spotify:artist:339DNkQkuhHKEcHw6oK8f0",
"href": "https://api.spotify.com/v1/artists/339DNkQkuhHKEcHw6oK8f0",
"type": "artist",
"id": "339DNkQkuhHKEcHw6oK8f0"
}
],
"images": [
{
"url": "https://i.scdn.co/image/fca9d410d3c0a9bd329caa6e85f963885fd6e66a",
"width": 629,
"height": 640
},
{
"url": "https://i.scdn.co/image/88dee9b0abdfaef44b122b080b1a7a30e6e0a285",
"width": 295,
"height": 300
},
{
"url": "https://i.scdn.co/image/c63ead7f9f13c6c469a060cfd3e425b113504d1c",
"width": 63,
"height": 64
}
],
"id": "1dOzzihyWTb4buhmCDoJ7p"
},
"6mm1Skz3JE6AXneya9Nyiv": {
"name": "Oracular Spectacular",
"release_date": "2007-10-02",
"uri": "spotify:album:6mm1Skz3JE6AXneya9Nyiv",
"artists": [
{
"name": "MGMT",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0SwO7SWeDHJijQ3XNS7xEE"
},
"uri": "spotify:artist:0SwO7SWeDHJijQ3XNS7xEE",
"href": "https://api.spotify.com/v1/artists/0SwO7SWeDHJijQ3XNS7xEE",
"type": "artist",
"id": "0SwO7SWeDHJijQ3XNS7xEE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3ed83e1c965af86610a3c951beaf8fbdcd8c72b9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/60c81344995dcca6528e42adbd8b763a4e5c93da",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1f51e30649870565b4b2f7b628cc1272d0611538",
"width": 64,
"height": 64
}
],
"id": "6mm1Skz3JE6AXneya9Nyiv"
},
"06S2JBsr4U1Dz3YaenPdVq": {
"name": "...Like Clockwork",
"release_date": "2013-06-03",
"uri": "spotify:album:06S2JBsr4U1Dz3YaenPdVq",
"artists": [
{
"name": "Queens Of The Stone Age",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4pejUc4iciQfgdX6OKulQn"
},
"uri": "spotify:artist:4pejUc4iciQfgdX6OKulQn",
"href": "https://api.spotify.com/v1/artists/4pejUc4iciQfgdX6OKulQn",
"type": "artist",
"id": "4pejUc4iciQfgdX6OKulQn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ba7dc2809d1ed3fb0fbc7e6d0a3c1f439cb39fb4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/154bd0aef583bf64b91a58d32cab2d456683dd93",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/935630f5fe0b33b41f3696b044f719755784969d",
"width": 64,
"height": 64
}
],
"id": "06S2JBsr4U1Dz3YaenPdVq"
},
"2Om4oR7plGGub1aYe5uB7B": {
"name": "Songs Of Love And Hate",
"release_date": "1971-03-19",
"uri": "spotify:album:2Om4oR7plGGub1aYe5uB7B",
"artists": [
{
"name": "Leonard Cohen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5l8VQNuIg0turYE1VtM9zV"
},
"uri": "spotify:artist:5l8VQNuIg0turYE1VtM9zV",
"href": "https://api.spotify.com/v1/artists/5l8VQNuIg0turYE1VtM9zV",
"type": "artist",
"id": "5l8VQNuIg0turYE1VtM9zV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/936a7d3da9d164926a2ac827759d16206bf39a80",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/01f605f69093af3f8bd00030338f109c38a43124",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bc8b2d97bb24ee99a6c74bc315ad9d34f50d7d15",
"width": 64,
"height": 64
}
],
"id": "2Om4oR7plGGub1aYe5uB7B"
},
"5cy3t8bW0lNzw9hjCPkRUT": {
"name": "Real Life",
"release_date": "2007-03-05",
"uri": "spotify:album:5cy3t8bW0lNzw9hjCPkRUT",
"artists": [
{
"name": "Magazine",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4VuMnSnoTGrma3a79UhfMs"
},
"uri": "spotify:artist:4VuMnSnoTGrma3a79UhfMs",
"href": "https://api.spotify.com/v1/artists/4VuMnSnoTGrma3a79UhfMs",
"type": "artist",
"id": "4VuMnSnoTGrma3a79UhfMs"
}
],
"images": [
{
"url": "https://i.scdn.co/image/eef9b7bfa801cd8c9709307e56e8d1c1eef7e9e6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/548a0abb8be8ffd52185dd6b717eae3af9d7c713",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/857e2451f3a3780522f61b3bd6920db194e6f718",
"width": 64,
"height": 64
}
],
"id": "5cy3t8bW0lNzw9hjCPkRUT"
},
"5jNDWA19BJbE24x1UUJGRY": {
"name": "Sweet Dreams (Are Made Of This)",
"release_date": "1983",
"uri": "spotify:album:5jNDWA19BJbE24x1UUJGRY",
"artists": [
{
"name": "Eurythmics",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0NKDgy9j66h3DLnN8qu1bB"
},
"uri": "spotify:artist:0NKDgy9j66h3DLnN8qu1bB",
"href": "https://api.spotify.com/v1/artists/0NKDgy9j66h3DLnN8qu1bB",
"type": "artist",
"id": "0NKDgy9j66h3DLnN8qu1bB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a961b07f009826abb7412b032ec6aec875e7d50b",
"width": 640,
"height": 585
},
{
"url": "https://i.scdn.co/image/7065116837252e1701ded5aceb9754fdc1d0a685",
"width": 300,
"height": 274
},
{
"url": "https://i.scdn.co/image/4c39e64e38049b2efa19c0b56a3c29b376871653",
"width": 63,
"height": 58
}
],
"id": "5jNDWA19BJbE24x1UUJGRY"
},
"0w3NDo617KZktU7gtIdxTR": {
"name": "Out of Step",
"release_date": "1983",
"uri": "spotify:album:0w3NDo617KZktU7gtIdxTR",
"artists": [
{
"name": "Minor Threat",
"external_urls": {
"spotify": "https://open.spotify.com/artist/07PiZYrhllpSXtELkUxlrf"
},
"uri": "spotify:artist:07PiZYrhllpSXtELkUxlrf",
"href": "https://api.spotify.com/v1/artists/07PiZYrhllpSXtELkUxlrf",
"type": "artist",
"id": "07PiZYrhllpSXtELkUxlrf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dafffa369de6b87fc5bf2d669fe5333fa9c25f47",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b06351f8ff55aa29a43e05a0ffd2861b5f75428f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/507fa230392cc2fbc14df02013b8344bb015ae4c",
"width": 64,
"height": 64
}
],
"id": "0w3NDo617KZktU7gtIdxTR"
},
"5eqcF7pWzHgWpGdEmHgeSN": {
"name": "Talking Heads 77 (Deluxe Version)",
"release_date": "1977-09-16",
"uri": "spotify:album:5eqcF7pWzHgWpGdEmHgeSN",
"artists": [
{
"name": "Talking Heads",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2x9SpqnPi8rlE9pjHBwmSC"
},
"uri": "spotify:artist:2x9SpqnPi8rlE9pjHBwmSC",
"href": "https://api.spotify.com/v1/artists/2x9SpqnPi8rlE9pjHBwmSC",
"type": "artist",
"id": "2x9SpqnPi8rlE9pjHBwmSC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0fd1a760131459abbdfd5da8d5e4837c015dfaf7",
"width": 640,
"height": 570
},
{
"url": "https://i.scdn.co/image/6aaf5c3b56ed3739f1a0141c2f5362b6c45f50ed",
"width": 300,
"height": 267
},
{
"url": "https://i.scdn.co/image/7459ff7c97dac4277a0e2b8f21a58b2b90a22945",
"width": 64,
"height": 57
}
],
"id": "5eqcF7pWzHgWpGdEmHgeSN"
},
"0rK8K0z9sYhEhCW51v9jrp": {
"name": "White Ladder",
"release_date": "1998-11-02",
"uri": "spotify:album:0rK8K0z9sYhEhCW51v9jrp",
"artists": [
{
"name": "David Gray",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7J2lZBANizgPNfUzux31PV"
},
"uri": "spotify:artist:7J2lZBANizgPNfUzux31PV",
"href": "https://api.spotify.com/v1/artists/7J2lZBANizgPNfUzux31PV",
"type": "artist",
"id": "7J2lZBANizgPNfUzux31PV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/78a013a78c8f9a03a9e496b2222abdb85ad09175",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e34b3625c1cf371be0612867c16d1ad6ed02467a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a8f5d0c6257067d1eb4603c8e076a042d9ed2cb6",
"width": 64,
"height": 64
}
],
"id": "0rK8K0z9sYhEhCW51v9jrp"
},
"6x2n6wj3WvkRi8J8gxEcF0": {
"name": "1984",
"release_date": "1984-01-03",
"uri": "spotify:album:6x2n6wj3WvkRi8J8gxEcF0",
"artists": [
{
"name": "Van Halen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2cnMpRsOVqtPMfq7YiFE6K"
},
"uri": "spotify:artist:2cnMpRsOVqtPMfq7YiFE6K",
"href": "https://api.spotify.com/v1/artists/2cnMpRsOVqtPMfq7YiFE6K",
"type": "artist",
"id": "2cnMpRsOVqtPMfq7YiFE6K"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c6d2437e7e691dee0116700caa5b21232d63551e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d3625f49f2a419c3dbbc8f7d070927a4b6daef6a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9da1fc4cee8acf14f09a323c5f2dd3e781ca2138",
"width": 64,
"height": 64
}
],
"id": "6x2n6wj3WvkRi8J8gxEcF0"
},
"7e1BJQovPkAFsewqgPBHQC": {
"name": "Will The Circle Be Unbroken, Volume III",
"release_date": "2002",
"uri": "spotify:album:7e1BJQovPkAFsewqgPBHQC",
"artists": [
{
"name": "Nitty Gritty Dirt Band",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7y70dch6JuuuNnwlsOQvwW"
},
"uri": "spotify:artist:7y70dch6JuuuNnwlsOQvwW",
"href": "https://api.spotify.com/v1/artists/7y70dch6JuuuNnwlsOQvwW",
"type": "artist",
"id": "7y70dch6JuuuNnwlsOQvwW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ce19ce0c68ca6565da6299b660f2265749d1e568",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/793ec43fec391462a0870a9d8a032f4d2f9068d4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8fa9e1cb129dfdec5bcb7283ab0416ec97325936",
"width": 64,
"height": 64
}
],
"id": "7e1BJQovPkAFsewqgPBHQC"
},
"5S5TedR8qr82exvmVuPj51": {
"name": "All Directions",
"release_date": "1972-01-01",
"uri": "spotify:album:5S5TedR8qr82exvmVuPj51",
"artists": [
{
"name": "The Temptations",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3RwQ26hR2tJtA8F9p2n7jG"
},
"uri": "spotify:artist:3RwQ26hR2tJtA8F9p2n7jG",
"href": "https://api.spotify.com/v1/artists/3RwQ26hR2tJtA8F9p2n7jG",
"type": "artist",
"id": "3RwQ26hR2tJtA8F9p2n7jG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c5a84c9a7725d1772b8c535734fedbf4de5287b3",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/b2e338e9d3c09ccc652e6cbb1c6c05d0b6399114",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/cae8e7563fc3d2e5ec73e1450a084a0c591a2c6b",
"width": 64,
"height": 63
}
],
"id": "5S5TedR8qr82exvmVuPj51"
},
"7xOwZi6Ks5f5XjTEWoTAH8": {
"name": "Sex Packets",
"release_date": "1990",
"uri": "spotify:album:7xOwZi6Ks5f5XjTEWoTAH8",
"artists": [
{
"name": "Digital Underground",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7jocoSCuCtpCxCI6IbP8ye"
},
"uri": "spotify:artist:7jocoSCuCtpCxCI6IbP8ye",
"href": "https://api.spotify.com/v1/artists/7jocoSCuCtpCxCI6IbP8ye",
"type": "artist",
"id": "7jocoSCuCtpCxCI6IbP8ye"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ab687441aa777530c7991ef5f16c40900898e2a7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/19713ae1d683df6bbb6af2fdeba7c73454f6803c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2fbc9f23b9f13682fdf1d02b9c12b49f3d3a84c9",
"width": 64,
"height": 64
}
],
"id": "7xOwZi6Ks5f5XjTEWoTAH8"
},
"02O0Ea7JGwlLq8faAiv1MN": {
"name": "The Velvet Underground & Nico 45th Anniversary (Super Deluxe Edition)",
"release_date": "1967-03-12",
"uri": "spotify:album:02O0Ea7JGwlLq8faAiv1MN",
"artists": [
{
"name": "The Velvet Underground",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1nJvji2KIlWSseXRSlNYsC"
},
"uri": "spotify:artist:1nJvji2KIlWSseXRSlNYsC",
"href": "https://api.spotify.com/v1/artists/1nJvji2KIlWSseXRSlNYsC",
"type": "artist",
"id": "1nJvji2KIlWSseXRSlNYsC"
},
{
"name": "Nico",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0IwlY33zbBXN7zlS9DP2Cj"
},
"uri": "spotify:artist:0IwlY33zbBXN7zlS9DP2Cj",
"href": "https://api.spotify.com/v1/artists/0IwlY33zbBXN7zlS9DP2Cj",
"type": "artist",
"id": "0IwlY33zbBXN7zlS9DP2Cj"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c2cd65a87aa5698cb06cc251ea42e93fbc0811e0",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9d78b4914bd22dbb6e0198d87467fed32ad955a5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3e421608186c26d69d6466599ddad81107ce45d1",
"width": 64,
"height": 64
}
],
"id": "02O0Ea7JGwlLq8faAiv1MN"
},
"1zcOyLZRT2TyxReQ55AEbM": {
"name": "Figure 8",
"release_date": "2000-04-08",
"uri": "spotify:album:1zcOyLZRT2TyxReQ55AEbM",
"artists": [
{
"name": "Elliott Smith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ApaG60P4r0yhBoDCGD8YG"
},
"uri": "spotify:artist:2ApaG60P4r0yhBoDCGD8YG",
"href": "https://api.spotify.com/v1/artists/2ApaG60P4r0yhBoDCGD8YG",
"type": "artist",
"id": "2ApaG60P4r0yhBoDCGD8YG"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ce84ef0ef918c28b2361435d8f5bd4e2befbeb0a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/aef6f6aaf3c387f07af42794761da132331334c2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5af8917ef3f1e6faf05d20dab5d036eca1c7c12a",
"width": 64,
"height": 64
}
],
"id": "1zcOyLZRT2TyxReQ55AEbM"
},
"6OuZ6jmIIVb7K7tdEVThkG": {
"name": "Hearts And Bones (2011 Remaster)",
"release_date": "1983-11-04",
"uri": "spotify:album:6OuZ6jmIIVb7K7tdEVThkG",
"artists": [
{
"name": "Paul Simon",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2CvCyf1gEVhI0mX6aFXmVI"
},
"uri": "spotify:artist:2CvCyf1gEVhI0mX6aFXmVI",
"href": "https://api.spotify.com/v1/artists/2CvCyf1gEVhI0mX6aFXmVI",
"type": "artist",
"id": "2CvCyf1gEVhI0mX6aFXmVI"
}
],
"images": [
{
"url": "https://i.scdn.co/image/71037c53abd301e8c7d98ab7d49384f09d01e5dc",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/65bc727291d9ac9eec5db9b6b47e95a6b9969298",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7bf054593ebc66965f5b0b8ec54b503986a123df",
"width": 64,
"height": 64
}
],
"id": "6OuZ6jmIIVb7K7tdEVThkG"
},
"07Fr36M0hRPJrSJMFWGnvD": {
"name": "Grace (Legacy Edition)",
"release_date": "1994",
"uri": "spotify:album:07Fr36M0hRPJrSJMFWGnvD",
"artists": [
{
"name": "Jeff Buckley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3nnQpaTvKb5jCQabZefACI"
},
"uri": "spotify:artist:3nnQpaTvKb5jCQabZefACI",
"href": "https://api.spotify.com/v1/artists/3nnQpaTvKb5jCQabZefACI",
"type": "artist",
"id": "3nnQpaTvKb5jCQabZefACI"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5b5f5bea7a6eead5c8711105d399ed5fe33b220b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/da852872ac5bae43d2d39557a5db2f8fd8aac5b3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/60bc4509e36ad9b9c21a2ea12a0e538b238176ff",
"width": 64,
"height": 64
}
],
"id": "07Fr36M0hRPJrSJMFWGnvD"
},
"5dBQ20ppdPxo5bqkoeTKnN": {
"name": "Exile On Main Street (Deluxe Version)",
"release_date": "1972-05-12",
"uri": "spotify:album:5dBQ20ppdPxo5bqkoeTKnN",
"artists": [
{
"name": "The Rolling Stones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe"
},
"uri": "spotify:artist:22bE4uQ6baNwSHPVcDxLCe",
"href": "https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe",
"type": "artist",
"id": "22bE4uQ6baNwSHPVcDxLCe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/62dda9f11d3fe8889e2114ec7785604026384b8a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5857f7fad60c1e6af9f5b601410895e16eeb6ebe",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/98c07e8cee96dcded93268db7d5cde65f08e8439",
"width": 64,
"height": 64
}
],
"id": "5dBQ20ppdPxo5bqkoeTKnN"
},
"5ttDbNMKXczvp0Z8QRgKs6": {
"name": "At Budokan",
"release_date": "1979",
"uri": "spotify:album:5ttDbNMKXczvp0Z8QRgKs6",
"artists": [
{
"name": "Cheap Trick",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1LB8qB5BPb3MHQrfkvifXU"
},
"uri": "spotify:artist:1LB8qB5BPb3MHQrfkvifXU",
"href": "https://api.spotify.com/v1/artists/1LB8qB5BPb3MHQrfkvifXU",
"type": "artist",
"id": "1LB8qB5BPb3MHQrfkvifXU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e65d3b71e4f983e8a2eb65580bb43ea942b34626",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8b00ada452b678eee2ebda2b402a7c9f55525b32",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d7f998d8b3e82fe1c150819259fe55571ebe8e83",
"width": 64,
"height": 64
}
],
"id": "5ttDbNMKXczvp0Z8QRgKs6"
},
"5MQx9U0AAIrcbvZ0lL1RCi": {
"name": "Let's Stay Together",
"release_date": "1972-01-31",
"uri": "spotify:album:5MQx9U0AAIrcbvZ0lL1RCi",
"artists": [
{
"name": "Al Green",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3dkbV4qihUeMsqN4vBGg93"
},
"uri": "spotify:artist:3dkbV4qihUeMsqN4vBGg93",
"href": "https://api.spotify.com/v1/artists/3dkbV4qihUeMsqN4vBGg93",
"type": "artist",
"id": "3dkbV4qihUeMsqN4vBGg93"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3d57b9d3779740384b15cc5e8c1c24efc2bfaf8d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cb2e964016dd8ebf2488649bae6471f885000dfc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f62c45bf256d932e1b87ebcf2d55a48c25c63975",
"width": 64,
"height": 64
}
],
"id": "5MQx9U0AAIrcbvZ0lL1RCi"
},
"76K5i4uyPT6NFjspOsygkX": {
"name": "Bitte Orca (Expanded Edition)",
"release_date": "2009",
"uri": "spotify:album:76K5i4uyPT6NFjspOsygkX",
"artists": [
{
"name": "Dirty Projectors",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5VF0YkVLeVD4ytyiyVSIiF"
},
"uri": "spotify:artist:5VF0YkVLeVD4ytyiyVSIiF",
"href": "https://api.spotify.com/v1/artists/5VF0YkVLeVD4ytyiyVSIiF",
"type": "artist",
"id": "5VF0YkVLeVD4ytyiyVSIiF"
}
],
"images": [
{
"url": "https://i.scdn.co/image/65f7f80f53d041924b072ee6b06aad55478b6b0a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dfa7c34911493bb44c410f58f2d035ff8739d4d9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cccc40740ef0e7557f3fc005b0f260a7e00610a5",
"width": 64,
"height": 64
}
],
"id": "76K5i4uyPT6NFjspOsygkX"
},
"0yPE5s2h0XF9Umc6ENEKE8": {
"name": "Palo Congo",
"release_date": "1957",
"uri": "spotify:album:0yPE5s2h0XF9Umc6ENEKE8",
"artists": [
{
"name": "Sabu",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4n3J3bRVaUm9R4txtKTVuu"
},
"uri": "spotify:artist:4n3J3bRVaUm9R4txtKTVuu",
"href": "https://api.spotify.com/v1/artists/4n3J3bRVaUm9R4txtKTVuu",
"type": "artist",
"id": "4n3J3bRVaUm9R4txtKTVuu"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5a81ca798ba1201b709b6bce9bd695b411bdd101",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8935ec6f4975ce25d9d4653e18f5fd267555b3c7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/425a19159e13378cbb2c32bf4be5992182b0c3b1",
"width": 64,
"height": 64
}
],
"id": "0yPE5s2h0XF9Umc6ENEKE8"
},
"34K1Kvskt9arWy8E1Gz3Lw": {
"name": "Faith",
"release_date": "1987-10-30",
"uri": "spotify:album:34K1Kvskt9arWy8E1Gz3Lw",
"artists": [
{
"name": "George Michael",
"external_urls": {
"spotify": "https://open.spotify.com/artist/19ra5tSw0tWufvUp8GotLo"
},
"uri": "spotify:artist:19ra5tSw0tWufvUp8GotLo",
"href": "https://api.spotify.com/v1/artists/19ra5tSw0tWufvUp8GotLo",
"type": "artist",
"id": "19ra5tSw0tWufvUp8GotLo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b0918e54e212d316e08952621867fbaa296ca2b3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3bf5a8a009d4cd25caef6ba565fa53e2c40a58bb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3459ae5e760756dfaa7e0302c9eb34e15667b5ad",
"width": 64,
"height": 64
}
],
"id": "34K1Kvskt9arWy8E1Gz3Lw"
},
"26tH0kjUhkxBEd3ipGkx3Y": {
"name": "Physical Graffiti (Deluxe Edition)",
"release_date": "2015-02-24",
"uri": "spotify:album:26tH0kjUhkxBEd3ipGkx3Y",
"artists": [
{
"name": "Led Zeppelin",
"external_urls": {
"spotify": "https://open.spotify.com/artist/36QJpDe2go2KgaRleHCDTp"
},
"uri": "spotify:artist:36QJpDe2go2KgaRleHCDTp",
"href": "https://api.spotify.com/v1/artists/36QJpDe2go2KgaRleHCDTp",
"type": "artist",
"id": "36QJpDe2go2KgaRleHCDTp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3bdb3fdc87a4b2069d6c2b6d713106e8ed8745e6",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6483bf709a2233194bf7a92e86ddc0479753a412",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bfd74036aa2c27d1ef3a9345ba77d1aea16349fe",
"width": 64,
"height": 64
}
],
"id": "26tH0kjUhkxBEd3ipGkx3Y"
},
"5JZCCzamSeSAzsePPi632S": {
"name": "Tragic Songs of Life",
"release_date": "2009-04-13",
"uri": "spotify:album:5JZCCzamSeSAzsePPi632S",
"artists": [
{
"name": "The Louvin Brothers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3TUYqYNCqgqeqkBZVyxEi6"
},
"uri": "spotify:artist:3TUYqYNCqgqeqkBZVyxEi6",
"href": "https://api.spotify.com/v1/artists/3TUYqYNCqgqeqkBZVyxEi6",
"type": "artist",
"id": "3TUYqYNCqgqeqkBZVyxEi6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/29b144427a883d03f652060d289ed42e1da2bbc7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6d6398773348dc270f36896520192630d7b92e5b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4c06a528a1c045ae93e277d889cd1445c09cabb6",
"width": 64,
"height": 64
}
],
"id": "5JZCCzamSeSAzsePPi632S"
},
"63Eji2cNg0vH9sYqxg5iHI": {
"name": "Penance Soiree",
"release_date": "2004",
"uri": "spotify:album:63Eji2cNg0vH9sYqxg5iHI",
"artists": [
{
"name": "The Icarus Line",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7hNNgYjg90PZpfzgQE5bgn"
},
"uri": "spotify:artist:7hNNgYjg90PZpfzgQE5bgn",
"href": "https://api.spotify.com/v1/artists/7hNNgYjg90PZpfzgQE5bgn",
"type": "artist",
"id": "7hNNgYjg90PZpfzgQE5bgn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/86c0ee8589284a3783109fda8d099b891f75d7ca",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3baa0834219862c79296ce081734e790bc249950",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/50d23811c1fd1b35467c87d68836539696f31029",
"width": 64,
"height": 64
}
],
"id": "63Eji2cNg0vH9sYqxg5iHI"
},
"0sbAKeTchIsRqECNFjPHSf": {
"name": "Ace of Spades",
"release_date": "1980",
"uri": "spotify:album:0sbAKeTchIsRqECNFjPHSf",
"artists": [
{
"name": "Mot\u00f6rhead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1DFr97A9HnbV3SKTJFu62M"
},
"uri": "spotify:artist:1DFr97A9HnbV3SKTJFu62M",
"href": "https://api.spotify.com/v1/artists/1DFr97A9HnbV3SKTJFu62M",
"type": "artist",
"id": "1DFr97A9HnbV3SKTJFu62M"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cccb3545fd9a4929b255c1bd374dbff2b8da78e7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a61edf780558275054086dd131c85eccc3bbfd61",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/35b85a765d2f2de4f68d93505b181f5a3a201c51",
"width": 64,
"height": 64
}
],
"id": "0sbAKeTchIsRqECNFjPHSf"
},
"4GSidaoqyGNwaG5mNKmuLT": {
"name": "We Are Family [Expanded]",
"release_date": "1979-02-15",
"uri": "spotify:album:4GSidaoqyGNwaG5mNKmuLT",
"artists": [
{
"name": "Sister Sledge",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6gkWznnJkdkwRPVcmnrays"
},
"uri": "spotify:artist:6gkWznnJkdkwRPVcmnrays",
"href": "https://api.spotify.com/v1/artists/6gkWznnJkdkwRPVcmnrays",
"type": "artist",
"id": "6gkWznnJkdkwRPVcmnrays"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a422bd0e3214c50d8a835c609a44411794cfbe60",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/f5923487520457c5e2ff3d4eb1dfc4038e1d9192",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/686341b15ce8029bffdad05d459203d60cf54e6d",
"width": 64,
"height": 64
}
],
"id": "4GSidaoqyGNwaG5mNKmuLT"
},
"1u5BsuBK45mLwrbqdASN3g": {
"name": "Led Zeppelin III",
"release_date": "1970-10-05",
"uri": "spotify:album:1u5BsuBK45mLwrbqdASN3g",
"artists": [
{
"name": "Led Zeppelin",
"external_urls": {
"spotify": "https://open.spotify.com/artist/36QJpDe2go2KgaRleHCDTp"
},
"uri": "spotify:artist:36QJpDe2go2KgaRleHCDTp",
"href": "https://api.spotify.com/v1/artists/36QJpDe2go2KgaRleHCDTp",
"type": "artist",
"id": "36QJpDe2go2KgaRleHCDTp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6ba168517b3965ba6067706ec213fba4dd52c532",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6c9ffeb6fbde6d946f5276d288e1c2c49c8d7324",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1c594cffcb8616f906a87b83dfed5fc8bb0e228c",
"width": 64,
"height": 64
}
],
"id": "1u5BsuBK45mLwrbqdASN3g"
},
"2PXlvqTzGBNetlGct7L5e6": {
"name": "Whatever People Say I Am, That's What I'm Not",
"release_date": "2006",
"uri": "spotify:album:2PXlvqTzGBNetlGct7L5e6",
"artists": [
{
"name": "Arctic Monkeys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7Ln80lUS6He07XvHI8qqHH"
},
"uri": "spotify:artist:7Ln80lUS6He07XvHI8qqHH",
"href": "https://api.spotify.com/v1/artists/7Ln80lUS6He07XvHI8qqHH",
"type": "artist",
"id": "7Ln80lUS6He07XvHI8qqHH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0c8e3f083d109b55244a0b2fed66d2b011dca64d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5e004226de34dc4f79d9d895d2b3c7526e50129f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/00aefc5b71fc3b3330cd70f8cb5e34fa061d5d82",
"width": 64,
"height": 64
}
],
"id": "2PXlvqTzGBNetlGct7L5e6"
},
"2fGCAYUMssLKiUAoNdxGLx": {
"name": "OK Computer",
"release_date": "1997",
"uri": "spotify:album:2fGCAYUMssLKiUAoNdxGLx",
"artists": [
{
"name": "Radiohead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb"
},
"uri": "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb",
"href": "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb",
"type": "artist",
"id": "4Z8W4fKeB5YxbusRsdQVPb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/408a440c4e50d9cb381248b84cfb84824670672b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c1fabe2e86e55234ed060ff5b0cdd8e3ab896560",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/778cf1a615c2fc6b368666046e4af990fa88cd6b",
"width": 64,
"height": 64
}
],
"id": "2fGCAYUMssLKiUAoNdxGLx"
},
"2wCCXYJUgeiRqyIr3ujbMF": {
"name": "Machine Gun Etiquette",
"release_date": "1979",
"uri": "spotify:album:2wCCXYJUgeiRqyIr3ujbMF",
"artists": [
{
"name": "The Damned",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6VeL8VhaMjHTPc5uovFl3h"
},
"uri": "spotify:artist:6VeL8VhaMjHTPc5uovFl3h",
"href": "https://api.spotify.com/v1/artists/6VeL8VhaMjHTPc5uovFl3h",
"type": "artist",
"id": "6VeL8VhaMjHTPc5uovFl3h"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b5b050b2f063b3059a610b06a3e420f2310c9bae",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/37694446bd6a95f58dbb1814ed193a56eef6ba3b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e8a3c501fb3c8ff459560c4e11aa49ad6e13639e",
"width": 64,
"height": 64
}
],
"id": "2wCCXYJUgeiRqyIr3ujbMF"
},
"6VIiHu2RCwWo4151YCG7ND": {
"name": "Pelican West Plus",
"release_date": "1982",
"uri": "spotify:album:6VIiHu2RCwWo4151YCG7ND",
"artists": [
{
"name": "Haircut 100",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6imyM8T1Xbe8v2iZe41dR7"
},
"uri": "spotify:artist:6imyM8T1Xbe8v2iZe41dR7",
"href": "https://api.spotify.com/v1/artists/6imyM8T1Xbe8v2iZe41dR7",
"type": "artist",
"id": "6imyM8T1Xbe8v2iZe41dR7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8dc48bd13b0402e4367091170f8f7978dc4ffdc2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e36d8f80ea191b128175149197e958af6394ed6a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e6776b093905bad680eaaad2f76256652dadfb93",
"width": 64,
"height": 64
}
],
"id": "6VIiHu2RCwWo4151YCG7ND"
},
"1UsmQ3bpJTyK6ygoOOjG1r": {
"name": "Speakerboxxx/The Love Below",
"release_date": "2003",
"uri": "spotify:album:1UsmQ3bpJTyK6ygoOOjG1r",
"artists": [
{
"name": "OutKast",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1G9G7WwrXka3Z1r7aIDjI7"
},
"uri": "spotify:artist:1G9G7WwrXka3Z1r7aIDjI7",
"href": "https://api.spotify.com/v1/artists/1G9G7WwrXka3Z1r7aIDjI7",
"type": "artist",
"id": "1G9G7WwrXka3Z1r7aIDjI7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9ec526ae32d35d99c4ff806342002ed996fdde25",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a8a8b9164bfc6ecba3db5d9ecdcd95c9550a26c5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9b12c29a4fe6a75e7964d0541e058cfd082a9659",
"width": 64,
"height": 64
}
],
"id": "1UsmQ3bpJTyK6ygoOOjG1r"
},
"5iawHcgRuKL5HMRbigdvWC": {
"name": "Searching For The Young Soul Rebels",
"release_date": "1980",
"uri": "spotify:album:5iawHcgRuKL5HMRbigdvWC",
"artists": [
{
"name": "Dexys Midnight Runners",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4QTVePrFu1xuGM9K0kNXkk"
},
"uri": "spotify:artist:4QTVePrFu1xuGM9K0kNXkk",
"href": "https://api.spotify.com/v1/artists/4QTVePrFu1xuGM9K0kNXkk",
"type": "artist",
"id": "4QTVePrFu1xuGM9K0kNXkk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9569ac38b8a9118d33e753945d46edb363ba9bc3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1f68fe8555e66ac3601c0463e408be2411e7cc4c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b03613bc1f24f076691db86607222a513cec06a1",
"width": 64,
"height": 64
}
],
"id": "5iawHcgRuKL5HMRbigdvWC"
},
"3yC9zdT23gxoj0REosSbCE": {
"name": "Basket of Light",
"release_date": "1969",
"uri": "spotify:album:3yC9zdT23gxoj0REosSbCE",
"artists": [
{
"name": "Pentangle",
"external_urls": {
"spotify": "https://open.spotify.com/artist/55wOEGTc3QKwBJ9gntcOxT"
},
"uri": "spotify:artist:55wOEGTc3QKwBJ9gntcOxT",
"href": "https://api.spotify.com/v1/artists/55wOEGTc3QKwBJ9gntcOxT",
"type": "artist",
"id": "55wOEGTc3QKwBJ9gntcOxT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ed4bdd32242409cc5e70de95877dda36b951ea5d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/dcf6bbbc6141be5d98bda429cc9e4156627fb1dc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/994bb590df996b7c21e47b6a3136ff21ad2caab9",
"width": 64,
"height": 64
}
],
"id": "3yC9zdT23gxoj0REosSbCE"
},
"0bEnTj9zImDUVa5G0tXcJK": {
"name": "Tubular Bells 2003",
"release_date": "2003-05-26",
"uri": "spotify:album:0bEnTj9zImDUVa5G0tXcJK",
"artists": [
{
"name": "Mike Oldfield",
"external_urls": {
"spotify": "https://open.spotify.com/artist/562Od3CffWedyz2BbeYWVn"
},
"uri": "spotify:artist:562Od3CffWedyz2BbeYWVn",
"href": "https://api.spotify.com/v1/artists/562Od3CffWedyz2BbeYWVn",
"type": "artist",
"id": "562Od3CffWedyz2BbeYWVn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/71c0dd2de3eaeb1e876fcc52a0c99be79b4b441c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e3c536d93e14b5d42439442fe79045255b788d10",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0636c060ad4d114a118d7e06153297f58b30afd4",
"width": 64,
"height": 64
}
],
"id": "0bEnTj9zImDUVa5G0tXcJK"
},
"4jpHKPCfCxyj8CiDEgjrpT": {
"name": "En-Tact",
"release_date": "1990-03-01",
"uri": "spotify:album:4jpHKPCfCxyj8CiDEgjrpT",
"artists": [
{
"name": "The Shamen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5E704N5StxMVKpalhaJ5L3"
},
"uri": "spotify:artist:5E704N5StxMVKpalhaJ5L3",
"href": "https://api.spotify.com/v1/artists/5E704N5StxMVKpalhaJ5L3",
"type": "artist",
"id": "5E704N5StxMVKpalhaJ5L3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d7da5cead0ed3ff6c770f2de5845628e2303745d",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/04eac7f780cd192207ef50fd5fb41f837479d121",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c37b5cfacdcc70cc44f9304fa0b29c3fedbfbe54",
"width": 64,
"height": 64
}
],
"id": "4jpHKPCfCxyj8CiDEgjrpT"
},
"2i6nd4FV6y7K9fln6eelmR": {
"name": "Make Yourself",
"release_date": "1999-10-26",
"uri": "spotify:album:2i6nd4FV6y7K9fln6eelmR",
"artists": [
{
"name": "Incubus",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3YcBF2ttyueytpXtEzn1Za"
},
"uri": "spotify:artist:3YcBF2ttyueytpXtEzn1Za",
"href": "https://api.spotify.com/v1/artists/3YcBF2ttyueytpXtEzn1Za",
"type": "artist",
"id": "3YcBF2ttyueytpXtEzn1Za"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c4d302dfd080c0e54c4b6fd10ea8d6fa0ed86c11",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/90938733ae6939896670bcca8bfd90ae6aeb3faa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c3f6b6cd0d20835627ace9deca0ab584802a5798",
"width": 64,
"height": 64
}
],
"id": "2i6nd4FV6y7K9fln6eelmR"
},
"5Z1qbz6SLdQnWiVMEJ5MNK": {
"name": "Tellin\u2019 Stories",
"release_date": "1997-04-21",
"uri": "spotify:album:5Z1qbz6SLdQnWiVMEJ5MNK",
"artists": [
{
"name": "The Charlatans",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5fScAXreYFnuqwOgBsJgSd"
},
"uri": "spotify:artist:5fScAXreYFnuqwOgBsJgSd",
"href": "https://api.spotify.com/v1/artists/5fScAXreYFnuqwOgBsJgSd",
"type": "artist",
"id": "5fScAXreYFnuqwOgBsJgSd"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3f1b2b399d36494f3a789791928ded7a430bef2f",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/dd15b2ffc61adbf3e1d4ef75e63fbf4af9854d5d",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/a8b527ff83f82f01389107afff9edccd8662db0b",
"width": 64,
"height": 62
}
],
"id": "5Z1qbz6SLdQnWiVMEJ5MNK"
},
"0HEoXFTgPHGvczXdz9Ty5S": {
"name": "Let's Get Killed",
"release_date": "1997-01-01",
"uri": "spotify:album:0HEoXFTgPHGvczXdz9Ty5S",
"artists": [
{
"name": "David Holmes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/10kGEgP8MxhlfeA2tMinsL"
},
"uri": "spotify:artist:10kGEgP8MxhlfeA2tMinsL",
"href": "https://api.spotify.com/v1/artists/10kGEgP8MxhlfeA2tMinsL",
"type": "artist",
"id": "10kGEgP8MxhlfeA2tMinsL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/87d3f520f42dada9ae52bed98bff2fa139bb2964",
"width": 640,
"height": 633
},
{
"url": "https://i.scdn.co/image/fb7b1f824b5c5c341c05e0b3b6fb19a586c2534b",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/e094f7d4f169bd0ed74f4cc4961f6830a44ccbab",
"width": 64,
"height": 63
}
],
"id": "0HEoXFTgPHGvczXdz9Ty5S"
},
"70lQYZtypdCALtFVlQAcvx": {
"name": "Led Zeppelin II",
"release_date": "1969-10-22",
"uri": "spotify:album:70lQYZtypdCALtFVlQAcvx",
"artists": [
{
"name": "Led Zeppelin",
"external_urls": {
"spotify": "https://open.spotify.com/artist/36QJpDe2go2KgaRleHCDTp"
},
"uri": "spotify:artist:36QJpDe2go2KgaRleHCDTp",
"href": "https://api.spotify.com/v1/artists/36QJpDe2go2KgaRleHCDTp",
"type": "artist",
"id": "36QJpDe2go2KgaRleHCDTp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/84bdbd976b0a3a6b9d423f69c3e23915aa380f78",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/86186b5082c70be197dca2163e2f1c97d1be7104",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8198e0a88353ff445ae18a220bebd3d702093c2e",
"width": 64,
"height": 64
}
],
"id": "70lQYZtypdCALtFVlQAcvx"
},
"47PmvCtma4WBbGQ7SZ78XZ": {
"name": "The Predator (World)",
"release_date": "1992-11-17",
"uri": "spotify:album:47PmvCtma4WBbGQ7SZ78XZ",
"artists": [
{
"name": "Ice Cube",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3Mcii5XWf6E0lrY3Uky4cA"
},
"uri": "spotify:artist:3Mcii5XWf6E0lrY3Uky4cA",
"href": "https://api.spotify.com/v1/artists/3Mcii5XWf6E0lrY3Uky4cA",
"type": "artist",
"id": "3Mcii5XWf6E0lrY3Uky4cA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a91506a69c68afcd0e90f0ea9e9c48956e7b87c4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a1e43a10b21aaaae3609f1db29beda615a68f00b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cf05756fadd29da78d40a574dd370186374915ce",
"width": 64,
"height": 64
}
],
"id": "47PmvCtma4WBbGQ7SZ78XZ"
},
"0eB4vHv83yYk1pMim2NIar": {
"name": "The Best of Dire Straits & Mark Knopfler - Private Investigations (Limited Edition)",
"release_date": "2005-11-07",
"uri": "spotify:album:0eB4vHv83yYk1pMim2NIar",
"artists": [
{
"name": "Mark Knopfler",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0FI0kxP0BWurTz8cB8BBug"
},
"uri": "spotify:artist:0FI0kxP0BWurTz8cB8BBug",
"href": "https://api.spotify.com/v1/artists/0FI0kxP0BWurTz8cB8BBug",
"type": "artist",
"id": "0FI0kxP0BWurTz8cB8BBug"
},
{
"name": "Dire Straits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0WwSkZ7LtFUFjGjMZBMt6T"
},
"uri": "spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T",
"href": "https://api.spotify.com/v1/artists/0WwSkZ7LtFUFjGjMZBMt6T",
"type": "artist",
"id": "0WwSkZ7LtFUFjGjMZBMt6T"
}
],
"images": [
{
"url": "https://i.scdn.co/image/aee98c27ca5f2c48742ac071df819928098bff0b",
"width": 462,
"height": 639
},
{
"url": "https://i.scdn.co/image/98561d3657a13bc260c5e46957ba1e0e00eb58fe",
"width": 217,
"height": 300
},
{
"url": "https://i.scdn.co/image/bd23012a2d8db1caee6373891c77cad61019a3fe",
"width": 46,
"height": 64
}
],
"id": "0eB4vHv83yYk1pMim2NIar"
},
"4z7ma1ujO4FDL1l2YBGw7b": {
"name": "Mama's Gun (UK EDITION WITH BONUS TRACK)",
"release_date": "2000-10-31",
"uri": "spotify:album:4z7ma1ujO4FDL1l2YBGw7b",
"artists": [
{
"name": "Erykah Badu",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7IfculRW2WXyzNQ8djX8WX"
},
"uri": "spotify:artist:7IfculRW2WXyzNQ8djX8WX",
"href": "https://api.spotify.com/v1/artists/7IfculRW2WXyzNQ8djX8WX",
"type": "artist",
"id": "7IfculRW2WXyzNQ8djX8WX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/20b4e105262e1774b55e06af6563fe3201b62dd3",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/531604b045bbd8dec8027e9c7c0b4ec7337c8459",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/559db9ad512ef76174135e3b2bea76408a1fc936",
"width": 64,
"height": 63
}
],
"id": "4z7ma1ujO4FDL1l2YBGw7b"
},
"381xR5GvpBZPVTUm7JQ1x6": {
"name": "Apocalypse Dudes",
"release_date": "1998",
"uri": "spotify:album:381xR5GvpBZPVTUm7JQ1x6",
"artists": [
{
"name": "Turbonegro",
"external_urls": {
"spotify": "https://open.spotify.com/artist/191rVxQbbZ05wcICUSvLkz"
},
"uri": "spotify:artist:191rVxQbbZ05wcICUSvLkz",
"href": "https://api.spotify.com/v1/artists/191rVxQbbZ05wcICUSvLkz",
"type": "artist",
"id": "191rVxQbbZ05wcICUSvLkz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/133de831302173ed74b668c4528dc5719bc004f2",
"width": 600,
"height": 591
},
{
"url": "https://i.scdn.co/image/dadfde02fbaad58333506932da8413b9f76675f9",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/9c7bb3117397c8ecaf6740177ed82801892f3c54",
"width": 64,
"height": 63
}
],
"id": "381xR5GvpBZPVTUm7JQ1x6"
},
"3gUlFM3azK6ZIkKz1zK7Nj": {
"name": "The Hissing Of Summer Lawns",
"release_date": "1975-11-01",
"uri": "spotify:album:3gUlFM3azK6ZIkKz1zK7Nj",
"artists": [
{
"name": "Joni Mitchell",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5hW4L92KnC6dX9t7tYM4Ve"
},
"uri": "spotify:artist:5hW4L92KnC6dX9t7tYM4Ve",
"href": "https://api.spotify.com/v1/artists/5hW4L92KnC6dX9t7tYM4Ve",
"type": "artist",
"id": "5hW4L92KnC6dX9t7tYM4Ve"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a7f64161670edd9c22a424a1581c3f03579910b3",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/d5dd62673544525a4451f89b74582c09821dd8f5",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/bf4c8afc469b33f0b951efd325793399390a2c6f",
"width": 64,
"height": 64
}
],
"id": "3gUlFM3azK6ZIkKz1zK7Nj"
},
"1UFBJkKiBe3Lzjr307UhuU": {
"name": "Risque",
"release_date": "1979",
"uri": "spotify:album:1UFBJkKiBe3Lzjr307UhuU",
"artists": [
{
"name": "CHIC",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0Xf8oDAJYd2D0k3NLI19OV"
},
"uri": "spotify:artist:0Xf8oDAJYd2D0k3NLI19OV",
"href": "https://api.spotify.com/v1/artists/0Xf8oDAJYd2D0k3NLI19OV",
"type": "artist",
"id": "0Xf8oDAJYd2D0k3NLI19OV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/56e924d7b465ea1f06cd9cee85b4f695ce52f844",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/fce7ad18ff873de4ee1b2379dabb85d8bdd4642b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/95ef45476866ccbe7949811676c90eba134e9f56",
"width": 64,
"height": 64
}
],
"id": "1UFBJkKiBe3Lzjr307UhuU"
},
"0RijmFWeKvzWnceR6Ku00X": {
"name": "Pretzel Logic",
"release_date": "1974",
"uri": "spotify:album:0RijmFWeKvzWnceR6Ku00X",
"artists": [
{
"name": "Steely Dan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6P7H3ai06vU1sGvdpBwDmE"
},
"uri": "spotify:artist:6P7H3ai06vU1sGvdpBwDmE",
"href": "https://api.spotify.com/v1/artists/6P7H3ai06vU1sGvdpBwDmE",
"type": "artist",
"id": "6P7H3ai06vU1sGvdpBwDmE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5492401a2abbca8830fa1c34faabd9ba6db0e977",
"width": 638,
"height": 640
},
{
"url": "https://i.scdn.co/image/0e2df1a41846f31cf7ec7d723a675b095ed3e958",
"width": 299,
"height": 300
},
{
"url": "https://i.scdn.co/image/cd6116910dcd88a3247d2bae8a462ee888a5b046",
"width": 64,
"height": 64
}
],
"id": "0RijmFWeKvzWnceR6Ku00X"
},
"4Fk2HFyeCuJ0HVym79jq0H": {
"name": "Bandwagonesque",
"release_date": "1991",
"uri": "spotify:album:4Fk2HFyeCuJ0HVym79jq0H",
"artists": [
{
"name": "Teenage Fanclub",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2Sp19cOHSqAUlE64hekARW"
},
"uri": "spotify:artist:2Sp19cOHSqAUlE64hekARW",
"href": "https://api.spotify.com/v1/artists/2Sp19cOHSqAUlE64hekARW",
"type": "artist",
"id": "2Sp19cOHSqAUlE64hekARW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/09f552411fb1f75fe0c408dc97b25d9d8aa432e5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5acad4af4c27f74a8e614cb50312c03219fb82a2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/70aba6e767f28357de4deb2eb6a0abe55a80488e",
"width": 64,
"height": 64
}
],
"id": "4Fk2HFyeCuJ0HVym79jq0H"
},
"1rpYTarp7Bam68zdhw7EXG": {
"name": "Actually: Further Listening 1987-1988",
"release_date": "1987-09-07",
"uri": "spotify:album:1rpYTarp7Bam68zdhw7EXG",
"artists": [
{
"name": "Pet Shop Boys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2ycnb8Er79LoH2AsR5ldjh"
},
"uri": "spotify:artist:2ycnb8Er79LoH2AsR5ldjh",
"href": "https://api.spotify.com/v1/artists/2ycnb8Er79LoH2AsR5ldjh",
"type": "artist",
"id": "2ycnb8Er79LoH2AsR5ldjh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9341ba94783ae18db5cd07f9bb8cf9d564177723",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e24e5afcaf8a58a036ec4d056592f3c9e1b5381c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/226cc0b338d9133aa855bf4de66175764ec6d5a1",
"width": 64,
"height": 64
}
],
"id": "1rpYTarp7Bam68zdhw7EXG"
},
"3Qo9KlPDgzPGjnZPpxBJS9": {
"name": "Tanto Tempo",
"release_date": "2000",
"uri": "spotify:album:3Qo9KlPDgzPGjnZPpxBJS9",
"artists": [
{
"name": "Bebel Gilberto",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6gk4ierjjSVPoZep27VfZz"
},
"uri": "spotify:artist:6gk4ierjjSVPoZep27VfZz",
"href": "https://api.spotify.com/v1/artists/6gk4ierjjSVPoZep27VfZz",
"type": "artist",
"id": "6gk4ierjjSVPoZep27VfZz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9eb406fafc175b0b0520e4bf19b08caee95978c8",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2a82be9fa51a3d1e898c8fd74a0b1658e1abc37f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/57fc4794090a8bb7ce649fd970b0804080375474",
"width": 64,
"height": 64
}
],
"id": "3Qo9KlPDgzPGjnZPpxBJS9"
},
"07qAsfLKZEKWtUsxhjHYe8": {
"name": "The Greatest Hits... So Far (2011 - Remaster)",
"release_date": "1990",
"uri": "spotify:album:07qAsfLKZEKWtUsxhjHYe8",
"artists": [
{
"name": "Public Image Ltd.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/70MMkLXtue3Edj3RJhJkYp"
},
"uri": "spotify:artist:70MMkLXtue3Edj3RJhJkYp",
"href": "https://api.spotify.com/v1/artists/70MMkLXtue3Edj3RJhJkYp",
"type": "artist",
"id": "70MMkLXtue3Edj3RJhJkYp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e2adec8b571c6919052412a9128c3176184b4b8c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6bd134e7ba876184d410a1f9a0253c40324d9742",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f6735a71b2b082d00589d1a0a23cd31c2f1fe18a",
"width": 64,
"height": 64
}
],
"id": "07qAsfLKZEKWtUsxhjHYe8"
},
"2bjTVISSsvwia7uxrrEsuQ": {
"name": "Deep Purple In Rock - Anniversary Edition",
"release_date": "1970",
"uri": "spotify:album:2bjTVISSsvwia7uxrrEsuQ",
"artists": [
{
"name": "Deep Purple",
"external_urls": {
"spotify": "https://open.spotify.com/artist/568ZhdwyaiCyOGJRtNYhWf"
},
"uri": "spotify:artist:568ZhdwyaiCyOGJRtNYhWf",
"href": "https://api.spotify.com/v1/artists/568ZhdwyaiCyOGJRtNYhWf",
"type": "artist",
"id": "568ZhdwyaiCyOGJRtNYhWf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9c1fd3d6824aca326a7feed9bb3aa81719cf5fff",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d7f4c62549310ce0bc44f9312461395da8696e59",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c8465a02ef76a36b69ac9f756cf385c9975eddf2",
"width": 64,
"height": 64
}
],
"id": "2bjTVISSsvwia7uxrrEsuQ"
},
"04moHShgS3I0ErPt2mTAtd": {
"name": "Music For The Jilted Generation",
"release_date": "1994-07-04",
"uri": "spotify:album:04moHShgS3I0ErPt2mTAtd",
"artists": [
{
"name": "The Prodigy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4k1ELeJKT1ISyDv8JivPpB"
},
"uri": "spotify:artist:4k1ELeJKT1ISyDv8JivPpB",
"href": "https://api.spotify.com/v1/artists/4k1ELeJKT1ISyDv8JivPpB",
"type": "artist",
"id": "4k1ELeJKT1ISyDv8JivPpB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e9fdf9c6daebb2d3a8efbd1ff9b23c8d8cfa3d1e",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/97996ff5ab50936a4494143173bd926c8ec94b36",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/c778e4af08986c9f07b02866980333574d00a416",
"width": 64,
"height": 62
}
],
"id": "04moHShgS3I0ErPt2mTAtd"
},
"7uPAbjMgrzgRkfHOmC4oiZ": {
"name": "Here My Dear Deluxe Edition",
"release_date": "2007-01-01",
"uri": "spotify:album:7uPAbjMgrzgRkfHOmC4oiZ",
"artists": [
{
"name": "Marvin Gaye",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3koiLjNrgRTNbOwViDipeA"
},
"uri": "spotify:artist:3koiLjNrgRTNbOwViDipeA",
"href": "https://api.spotify.com/v1/artists/3koiLjNrgRTNbOwViDipeA",
"type": "artist",
"id": "3koiLjNrgRTNbOwViDipeA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d77262a6b106914788ec879495f849b921c61a0a",
"width": 640,
"height": 569
},
{
"url": "https://i.scdn.co/image/b74b269ec3b48ca3d189e5d171518557cd531dfd",
"width": 300,
"height": 267
},
{
"url": "https://i.scdn.co/image/7945b06bffc23a0549fdf18bbb4509e5e57c0462",
"width": 64,
"height": 57
}
],
"id": "7uPAbjMgrzgRkfHOmC4oiZ"
},
"44zTSVwieUNkAxsiiVD5ro": {
"name": "Diamond Life/Promise/Love Deluxe",
"release_date": "2002-07-29",
"uri": "spotify:album:44zTSVwieUNkAxsiiVD5ro",
"artists": [
{
"name": "Sade",
"external_urls": {
"spotify": "https://open.spotify.com/artist/47zz7sob9NUcODy0BTDvKx"
},
"uri": "spotify:artist:47zz7sob9NUcODy0BTDvKx",
"href": "https://api.spotify.com/v1/artists/47zz7sob9NUcODy0BTDvKx",
"type": "artist",
"id": "47zz7sob9NUcODy0BTDvKx"
}
],
"images": [
{
"url": "https://i.scdn.co/image/65e35c8d500ad4102d10795ae9a878e9801ee327",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/11cefb9fa4c1390142c40cc61401cce4e8096c6d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/18ba52000493aba58153f593986502c75dce3070",
"width": 64,
"height": 64
}
],
"id": "44zTSVwieUNkAxsiiVD5ro"
},
"09AwlP99cHfKVNKv4FC8VW": {
"name": "Jagged Little Pill",
"release_date": "1995-06-09",
"uri": "spotify:album:09AwlP99cHfKVNKv4FC8VW",
"artists": [
{
"name": "Alanis Morissette",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6ogn9necmbUdCppmNnGOdi"
},
"uri": "spotify:artist:6ogn9necmbUdCppmNnGOdi",
"href": "https://api.spotify.com/v1/artists/6ogn9necmbUdCppmNnGOdi",
"type": "artist",
"id": "6ogn9necmbUdCppmNnGOdi"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6cbf1506b7ec34f8141b35bcc88a5ee99f8e6e05",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b45f1b84098251d48f8e257312818ae31784be73",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eafedcc78b6e352b9d9d1790984c2e33953c81ff",
"width": 64,
"height": 64
}
],
"id": "09AwlP99cHfKVNKv4FC8VW"
},
"66dYofRoxuZUUI6xLfHZ2s": {
"name": "Sweetheart Of The Rodeo",
"release_date": "1968-08-30",
"uri": "spotify:album:66dYofRoxuZUUI6xLfHZ2s",
"artists": [
{
"name": "The Byrds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1PCZpxHJz7WAMF8EEq8bfc"
},
"uri": "spotify:artist:1PCZpxHJz7WAMF8EEq8bfc",
"href": "https://api.spotify.com/v1/artists/1PCZpxHJz7WAMF8EEq8bfc",
"type": "artist",
"id": "1PCZpxHJz7WAMF8EEq8bfc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b26829e5909dccc1de1efd5033b0fbf8a3d60a0e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b8ba83cb294c5e3d29e3c595642122f45d5fb94e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2c6076dad082441a5b908d26b943aa0a83d2add2",
"width": 64,
"height": 64
}
],
"id": "66dYofRoxuZUUI6xLfHZ2s"
},
"7qdi1B4jqHEA5NvV34haRP": {
"name": "The Hour Of Bewilderbeast",
"release_date": "2000",
"uri": "spotify:album:7qdi1B4jqHEA5NvV34haRP",
"artists": [
{
"name": "Badly Drawn Boy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/244fcyNSuyhbRlMGfMbYrO"
},
"uri": "spotify:artist:244fcyNSuyhbRlMGfMbYrO",
"href": "https://api.spotify.com/v1/artists/244fcyNSuyhbRlMGfMbYrO",
"type": "artist",
"id": "244fcyNSuyhbRlMGfMbYrO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5b6839ebad9316af072ac0cad7be3a3b4aed2582",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/82e4cf929d37743046301b4e5f79414be05ebfa0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/52860005c026e32ee30627e9611dc22fae24f565",
"width": 64,
"height": 64
}
],
"id": "7qdi1B4jqHEA5NvV34haRP"
},
"30Perjew8HyGkdSmqguYyg": {
"name": "Blood Sugar Sex Magik (Deluxe Version)",
"release_date": "1991-09-24",
"uri": "spotify:album:30Perjew8HyGkdSmqguYyg",
"artists": [
{
"name": "Red Hot Chili Peppers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0L8ExT028jH3ddEcZwqJJ5"
},
"uri": "spotify:artist:0L8ExT028jH3ddEcZwqJJ5",
"href": "https://api.spotify.com/v1/artists/0L8ExT028jH3ddEcZwqJJ5",
"type": "artist",
"id": "0L8ExT028jH3ddEcZwqJJ5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4b506ae477f893b0effb729a299c7261950cb3dc",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/39a7962875c189290dab782c666a2ba7062c2ad6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6b6cab5817bf80e13cf05d6456e13c94ed8e413e",
"width": 64,
"height": 64
}
],
"id": "30Perjew8HyGkdSmqguYyg"
},
"33puYJ2y5qANDenRmL8BS1": {
"name": "Younger Than Yesterday",
"release_date": "1967-02-06",
"uri": "spotify:album:33puYJ2y5qANDenRmL8BS1",
"artists": [
{
"name": "The Byrds",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1PCZpxHJz7WAMF8EEq8bfc"
},
"uri": "spotify:artist:1PCZpxHJz7WAMF8EEq8bfc",
"href": "https://api.spotify.com/v1/artists/1PCZpxHJz7WAMF8EEq8bfc",
"type": "artist",
"id": "1PCZpxHJz7WAMF8EEq8bfc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c321f8a91d319cece7beddcf05e94836ba3b28fd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8f35022acbc6144bc48a548e01e82b450863b0d0",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/086d933070820d1c327e6e98fe25ee1a824ad057",
"width": 64,
"height": 64
}
],
"id": "33puYJ2y5qANDenRmL8BS1"
},
"7xeab5aTYwuQ2G0P7c1WMI": {
"name": "Hypnotised",
"release_date": "1980",
"uri": "spotify:album:7xeab5aTYwuQ2G0P7c1WMI",
"artists": [
{
"name": "The Undertones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2WRStKp4ihGVUzlzWfv1Qt"
},
"uri": "spotify:artist:2WRStKp4ihGVUzlzWfv1Qt",
"href": "https://api.spotify.com/v1/artists/2WRStKp4ihGVUzlzWfv1Qt",
"type": "artist",
"id": "2WRStKp4ihGVUzlzWfv1Qt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d57ff418b3c16f383fed225c6e38bd3c76031adb",
"width": 637,
"height": 640
},
{
"url": "https://i.scdn.co/image/5c6efb64ad81a3b77d35ccb6a5a67cf9830e2f60",
"width": 298,
"height": 300
},
{
"url": "https://i.scdn.co/image/0c6ec2ef0288b4c81f0ad8665e8d2067f2742668",
"width": 64,
"height": 64
}
],
"id": "7xeab5aTYwuQ2G0P7c1WMI"
},
"555WoCHGKNICMGGO7o1eTc": {
"name": "The College Dropout",
"release_date": "2004-01-01",
"uri": "spotify:album:555WoCHGKNICMGGO7o1eTc",
"artists": [
{
"name": "Kanye West",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5K4W6rqBFWDnAN6FQUkS6x"
},
"uri": "spotify:artist:5K4W6rqBFWDnAN6FQUkS6x",
"href": "https://api.spotify.com/v1/artists/5K4W6rqBFWDnAN6FQUkS6x",
"type": "artist",
"id": "5K4W6rqBFWDnAN6FQUkS6x"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0260e69cbe15b7ade0963b707215f145e39b5236",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/2ea6ee2881ffc28e50aafa8254dee27ab9f58220",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/55c58e993745c5b27a411906bb922340ef428bee",
"width": 64,
"height": 63
}
],
"id": "555WoCHGKNICMGGO7o1eTc"
},
"43jEYhOEU6eWL51lk4l3M7": {
"name": "Ocean Rain",
"release_date": "1984-05-04",
"uri": "spotify:album:43jEYhOEU6eWL51lk4l3M7",
"artists": [
{
"name": "Echo And The Bunnymen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0fgYKF9Avljex0L9Wt5b8Z"
},
"uri": "spotify:artist:0fgYKF9Avljex0L9Wt5b8Z",
"href": "https://api.spotify.com/v1/artists/0fgYKF9Avljex0L9Wt5b8Z",
"type": "artist",
"id": "0fgYKF9Avljex0L9Wt5b8Z"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8abee1406c28865c67d350a2ff239b215f98ac99",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/68115c3b33036f276930c1c2934aea4a60ad46bb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/785e0c8d648f775fbb78b48975cef67c80c470a8",
"width": 64,
"height": 64
}
],
"id": "43jEYhOEU6eWL51lk4l3M7"
},
"2azjbHOg6mdA5ABoyZOH4F": {
"name": "I Do Not Want What I Haven't Got",
"release_date": "1990-07-01",
"uri": "spotify:album:2azjbHOg6mdA5ABoyZOH4F",
"artists": [
{
"name": "Sinead O'Connor",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4sD9znwiVFx9cgRPZ42aQ1"
},
"uri": "spotify:artist:4sD9znwiVFx9cgRPZ42aQ1",
"href": "https://api.spotify.com/v1/artists/4sD9znwiVFx9cgRPZ42aQ1",
"type": "artist",
"id": "4sD9znwiVFx9cgRPZ42aQ1"
}
],
"images": [
{
"url": "https://i.scdn.co/image/01b4df83f59e309347a3b8658bea60399c4c1b41",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8c3d9efef8b6ed2902f5bdc03a3a6f8549dd59aa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/244de77e9e6e937fadfbe7e611479eb7c1a51435",
"width": 64,
"height": 64
}
],
"id": "2azjbHOg6mdA5ABoyZOH4F"
},
"1RM3rN15A0HzbItaUZFrNU": {
"name": "Welcome To The Pleasuredome: 25th Anniversary Deluxe Edition",
"release_date": "1984",
"uri": "spotify:album:1RM3rN15A0HzbItaUZFrNU",
"artists": [
{
"name": "Frankie Goes To Hollywood",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1mZu3rO7qSD09GdDpePHhY"
},
"uri": "spotify:artist:1mZu3rO7qSD09GdDpePHhY",
"href": "https://api.spotify.com/v1/artists/1mZu3rO7qSD09GdDpePHhY",
"type": "artist",
"id": "1mZu3rO7qSD09GdDpePHhY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/61fa826c30b0e202ab68f065731109228f410f31",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cfeb9c925b91b5ea1d8d68b81d21508191b96ad3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eb13e7672a85191f3736607c433cfdb0826f5194",
"width": 64,
"height": 64
}
],
"id": "1RM3rN15A0HzbItaUZFrNU"
},
"4DR0GWo7w2GJyQnFVa4jAB": {
"name": "Toxicity",
"release_date": "2001-01-01",
"uri": "spotify:album:4DR0GWo7w2GJyQnFVa4jAB",
"artists": [
{
"name": "System Of A Down",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5eAWCfyUhZtHHtBdNk56l1"
},
"uri": "spotify:artist:5eAWCfyUhZtHHtBdNk56l1",
"href": "https://api.spotify.com/v1/artists/5eAWCfyUhZtHHtBdNk56l1",
"type": "artist",
"id": "5eAWCfyUhZtHHtBdNk56l1"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6923707c921d2bd16f95f05f01a353ad47440223",
"width": 615,
"height": 640
},
{
"url": "https://i.scdn.co/image/a79d8fd7050e8dc5255693e0a49d887ff64f34f4",
"width": 288,
"height": 300
},
{
"url": "https://i.scdn.co/image/135bf775a07ad349531f0f2626c1df13052fd520",
"width": 62,
"height": 64
}
],
"id": "4DR0GWo7w2GJyQnFVa4jAB"
},
"7vCU9jvSESwQNQr6SB9JyS": {
"name": "The Idiot",
"release_date": "1977-09-09",
"uri": "spotify:album:7vCU9jvSESwQNQr6SB9JyS",
"artists": [
{
"name": "Iggy Pop",
"external_urls": {
"spotify": "https://open.spotify.com/artist/33EUXrFKGjpUSGacqEHhU4"
},
"uri": "spotify:artist:33EUXrFKGjpUSGacqEHhU4",
"href": "https://api.spotify.com/v1/artists/33EUXrFKGjpUSGacqEHhU4",
"type": "artist",
"id": "33EUXrFKGjpUSGacqEHhU4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6fd655c1dc88d3e616196916993061c45fd1ab8e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/773cc232a9ba9796f6b4d95804c7449b351f2cfe",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a9849178ee6552392c3ee50c3db5a36717f80371",
"width": 64,
"height": 64
}
],
"id": "7vCU9jvSESwQNQr6SB9JyS"
},
"7AFsTiojVaB2I58oZ1tMRg": {
"name": "Raising Hell",
"release_date": "1986-05-15",
"uri": "spotify:album:7AFsTiojVaB2I58oZ1tMRg",
"artists": [
{
"name": "RUN-DMC",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3CQIn7N5CuRDP8wEI7FiDA"
},
"uri": "spotify:artist:3CQIn7N5CuRDP8wEI7FiDA",
"href": "https://api.spotify.com/v1/artists/3CQIn7N5CuRDP8wEI7FiDA",
"type": "artist",
"id": "3CQIn7N5CuRDP8wEI7FiDA"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c86eba53f995224caead6f565e65b10ee5ed27d6",
"width": 635,
"height": 640
},
{
"url": "https://i.scdn.co/image/e1a16b17492b091182a76b3cdb32b69232cdea09",
"width": 298,
"height": 300
},
{
"url": "https://i.scdn.co/image/ccd72608c82a473899284de383ea0555ed454d9f",
"width": 64,
"height": 64
}
],
"id": "7AFsTiojVaB2I58oZ1tMRg"
},
"3PpTsdpZmaLUh6RvViu9G7": {
"name": "Odelay",
"release_date": "1996-05-20",
"uri": "spotify:album:3PpTsdpZmaLUh6RvViu9G7",
"artists": [
{
"name": "Beck",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3vbKDsSS70ZX9D2OcvbZmS"
},
"uri": "spotify:artist:3vbKDsSS70ZX9D2OcvbZmS",
"href": "https://api.spotify.com/v1/artists/3vbKDsSS70ZX9D2OcvbZmS",
"type": "artist",
"id": "3vbKDsSS70ZX9D2OcvbZmS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f2154193398708f1611d44486cdc9876022c4be3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/1aa8e7cd9c52832e89ad0807b2b91da593ef5e20",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/95665ca5113d854b26dcce12f946e2e1d8626bf7",
"width": 64,
"height": 64
}
],
"id": "3PpTsdpZmaLUh6RvViu9G7"
},
"2Bg8pK6oVd4Eqg3vJNRfxJ": {
"name": "Arthur (Or the Decline and Fall of the British Empire) [Bonus Track Version - Reissue]",
"release_date": "1969-10-10",
"uri": "spotify:album:2Bg8pK6oVd4Eqg3vJNRfxJ",
"artists": [
{
"name": "The Kinks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E"
},
"uri": "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E",
"href": "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E",
"type": "artist",
"id": "1SQRv42e4PjEYfPhS0Tk9E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f1c94bfa123eee432aebffecab5ba7c1aa65b2dd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7b473f17f3728288927426f7dec0fcbd00c30c77",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/863667b3c85434e8700bf6bc3b3ac398357512ca",
"width": 64,
"height": 64
}
],
"id": "2Bg8pK6oVd4Eqg3vJNRfxJ"
},
"4vnifPGsZxxd1uiTxlB6u3": {
"name": "Group Sex",
"release_date": "1980",
"uri": "spotify:album:4vnifPGsZxxd1uiTxlB6u3",
"artists": [
{
"name": "Circle Jerks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4ubY8RYfXkcEqgjEMDuLYl"
},
"uri": "spotify:artist:4ubY8RYfXkcEqgjEMDuLYl",
"href": "https://api.spotify.com/v1/artists/4ubY8RYfXkcEqgjEMDuLYl",
"type": "artist",
"id": "4ubY8RYfXkcEqgjEMDuLYl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8a66c77a43998c0048866e3bf966c137d5bebdd3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/edc1dc244fc2982c7fdf25f6fe44f3fe3ffd2b75",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fba77294a3769fdb12a00a4e91ea9f9a4f948809",
"width": 64,
"height": 64
}
],
"id": "4vnifPGsZxxd1uiTxlB6u3"
},
"5dmYtZVJ1bG9RyrZBRrkOA": {
"name": "Moon Safari",
"release_date": "1998-01-16",
"uri": "spotify:album:5dmYtZVJ1bG9RyrZBRrkOA",
"artists": [
{
"name": "Air",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1P6U1dCeHxPui5pIrGmndZ"
},
"uri": "spotify:artist:1P6U1dCeHxPui5pIrGmndZ",
"href": "https://api.spotify.com/v1/artists/1P6U1dCeHxPui5pIrGmndZ",
"type": "artist",
"id": "1P6U1dCeHxPui5pIrGmndZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0eac9b7d15bac9f705f89a62a5e7a52c5096e813",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/eba315b54484b420d68a6dc95914ef2c565533dc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/77d116e8686363633fc10005d77a7f2103ecd9e8",
"width": 64,
"height": 64
}
],
"id": "5dmYtZVJ1bG9RyrZBRrkOA"
},
"6344rkGqCBDenGoS7eJlBN": {
"name": "Close To The Edge (Deluxe Version)",
"release_date": "1972-09-13",
"uri": "spotify:album:6344rkGqCBDenGoS7eJlBN",
"artists": [
{
"name": "Yes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7AC976RDJzL2asmZuz7qil"
},
"uri": "spotify:artist:7AC976RDJzL2asmZuz7qil",
"href": "https://api.spotify.com/v1/artists/7AC976RDJzL2asmZuz7qil",
"type": "artist",
"id": "7AC976RDJzL2asmZuz7qil"
}
],
"images": [
{
"url": "https://i.scdn.co/image/406f837be4cf7dc3a51b606e6c03dbceca76ceee",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f4c0d26f431014fa0ebe48a057df239634101f14",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c776f126a7aa1f1a47893a7907682419db5ff9b6",
"width": 64,
"height": 64
}
],
"id": "6344rkGqCBDenGoS7eJlBN"
},
"5YXdaFaKNCVX9hXpXqjwXz": {
"name": "California Dreamin' - The Best of The Mamas & The Papas",
"release_date": "2006-08-14",
"uri": "spotify:album:5YXdaFaKNCVX9hXpXqjwXz",
"artists": [
{
"name": "The Mamas & The Papas",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1bs7HoMkSyQwcobCpE9KpN"
},
"uri": "spotify:artist:1bs7HoMkSyQwcobCpE9KpN",
"href": "https://api.spotify.com/v1/artists/1bs7HoMkSyQwcobCpE9KpN",
"type": "artist",
"id": "1bs7HoMkSyQwcobCpE9KpN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4e614de72c8d0336b6bb871b8c918fdfecd34af9",
"width": 640,
"height": 635
},
{
"url": "https://i.scdn.co/image/4863280c2174fc3d385056da4bfe8883d917adfc",
"width": 300,
"height": 298
},
{
"url": "https://i.scdn.co/image/4e01b6a5dcc4992a4d50d797086ba199a2c757ec",
"width": 64,
"height": 64
}
],
"id": "5YXdaFaKNCVX9hXpXqjwXz"
},
"2aGFVLz0oQPa3uxCfq9lcU": {
"name": "Green Onions",
"release_date": "1962",
"uri": "spotify:album:2aGFVLz0oQPa3uxCfq9lcU",
"artists": [
{
"name": "Booker T. & The MG's",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2vDV0T8sxx2ENnKXds75e5"
},
"uri": "spotify:artist:2vDV0T8sxx2ENnKXds75e5",
"href": "https://api.spotify.com/v1/artists/2vDV0T8sxx2ENnKXds75e5",
"type": "artist",
"id": "2vDV0T8sxx2ENnKXds75e5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/deca4956b3d5f4dbda204683e8b3af82cfc51f89",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/822693478f008d58bd47af7de8a00cc88dc0605f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/2dae7383ab32514335168445a22b3b01bc84b733",
"width": 64,
"height": 64
}
],
"id": "2aGFVLz0oQPa3uxCfq9lcU"
},
"4usPTyIIgnAZ9eiItfEYSK": {
"name": "If You're Feeling Sinister",
"release_date": "1996-11-18",
"uri": "spotify:album:4usPTyIIgnAZ9eiItfEYSK",
"artists": [
{
"name": "Belle & Sebastian",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4I2BJf80C0skQpp1sQmA0h"
},
"uri": "spotify:artist:4I2BJf80C0skQpp1sQmA0h",
"href": "https://api.spotify.com/v1/artists/4I2BJf80C0skQpp1sQmA0h",
"type": "artist",
"id": "4I2BJf80C0skQpp1sQmA0h"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cb841d3435a6de7390fa91a19932d70fc1a3bab2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4f930aa36e6e1d4763fc7a50174b21306986c0ea",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ae42c4edd1314d149cd57d8796ea560d696c36a1",
"width": 64,
"height": 64
}
],
"id": "4usPTyIIgnAZ9eiItfEYSK"
},
"5naX4skWwnHntwMccG7Omn": {
"name": "This Nation\u2019s Saving Grace",
"release_date": "1985",
"uri": "spotify:album:5naX4skWwnHntwMccG7Omn",
"artists": [
{
"name": "The Fall",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6WoTvA9qinpHtSRJuldYh6"
},
"uri": "spotify:artist:6WoTvA9qinpHtSRJuldYh6",
"href": "https://api.spotify.com/v1/artists/6WoTvA9qinpHtSRJuldYh6",
"type": "artist",
"id": "6WoTvA9qinpHtSRJuldYh6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/eaab627e7d29fa90e43c8d1b3952414523fc39c7",
"width": 600,
"height": 580
},
{
"url": "https://i.scdn.co/image/754e338835d1d07d609b1ad7806ca3c1f92d182c",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/851e8894cc3e365abc5ccdb28ba2fe7eb5444f4e",
"width": 64,
"height": 62
}
],
"id": "5naX4skWwnHntwMccG7Omn"
},
"0IXPDVnECWSt6NFLDlgpoC": {
"name": "Viva! Hysteria (Original Soundtrack)",
"release_date": "2013-10-18",
"uri": "spotify:album:0IXPDVnECWSt6NFLDlgpoC",
"artists": [
{
"name": "Def Leppard",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6H1RjVyNruCmrBEWRbD0VZ"
},
"uri": "spotify:artist:6H1RjVyNruCmrBEWRbD0VZ",
"href": "https://api.spotify.com/v1/artists/6H1RjVyNruCmrBEWRbD0VZ",
"type": "artist",
"id": "6H1RjVyNruCmrBEWRbD0VZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/ec3432de048b9644aa9f68fdc2baf4a48b9663b5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c217152848f2ba4788e0b00975a3c506adfa1831",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d09d5458633209a5a8777a89b710e3b28ec1a608",
"width": 64,
"height": 64
}
],
"id": "0IXPDVnECWSt6NFLDlgpoC"
},
"31Sx9uz9KqlvmX07Pvp0wN": {
"name": "Life Thru A Lens",
"release_date": "1997-01-01",
"uri": "spotify:album:31Sx9uz9KqlvmX07Pvp0wN",
"artists": [
{
"name": "Robbie Williams",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2HcwFjNelS49kFbfvMxQYw"
},
"uri": "spotify:artist:2HcwFjNelS49kFbfvMxQYw",
"href": "https://api.spotify.com/v1/artists/2HcwFjNelS49kFbfvMxQYw",
"type": "artist",
"id": "2HcwFjNelS49kFbfvMxQYw"
}
],
"images": [
{
"url": "https://i.scdn.co/image/60f590b053fcc709c07858748106b023dfbccba3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ca1896805594f40fe823b594a64c064a0a86d40f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/161df9565f2cfc9fe75ca7166a3e015cb79858e3",
"width": 64,
"height": 64
}
],
"id": "31Sx9uz9KqlvmX07Pvp0wN"
},
"1Bmuyq89rXZJNK1w8pauEg": {
"name": "Exit Planet Dust",
"release_date": "1995-08-08",
"uri": "spotify:album:1Bmuyq89rXZJNK1w8pauEg",
"artists": [
{
"name": "The Chemical Brothers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1GhPHrq36VKCY3ucVaZCfo"
},
"uri": "spotify:artist:1GhPHrq36VKCY3ucVaZCfo",
"href": "https://api.spotify.com/v1/artists/1GhPHrq36VKCY3ucVaZCfo",
"type": "artist",
"id": "1GhPHrq36VKCY3ucVaZCfo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5fba7a3e82e3818461f51701035297c57d32d171",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f0d28c22d4c5448560e2ca0c22b2fe4a5fe4e908",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f96e64bbe9747bd3435e121fdac6283cd28a8740",
"width": 64,
"height": 64
}
],
"id": "1Bmuyq89rXZJNK1w8pauEg"
},
"3vCMmrJEx8CBtW4Hh0ehdl": {
"name": "I Want To See The Bright Lights Tonight",
"release_date": "1974",
"uri": "spotify:album:3vCMmrJEx8CBtW4Hh0ehdl",
"artists": [
{
"name": "Richard Thompson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5w75MoT8FfcGOMgjgrj1cz"
},
"uri": "spotify:artist:5w75MoT8FfcGOMgjgrj1cz",
"href": "https://api.spotify.com/v1/artists/5w75MoT8FfcGOMgjgrj1cz",
"type": "artist",
"id": "5w75MoT8FfcGOMgjgrj1cz"
},
{
"name": "Linda Thompson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4ktfLBwmywJsDFeBsce3F6"
},
"uri": "spotify:artist:4ktfLBwmywJsDFeBsce3F6",
"href": "https://api.spotify.com/v1/artists/4ktfLBwmywJsDFeBsce3F6",
"type": "artist",
"id": "4ktfLBwmywJsDFeBsce3F6"
},
{
"name": "Richard And Linda Thompson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4hw4TPMyAzHqNBcWtoDrK5"
},
"uri": "spotify:artist:4hw4TPMyAzHqNBcWtoDrK5",
"href": "https://api.spotify.com/v1/artists/4hw4TPMyAzHqNBcWtoDrK5",
"type": "artist",
"id": "4hw4TPMyAzHqNBcWtoDrK5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1bfdeeeb0860a445a366f8f3bf977732bd5f1a36",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/feaa0e0ea13916adde4335a4c794c84e9dd77f64",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e09825051ef8ecf1e6ebfb4c1e01baa6a4a4bb9f",
"width": 64,
"height": 64
}
],
"id": "3vCMmrJEx8CBtW4Hh0ehdl"
},
"0JnN0ZgNrYxz3Gk725HiAd": {
"name": "The Slim Shady LP",
"release_date": "1999-02-23",
"uri": "spotify:album:0JnN0ZgNrYxz3Gk725HiAd",
"artists": [
{
"name": "Eminem",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7dGJo4pcD2V6oG8kP0tJRR"
},
"uri": "spotify:artist:7dGJo4pcD2V6oG8kP0tJRR",
"href": "https://api.spotify.com/v1/artists/7dGJo4pcD2V6oG8kP0tJRR",
"type": "artist",
"id": "7dGJo4pcD2V6oG8kP0tJRR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/be56b27125c02ccbffec64f64752ad83faa414b0",
"width": 640,
"height": 629
},
{
"url": "https://i.scdn.co/image/86c91c6d4df8e9e2a6e61e658a8cf72f45153501",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/120516dd1204f96ec1f15859410e2fc7049ad6bc",
"width": 64,
"height": 63
}
],
"id": "0JnN0ZgNrYxz3Gk725HiAd"
},
"1UuXxohFdBe53FTv780i2Z": {
"name": "Better Living Through Chemistry",
"release_date": "1996",
"uri": "spotify:album:1UuXxohFdBe53FTv780i2Z",
"artists": [
{
"name": "Fatboy Slim",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4Y7tXHSEejGu1vQ9bwDdXW"
},
"uri": "spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW",
"href": "https://api.spotify.com/v1/artists/4Y7tXHSEejGu1vQ9bwDdXW",
"type": "artist",
"id": "4Y7tXHSEejGu1vQ9bwDdXW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d612fe14e5161f3777e4f8afdb064dfa7ede0cd9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3037e42b63ce76396698a3054cdf8d1e60efe2d5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d1fac06b7f1b43d3c2e70b9e850c59077b2c6dd3",
"width": 64,
"height": 64
}
],
"id": "1UuXxohFdBe53FTv780i2Z"
},
"3rCtKLmTi3yf2kRbolwWaV": {
"name": "Kings Of The Wild Frontier",
"release_date": "1980",
"uri": "spotify:album:3rCtKLmTi3yf2kRbolwWaV",
"artists": [
{
"name": "Adam & The Ants",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2DppeCnNtvrLfEobq9Pw5r"
},
"uri": "spotify:artist:2DppeCnNtvrLfEobq9Pw5r",
"href": "https://api.spotify.com/v1/artists/2DppeCnNtvrLfEobq9Pw5r",
"type": "artist",
"id": "2DppeCnNtvrLfEobq9Pw5r"
}
],
"images": [
{
"url": "https://i.scdn.co/image/28c94af0586dc5f0437b06ab5935c20abcdd96b7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7b0b0804847d9d5e62af68dfcfd98e4eda7e91d8",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e09e18b73c100177814b5bcef98a18888e0976ec",
"width": 64,
"height": 64
}
],
"id": "3rCtKLmTi3yf2kRbolwWaV"
},
"50Hpr8aPftPZNTvsJU7N3f": {
"name": "Mama Said Knock You Out",
"release_date": "1990-08-27",
"uri": "spotify:album:50Hpr8aPftPZNTvsJU7N3f",
"artists": [
{
"name": "LL Cool J",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1P8IfcNKwrkQP5xJWuhaOC"
},
"uri": "spotify:artist:1P8IfcNKwrkQP5xJWuhaOC",
"href": "https://api.spotify.com/v1/artists/1P8IfcNKwrkQP5xJWuhaOC",
"type": "artist",
"id": "1P8IfcNKwrkQP5xJWuhaOC"
}
],
"images": [
{
"url": "https://i.scdn.co/image/62e93559b61732d8d0f5e091bdacd3eea5510858",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/b345629fe28519c09f0de095790bac8e7149c026",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/ee0349dfdf8b8acce598b9d022a8833d52dedfac",
"width": 64,
"height": 63
}
],
"id": "50Hpr8aPftPZNTvsJU7N3f"
},
"459tNoDnuv0bL9ue9pENVz": {
"name": "Walking Wounded",
"release_date": "1996",
"uri": "spotify:album:459tNoDnuv0bL9ue9pENVz",
"artists": [
{
"name": "Everything But The Girl",
"external_urls": {
"spotify": "https://open.spotify.com/artist/13ccXrK7AmXb4TddMkE7jy"
},
"uri": "spotify:artist:13ccXrK7AmXb4TddMkE7jy",
"href": "https://api.spotify.com/v1/artists/13ccXrK7AmXb4TddMkE7jy",
"type": "artist",
"id": "13ccXrK7AmXb4TddMkE7jy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/acf0aaf3046c7f1541904a9ddcc7f325696f3731",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b33def0a98434c968be34ce475c1a8d7a7ec2fda",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/29e5114b1bf5fb55cbfcc1182eb1aa4061dcb807",
"width": 64,
"height": 64
}
],
"id": "459tNoDnuv0bL9ue9pENVz"
},
"6DJEPyUk9Vqvq5Rh8HD7D8": {
"name": "No Sleep 'Til Hammersmith (Live) [Expanded Edition]",
"release_date": "2008",
"uri": "spotify:album:6DJEPyUk9Vqvq5Rh8HD7D8",
"artists": [
{
"name": "Mot\u00f6rhead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1DFr97A9HnbV3SKTJFu62M"
},
"uri": "spotify:artist:1DFr97A9HnbV3SKTJFu62M",
"href": "https://api.spotify.com/v1/artists/1DFr97A9HnbV3SKTJFu62M",
"type": "artist",
"id": "1DFr97A9HnbV3SKTJFu62M"
}
],
"images": [
{
"url": "https://i.scdn.co/image/bbf962678dbc3349aaf104ae6c62996bb8ab4530",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4e284e1cc6118e5af8cfccafb68c1e844542d6ca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8793fb029a890e73bfeba834daf425ac80e6bc6f",
"width": 64,
"height": 64
}
],
"id": "6DJEPyUk9Vqvq5Rh8HD7D8"
},
"45YmvYK4hB4CgQgTMuNRm8": {
"name": "Violator",
"release_date": "1990-03-19",
"uri": "spotify:album:45YmvYK4hB4CgQgTMuNRm8",
"artists": [
{
"name": "Depeche Mode",
"external_urls": {
"spotify": "https://open.spotify.com/artist/762310PdDnwsDxAQxzQkfX"
},
"uri": "spotify:artist:762310PdDnwsDxAQxzQkfX",
"href": "https://api.spotify.com/v1/artists/762310PdDnwsDxAQxzQkfX",
"type": "artist",
"id": "762310PdDnwsDxAQxzQkfX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/698face89159a1e7f089eebf1b367eff5b431113",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d03afbc90d4ad998eb9d65cbd764d122cbf68c8d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d72c3b3ca4cd5513312fd44c522366ea3402994a",
"width": 64,
"height": 64
}
],
"id": "45YmvYK4hB4CgQgTMuNRm8"
},
"0ZIlM7A6pZyNhfohaWjauj": {
"name": "Celebrity Skin",
"release_date": "1998-01-01",
"uri": "spotify:album:0ZIlM7A6pZyNhfohaWjauj",
"artists": [
{
"name": "Hole",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5SHQUMAmEK5KmuSb0aDvsn"
},
"uri": "spotify:artist:5SHQUMAmEK5KmuSb0aDvsn",
"href": "https://api.spotify.com/v1/artists/5SHQUMAmEK5KmuSb0aDvsn",
"type": "artist",
"id": "5SHQUMAmEK5KmuSb0aDvsn"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c73d28fd77c1293a25700d24638bdc09b5c22be9",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ef5dd7e57f88fc9266f6c713f83eddbc3067b810",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7d8085272160f81644c9bda7750096dbdc7eabc0",
"width": 64,
"height": 64
}
],
"id": "0ZIlM7A6pZyNhfohaWjauj"
},
"1tf86cbNXgFpRDntcj3EDb": {
"name": "Another Music In A Different Kitchen (Special Edition)",
"release_date": "1978",
"uri": "spotify:album:1tf86cbNXgFpRDntcj3EDb",
"artists": [
{
"name": "Buzzcocks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2DxlS3lTLFIq70S7ap5H3y"
},
"uri": "spotify:artist:2DxlS3lTLFIq70S7ap5H3y",
"href": "https://api.spotify.com/v1/artists/2DxlS3lTLFIq70S7ap5H3y",
"type": "artist",
"id": "2DxlS3lTLFIq70S7ap5H3y"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f7e1078966febbca8b9226be4cc90271e6b26e54",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/39184be5102812023835cd9e8be2b3eb0c7b8408",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b0075ae4203358271e9ab5ab12fcad9a2a12aaca",
"width": 64,
"height": 64
}
],
"id": "1tf86cbNXgFpRDntcj3EDb"
},
"2SBAAtgdyjgfTO1UMHnza1": {
"name": "Elvis Is Back",
"release_date": "1960",
"uri": "spotify:album:2SBAAtgdyjgfTO1UMHnza1",
"artists": [
{
"name": "Elvis Presley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/43ZHCT0cAZBISjO8DG9PnE"
},
"uri": "spotify:artist:43ZHCT0cAZBISjO8DG9PnE",
"href": "https://api.spotify.com/v1/artists/43ZHCT0cAZBISjO8DG9PnE",
"type": "artist",
"id": "43ZHCT0cAZBISjO8DG9PnE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/68774b1504d0965d1532dce3098156804df4ee18",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/903fc26fa6fff6c6c957de07fc562bbdec0d026c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c1a5c15a6c9ebe6782210477a25f3b7b105febb1",
"width": 64,
"height": 64
}
],
"id": "2SBAAtgdyjgfTO1UMHnza1"
},
"23vvbZr2ZDlJNZftFAkCqO": {
"name": "Kala",
"release_date": "2007-08-20",
"uri": "spotify:album:23vvbZr2ZDlJNZftFAkCqO",
"artists": [
{
"name": "M.I.A.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0QJIPDAEDILuo8AIq3pMuU"
},
"uri": "spotify:artist:0QJIPDAEDILuo8AIq3pMuU",
"href": "https://api.spotify.com/v1/artists/0QJIPDAEDILuo8AIq3pMuU",
"type": "artist",
"id": "0QJIPDAEDILuo8AIq3pMuU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a9044f315c426763d6be9b74b0a0627a70dc944e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ee693e41d6e261fca5f80d4e059afe0498a54f26",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/237f2c68e5d295f4dd1ea3e9f3ff0f9747130a91",
"width": 64,
"height": 64
}
],
"id": "23vvbZr2ZDlJNZftFAkCqO"
},
"2widuo17g5CEC66IbzveRu": {
"name": "Hotel California (Remastered)",
"release_date": "1976",
"uri": "spotify:album:2widuo17g5CEC66IbzveRu",
"artists": [
{
"name": "Eagles",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0ECwFtbIWEVNwjlrfc6xoL"
},
"uri": "spotify:artist:0ECwFtbIWEVNwjlrfc6xoL",
"href": "https://api.spotify.com/v1/artists/0ECwFtbIWEVNwjlrfc6xoL",
"type": "artist",
"id": "0ECwFtbIWEVNwjlrfc6xoL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/909738f4a26967cf4a1c94d8fb5287c540aa9933",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/470e6660ebe014f52236c7cc723037e8fab562c2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7d80d236f2be6209b41be592b63c7ebfe44946c6",
"width": 64,
"height": 64
}
],
"id": "2widuo17g5CEC66IbzveRu"
},
"0N20j3CnqBsGPBWABk3xr1": {
"name": "The Many Sides Of Fred Neil",
"release_date": "1998",
"uri": "spotify:album:0N20j3CnqBsGPBWABk3xr1",
"artists": [
{
"name": "Fred Neil",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3xmUdkZUQbtMM62XP4nnb6"
},
"uri": "spotify:artist:3xmUdkZUQbtMM62XP4nnb6",
"href": "https://api.spotify.com/v1/artists/3xmUdkZUQbtMM62XP4nnb6",
"type": "artist",
"id": "3xmUdkZUQbtMM62XP4nnb6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a05f3335141b1d684dffb1a08ae6849afdc65e1a",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/e4f8532945afac019ebd9f0a73113c581ef59b8e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/02741efffad06a1b1930bf9c22958f82b5326f14",
"width": 64,
"height": 64
}
],
"id": "0N20j3CnqBsGPBWABk3xr1"
},
"6gKMWnGptVs6yT2MgCxw29": {
"name": "For Your Pleasure",
"release_date": "1973-03-01",
"uri": "spotify:album:6gKMWnGptVs6yT2MgCxw29",
"artists": [
{
"name": "Roxy Music",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3fhOTtm0LBJ3Ojn4hIljLo"
},
"uri": "spotify:artist:3fhOTtm0LBJ3Ojn4hIljLo",
"href": "https://api.spotify.com/v1/artists/3fhOTtm0LBJ3Ojn4hIljLo",
"type": "artist",
"id": "3fhOTtm0LBJ3Ojn4hIljLo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cef63fdc490b03b894090368ba4b57de40f44268",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/aa6a0559d282a39fb3fb1cfee382c353f8120a21",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0c5f471fd47870731018bc514f8a1e38946dac16",
"width": 64,
"height": 64
}
],
"id": "6gKMWnGptVs6yT2MgCxw29"
},
"7wvOewuyOTcqyE5Xog0dp8": {
"name": "Maverick A Strike",
"release_date": "1997-08-06",
"uri": "spotify:album:7wvOewuyOTcqyE5Xog0dp8",
"artists": [
{
"name": "Finley Quaye",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1pf3joSSGlPRxmUoWSsh1W"
},
"uri": "spotify:artist:1pf3joSSGlPRxmUoWSsh1W",
"href": "https://api.spotify.com/v1/artists/1pf3joSSGlPRxmUoWSsh1W",
"type": "artist",
"id": "1pf3joSSGlPRxmUoWSsh1W"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4a488fb6b617bcb4554a57433b46a44bdb3c1802",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9e91afe31b814bfcc4b1c3590ff5870769662008",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bfcc52fb7ed5f89bf6bbe323594021e0405abde6",
"width": 64,
"height": 64
}
],
"id": "7wvOewuyOTcqyE5Xog0dp8"
},
"1EWxoAI46f24l0NDCw6m1u": {
"name": "Vincebus Eruptum",
"release_date": "1968",
"uri": "spotify:album:1EWxoAI46f24l0NDCw6m1u",
"artists": [
{
"name": "Blue Cheer",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4PI5IHRvANLL76O5gRmGKL"
},
"uri": "spotify:artist:4PI5IHRvANLL76O5gRmGKL",
"href": "https://api.spotify.com/v1/artists/4PI5IHRvANLL76O5gRmGKL",
"type": "artist",
"id": "4PI5IHRvANLL76O5gRmGKL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/803660b3c95cf0eb5a0503b64a0ea5219810b67a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6a8f44cccd0f12041a79162fd056c5de84019810",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/fadf0fb6fc499f4517e00c1a184b2a9920b1b6c5",
"width": 64,
"height": 64
}
],
"id": "1EWxoAI46f24l0NDCw6m1u"
},
"3Kkocxhs4Ek537j67DFNd7": {
"name": "Screamadelica",
"release_date": "1991",
"uri": "spotify:album:3Kkocxhs4Ek537j67DFNd7",
"artists": [
{
"name": "Primal Scream",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3wury2nd8idV4GecUg5xze"
},
"uri": "spotify:artist:3wury2nd8idV4GecUg5xze",
"href": "https://api.spotify.com/v1/artists/3wury2nd8idV4GecUg5xze",
"type": "artist",
"id": "3wury2nd8idV4GecUg5xze"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5ece6deff77c5bd9462d85a559383e45a68df319",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/44a04c158a0ccaa4da7798d9b6f7492c6ef2f03c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c364891f22de1526ebc0102a1864a4c2611d85ae",
"width": 64,
"height": 64
}
],
"id": "3Kkocxhs4Ek537j67DFNd7"
},
"3kQpBS26lAj0A0VGl1snRl": {
"name": "Gunfighter Ballads And Trail Songs",
"release_date": "1959",
"uri": "spotify:album:3kQpBS26lAj0A0VGl1snRl",
"artists": [
{
"name": "Marty Robbins",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0Xi59sEw38vRvwleSAVqoo"
},
"uri": "spotify:artist:0Xi59sEw38vRvwleSAVqoo",
"href": "https://api.spotify.com/v1/artists/0Xi59sEw38vRvwleSAVqoo",
"type": "artist",
"id": "0Xi59sEw38vRvwleSAVqoo"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3d633aaf6ac8e62f6b77a40e62403609d660e724",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/c93e448becc81045daeb87c32bf78a0395306610",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/cf2df1240071c9f83c0285099e293639342c44cd",
"width": 64,
"height": 64
}
],
"id": "3kQpBS26lAj0A0VGl1snRl"
},
"2tSRe2rkdJvZWMOIZpu6lk": {
"name": "Selling England By The Pound",
"release_date": "1973-10-12",
"uri": "spotify:album:2tSRe2rkdJvZWMOIZpu6lk",
"artists": [
{
"name": "Genesis",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3CkvROUTQ6nRi9yQOcsB50"
},
"uri": "spotify:artist:3CkvROUTQ6nRi9yQOcsB50",
"href": "https://api.spotify.com/v1/artists/3CkvROUTQ6nRi9yQOcsB50",
"type": "artist",
"id": "3CkvROUTQ6nRi9yQOcsB50"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f652cc4d0f26b21e6f6d1d6a971b1241122d8804",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/adabc63e2d4b701a5b6c8880218f303972b17126",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7731128a7f41b626390802f035ee40f606f479c6",
"width": 64,
"height": 64
}
],
"id": "2tSRe2rkdJvZWMOIZpu6lk"
},
"12kGm2wnSr2jX0q2SxT7mI": {
"name": "Hms Fable",
"release_date": "1999-06-19",
"uri": "spotify:album:12kGm2wnSr2jX0q2SxT7mI",
"artists": [
{
"name": "Shack",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3pUiNPLwDNM46B8BdRspFW"
},
"uri": "spotify:artist:3pUiNPLwDNM46B8BdRspFW",
"href": "https://api.spotify.com/v1/artists/3pUiNPLwDNM46B8BdRspFW",
"type": "artist",
"id": "3pUiNPLwDNM46B8BdRspFW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9ee47cc931f2a429250c17feb7c81b426fcbc3dc",
"width": 640,
"height": 627
},
{
"url": "https://i.scdn.co/image/3aeb7f437c6005e1fb6a0f3e05274268c0c7b7b2",
"width": 300,
"height": 294
},
{
"url": "https://i.scdn.co/image/f74487cb2e76480ce010f93779da47fe53b01be1",
"width": 64,
"height": 63
}
],
"id": "12kGm2wnSr2jX0q2SxT7mI"
},
"0c78nsgqX6VfniSNWIxwoD": {
"name": "Let It Bleed",
"release_date": "1969-12-05",
"uri": "spotify:album:0c78nsgqX6VfniSNWIxwoD",
"artists": [
{
"name": "The Rolling Stones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe"
},
"uri": "spotify:artist:22bE4uQ6baNwSHPVcDxLCe",
"href": "https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe",
"type": "artist",
"id": "22bE4uQ6baNwSHPVcDxLCe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/91205a1c80960d7055f8ed1bbe022f195e1767a4",
"width": 640,
"height": 574
},
{
"url": "https://i.scdn.co/image/2be7232708f6959da59818238050cfd2c4982d54",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/ef93fb47964b8e6e687a882fa3d1471d0fb842ac",
"width": 64,
"height": 57
}
],
"id": "0c78nsgqX6VfniSNWIxwoD"
},
"62YsjwC3eodgWmuQNCqjbs": {
"name": "NEU! 75",
"release_date": "1975",
"uri": "spotify:album:62YsjwC3eodgWmuQNCqjbs",
"artists": [
{
"name": "Neu!",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2CqEOngQOOMstJupNn6Hmf"
},
"uri": "spotify:artist:2CqEOngQOOMstJupNn6Hmf",
"href": "https://api.spotify.com/v1/artists/2CqEOngQOOMstJupNn6Hmf",
"type": "artist",
"id": "2CqEOngQOOMstJupNn6Hmf"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b9ae8be8565d940fc3e37dfec5c64e2f5c52bc6d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2ab26f12a0d7c94bf86675beb28adad946b729a3",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8dccbffcb15ac9176ba6dedde27a896788da165d",
"width": 64,
"height": 64
}
],
"id": "62YsjwC3eodgWmuQNCqjbs"
},
"7isYifHXAT7wbuxbJziBG3": {
"name": "Unhalfbricking",
"release_date": "1969-01-01",
"uri": "spotify:album:7isYifHXAT7wbuxbJziBG3",
"artists": [
{
"name": "Fairport Convention",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2LIdnZDzySb04oH40be1fR"
},
"uri": "spotify:artist:2LIdnZDzySb04oH40be1fR",
"href": "https://api.spotify.com/v1/artists/2LIdnZDzySb04oH40be1fR",
"type": "artist",
"id": "2LIdnZDzySb04oH40be1fR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2698d27cb64b71ad5be35350dc1a28960d698a92",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/c40cdc1793491687b29c1cdab605304762cb4937",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/f309c4f703acaee67942fbd835fd6a22c4bdbffe",
"width": 64,
"height": 63
}
],
"id": "7isYifHXAT7wbuxbJziBG3"
},
"4aw2aMrIqaCy4NAfvKxDAS": {
"name": "Every Good Boy Deserves Fudge",
"release_date": "1991-06-08",
"uri": "spotify:album:4aw2aMrIqaCy4NAfvKxDAS",
"artists": [
{
"name": "Mudhoney",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7LuYiSXiWs86rwWJjEEgB9"
},
"uri": "spotify:artist:7LuYiSXiWs86rwWJjEEgB9",
"href": "https://api.spotify.com/v1/artists/7LuYiSXiWs86rwWJjEEgB9",
"type": "artist",
"id": "7LuYiSXiWs86rwWJjEEgB9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/713c9807685a849c0f452ad739fc4fb88275558d",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0f6f307b0ef5b5cca18119379c5df3d82c4e9a6c",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f63947d80f4f52fce86b9ec6c61cef728d443c28",
"width": 64,
"height": 64
}
],
"id": "4aw2aMrIqaCy4NAfvKxDAS"
},
"6LEP3L94jnkqjOxYJWPRP0": {
"name": "The Real Thing",
"release_date": "1989",
"uri": "spotify:album:6LEP3L94jnkqjOxYJWPRP0",
"artists": [
{
"name": "Faith No More",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6GbCJZrI318Ybm8mY36Of5"
},
"uri": "spotify:artist:6GbCJZrI318Ybm8mY36Of5",
"href": "https://api.spotify.com/v1/artists/6GbCJZrI318Ybm8mY36Of5",
"type": "artist",
"id": "6GbCJZrI318Ybm8mY36Of5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/30e8c77f1071c2e6f174ef6d17b458c3c50591b3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d8f6edddf95adf35e1a9b4da97d117e65e3de0b2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/f99d3b184663856690fa23ed3713d2d36de43eb1",
"width": 64,
"height": 64
}
],
"id": "6LEP3L94jnkqjOxYJWPRP0"
},
"6bR98XzGnklTORDvZ7Oc2i": {
"name": "Architecture And Morality",
"release_date": "1981-11-08",
"uri": "spotify:album:6bR98XzGnklTORDvZ7Oc2i",
"artists": [
{
"name": "Orchestral Manoeuvres In The Dark",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7wJ9NwdRWtN92NunmXuwBk"
},
"uri": "spotify:artist:7wJ9NwdRWtN92NunmXuwBk",
"href": "https://api.spotify.com/v1/artists/7wJ9NwdRWtN92NunmXuwBk",
"type": "artist",
"id": "7wJ9NwdRWtN92NunmXuwBk"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c4d3e0b84e359a734935d9a16dce3bc351d83a8b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5f42f2fba98500f080630e469cb3ccee9a7ce5f7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/30369b6bbd199700af3e64ec94e6ee31876d7791",
"width": 64,
"height": 64
}
],
"id": "6bR98XzGnklTORDvZ7Oc2i"
},
"3cmIjwBG498X6AURxoVEnQ": {
"name": "Nowhere",
"release_date": "1990",
"uri": "spotify:album:3cmIjwBG498X6AURxoVEnQ",
"artists": [
{
"name": "Ride",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0WPY9nnBy01s5QOt4o4oQX"
},
"uri": "spotify:artist:0WPY9nnBy01s5QOt4o4oQX",
"href": "https://api.spotify.com/v1/artists/0WPY9nnBy01s5QOt4o4oQX",
"type": "artist",
"id": "0WPY9nnBy01s5QOt4o4oQX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5f0fea4224fd4720e8644a6cdd794330feb18d01",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/45f723ddc89116aabe9bcf5580af7d42d09cb36f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/df8be30da302f3f98f66196a334182e419dd24b8",
"width": 64,
"height": 64
}
],
"id": "3cmIjwBG498X6AURxoVEnQ"
},
"7IKUTIc9UWuVngyGPtqNHS": {
"name": "L.A. Woman",
"release_date": "1971-04-19",
"uri": "spotify:album:7IKUTIc9UWuVngyGPtqNHS",
"artists": [
{
"name": "The Doors",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22WZ7M8sxp5THdruNY3gXt"
},
"uri": "spotify:artist:22WZ7M8sxp5THdruNY3gXt",
"href": "https://api.spotify.com/v1/artists/22WZ7M8sxp5THdruNY3gXt",
"type": "artist",
"id": "22WZ7M8sxp5THdruNY3gXt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/12d26e9bacd0ff7ba094850ca76927db84bf8668",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/390765e671d4e263b70b9a1669eb4c2a98b94ac4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/0da100b815b05a9ca3e000261e09db59edde6edf",
"width": 64,
"height": 64
}
],
"id": "7IKUTIc9UWuVngyGPtqNHS"
},
"0UEuf5G8IVev5K5v6a1sbO": {
"name": "Among The Living",
"release_date": "1987",
"uri": "spotify:album:0UEuf5G8IVev5K5v6a1sbO",
"artists": [
{
"name": "Anthrax",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3JysSUOyfVs1UQ0UaESheP"
},
"uri": "spotify:artist:3JysSUOyfVs1UQ0UaESheP",
"href": "https://api.spotify.com/v1/artists/3JysSUOyfVs1UQ0UaESheP",
"type": "artist",
"id": "3JysSUOyfVs1UQ0UaESheP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/389d30543b55146c8dba42d07bcd9bb6d199c915",
"width": 638,
"height": 640
},
{
"url": "https://i.scdn.co/image/af4c2bd09ac0fe730315eb50a913c3e96e911ff9",
"width": 299,
"height": 300
},
{
"url": "https://i.scdn.co/image/f79c9c95f1182b3a84a9b94f3cb85fcab2299f8e",
"width": 64,
"height": 64
}
],
"id": "0UEuf5G8IVev5K5v6a1sbO"
},
"28eOriEfl7IGbQDNvWIWXK": {
"name": "Synchronicity (Remastered)",
"release_date": "1990-01-01",
"uri": "spotify:album:28eOriEfl7IGbQDNvWIWXK",
"artists": [
{
"name": "The Police",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5NGO30tJxFlKixkPSgXcFE"
},
"uri": "spotify:artist:5NGO30tJxFlKixkPSgXcFE",
"href": "https://api.spotify.com/v1/artists/5NGO30tJxFlKixkPSgXcFE",
"type": "artist",
"id": "5NGO30tJxFlKixkPSgXcFE"
}
],
"images": [
{
"url": "https://i.scdn.co/image/06dccd84f1a17c8efdcc1e7d62b1f956888ae94d",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/a015478876d45a0d6664ba535be409dce0ffee71",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/97e26b150fbdfedae969cc8ce38683d0a04f6c36",
"width": 64,
"height": 63
}
],
"id": "28eOriEfl7IGbQDNvWIWXK"
},
"2nXJkqkS1tIKIyhBcFMmwz": {
"name": "xx",
"release_date": "2009-08-16",
"uri": "spotify:album:2nXJkqkS1tIKIyhBcFMmwz",
"artists": [
{
"name": "The xx",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3iOvXCl6edW5Um0fXEBRXy"
},
"uri": "spotify:artist:3iOvXCl6edW5Um0fXEBRXy",
"href": "https://api.spotify.com/v1/artists/3iOvXCl6edW5Um0fXEBRXy",
"type": "artist",
"id": "3iOvXCl6edW5Um0fXEBRXy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3631f331aa9a65dd93f78f8797d8a27cbba53f5f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/305e9e283562ec1db94617f3fbd2621173e7c6c2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4de69061a105be354357e55b61899ea0f8bce01d",
"width": 64,
"height": 64
}
],
"id": "2nXJkqkS1tIKIyhBcFMmwz"
},
"7fka5aLeH0gquys8Ego8Yj": {
"name": "Marcus Garvey: The Best Of Burning Spear",
"release_date": "2012-01-01",
"uri": "spotify:album:7fka5aLeH0gquys8Ego8Yj",
"artists": [
{
"name": "Burning Spear",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6qaKS0nzGP4hfjl4aFZmEU"
},
"uri": "spotify:artist:6qaKS0nzGP4hfjl4aFZmEU",
"href": "https://api.spotify.com/v1/artists/6qaKS0nzGP4hfjl4aFZmEU",
"type": "artist",
"id": "6qaKS0nzGP4hfjl4aFZmEU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e8da789bd8d225427d138c0c32d2720a229a4fa4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/454e8a76017d9af87407fff7f11b744e5e361c77",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/571ec7c8188da0ac97551df51684b2083a95ff42",
"width": 64,
"height": 64
}
],
"id": "7fka5aLeH0gquys8Ego8Yj"
},
"4QrhfVaznhrAPlM5xCKBPh": {
"name": "3 Years, 5 Months And 2 Days In The Life Of...",
"release_date": "1992-03-24",
"uri": "spotify:album:4QrhfVaznhrAPlM5xCKBPh",
"artists": [
{
"name": "Arrested Development",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5Va9LuEmaZxnbk1gMnjMD7"
},
"uri": "spotify:artist:5Va9LuEmaZxnbk1gMnjMD7",
"href": "https://api.spotify.com/v1/artists/5Va9LuEmaZxnbk1gMnjMD7",
"type": "artist",
"id": "5Va9LuEmaZxnbk1gMnjMD7"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6ed09096a0f0f6984dad441c1290556917959d4e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/238d44bfe8a4bc7a8ae1d4364b240a21845426a5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8ffbe2e487db41836b29ddd069f05500b387f5b6",
"width": 64,
"height": 64
}
],
"id": "4QrhfVaznhrAPlM5xCKBPh"
},
"7AMXlfKBuhRB5wBXpsVUPO": {
"name": "Pata Pata",
"release_date": "1967",
"uri": "spotify:album:7AMXlfKBuhRB5wBXpsVUPO",
"artists": [
{
"name": "Miriam Makeba",
"external_urls": {
"spotify": "https://open.spotify.com/artist/18RkLKfeoUgZflWv9os25W"
},
"uri": "spotify:artist:18RkLKfeoUgZflWv9os25W",
"href": "https://api.spotify.com/v1/artists/18RkLKfeoUgZflWv9os25W",
"type": "artist",
"id": "18RkLKfeoUgZflWv9os25W"
}
],
"images": [
{
"url": "https://i.scdn.co/image/259107d520cef8946bd5c90fdc2d2b779c837b4a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f17de3641fb525d8db4974db0846c3e272433fe4",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/4ad2136546b19bfe72439581351b6b642846aadb",
"width": 64,
"height": 64
}
],
"id": "7AMXlfKBuhRB5wBXpsVUPO"
},
"0rPtXOMN42nsLDiShvGamv": {
"name": "Yankee Hotel Foxtrot",
"release_date": "2002-04-16",
"uri": "spotify:album:0rPtXOMN42nsLDiShvGamv",
"artists": [
{
"name": "Wilco",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2QoU3awHVdcHS8LrZEKvSM"
},
"uri": "spotify:artist:2QoU3awHVdcHS8LrZEKvSM",
"href": "https://api.spotify.com/v1/artists/2QoU3awHVdcHS8LrZEKvSM",
"type": "artist",
"id": "2QoU3awHVdcHS8LrZEKvSM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/49edf93bc77268abd7fa5facd51202fffa67d2ee",
"width": 608,
"height": 640
},
{
"url": "https://i.scdn.co/image/33eb9b644951c1010741095e8b57847d0bb27581",
"width": 285,
"height": 300
},
{
"url": "https://i.scdn.co/image/0cdc83a2b34068bd7db69ffa19d32233594d82a2",
"width": 61,
"height": 64
}
],
"id": "0rPtXOMN42nsLDiShvGamv"
},
"3gUw30X6A7WEGcRdv1nFr9": {
"name": "I'm Your Man",
"release_date": "1988-02-02",
"uri": "spotify:album:3gUw30X6A7WEGcRdv1nFr9",
"artists": [
{
"name": "Leonard Cohen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5l8VQNuIg0turYE1VtM9zV"
},
"uri": "spotify:artist:5l8VQNuIg0turYE1VtM9zV",
"href": "https://api.spotify.com/v1/artists/5l8VQNuIg0turYE1VtM9zV",
"type": "artist",
"id": "5l8VQNuIg0turYE1VtM9zV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3204a0ef484d066cf89c95686296762971550597",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2170a445300d5673547c9ec84e417d08c6186af2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1f6343def9f0de7465f37272810536d7d3ea2053",
"width": 64,
"height": 64
}
],
"id": "3gUw30X6A7WEGcRdv1nFr9"
},
"2Jkbi83HTSfqEd0CBdYwpU": {
"name": "Ritual De Lo Habitual",
"release_date": "1990-08-21",
"uri": "spotify:album:2Jkbi83HTSfqEd0CBdYwpU",
"artists": [
{
"name": "Jane's Addiction",
"external_urls": {
"spotify": "https://open.spotify.com/artist/02NfyD6AlLA12crYzw5YcR"
},
"uri": "spotify:artist:02NfyD6AlLA12crYzw5YcR",
"href": "https://api.spotify.com/v1/artists/02NfyD6AlLA12crYzw5YcR",
"type": "artist",
"id": "02NfyD6AlLA12crYzw5YcR"
}
],
"images": [
{
"url": "https://i.scdn.co/image/28f2af94ae3bd35d840fa3fdc5f9f0706a2a2360",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5c5f36ce25411c985cfa734a6d0e4493eb7af527",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a9de63568290d021ce0abeed370e0fb3aceb374f",
"width": 64,
"height": 64
}
],
"id": "2Jkbi83HTSfqEd0CBdYwpU"
},
"1JXGJdo7Go4D2fipqXwt4q": {
"name": "Swordfishtrombones",
"release_date": "1983-09-01",
"uri": "spotify:album:1JXGJdo7Go4D2fipqXwt4q",
"artists": [
{
"name": "Tom Waits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7x83XhcMbOTl1UdYsPTuZM"
},
"uri": "spotify:artist:7x83XhcMbOTl1UdYsPTuZM",
"href": "https://api.spotify.com/v1/artists/7x83XhcMbOTl1UdYsPTuZM",
"type": "artist",
"id": "7x83XhcMbOTl1UdYsPTuZM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/539ce66525c9034f4d7bc54e6b422c44f46f326d",
"width": 640,
"height": 622
},
{
"url": "https://i.scdn.co/image/192176fb1fff4ea4b6817362c90a67e2a5be99c9",
"width": 300,
"height": 292
},
{
"url": "https://i.scdn.co/image/f516a7bac6a21996b737f694dd265ff20473f23a",
"width": 64,
"height": 62
}
],
"id": "1JXGJdo7Go4D2fipqXwt4q"
},
"7z7EJWzMiPb5NJ21okOIm7": {
"name": "Greetings From L.A.",
"release_date": "1972",
"uri": "spotify:album:7z7EJWzMiPb5NJ21okOIm7",
"artists": [
{
"name": "Tim Buckley",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zHRqvws8dVeqL8D31ponr"
},
"uri": "spotify:artist:6zHRqvws8dVeqL8D31ponr",
"href": "https://api.spotify.com/v1/artists/6zHRqvws8dVeqL8D31ponr",
"type": "artist",
"id": "6zHRqvws8dVeqL8D31ponr"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1a9449340e8c98c742cc545ef1e43ec96de6cf2a",
"width": 640,
"height": 637
},
{
"url": "https://i.scdn.co/image/2cada15cc0a30d8eb2d8783b1f154bf3dfa09508",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/7d1476a6088963268126e3ced1ed2f11efde447c",
"width": 64,
"height": 64
}
],
"id": "7z7EJWzMiPb5NJ21okOIm7"
},
"6ZG5lRT77aJ3btmArcykra": {
"name": "Parachutes",
"release_date": "2000",
"uri": "spotify:album:6ZG5lRT77aJ3btmArcykra",
"artists": [
{
"name": "Coldplay",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4gzpq5DPGxSnKTe4SA8HAU"
},
"uri": "spotify:artist:4gzpq5DPGxSnKTe4SA8HAU",
"href": "https://api.spotify.com/v1/artists/4gzpq5DPGxSnKTe4SA8HAU",
"type": "artist",
"id": "4gzpq5DPGxSnKTe4SA8HAU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/6f3a6072af2380a86d74255ab7e94b2aac4d7722",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/af4812064c4963f5ce4e630cbf70b540ce3f60dc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e6d5d5b5d623eab34275a507c48c3eb6377ad18a",
"width": 64,
"height": 64
}
],
"id": "6ZG5lRT77aJ3btmArcykra"
},
"4gy64TkuOWP2Uuu1DuDeZK": {
"name": "Being There",
"release_date": "1996",
"uri": "spotify:album:4gy64TkuOWP2Uuu1DuDeZK",
"artists": [
{
"name": "Wilco",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2QoU3awHVdcHS8LrZEKvSM"
},
"uri": "spotify:artist:2QoU3awHVdcHS8LrZEKvSM",
"href": "https://api.spotify.com/v1/artists/2QoU3awHVdcHS8LrZEKvSM",
"type": "artist",
"id": "2QoU3awHVdcHS8LrZEKvSM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/caba8680c3e998d938326221895ae9f72decfa3c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/7ed8c0d87b4338447d3153b842645b309a142c6e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/ef055ad5dfbf970447a700438dfd84ad8b1d5642",
"width": 64,
"height": 64
}
],
"id": "4gy64TkuOWP2Uuu1DuDeZK"
},
"4zvKUPP4GO4Q6GcAlhtvfF": {
"name": "The Downward Spiral",
"release_date": "1994-03-01",
"uri": "spotify:album:4zvKUPP4GO4Q6GcAlhtvfF",
"artists": [
{
"name": "Nine Inch Nails",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0X380XXQSNBYuleKzav5UO"
},
"uri": "spotify:artist:0X380XXQSNBYuleKzav5UO",
"href": "https://api.spotify.com/v1/artists/0X380XXQSNBYuleKzav5UO",
"type": "artist",
"id": "0X380XXQSNBYuleKzav5UO"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0efa4ef2060737e346e98afe027c67f4c1792543",
"width": 640,
"height": 564
},
{
"url": "https://i.scdn.co/image/9dff921c6d875f5aeba8ded152722184b5fc6bda",
"width": 300,
"height": 264
},
{
"url": "https://i.scdn.co/image/0e09b46ea409bac71056340a0116f91aa9e7a975",
"width": 64,
"height": 56
}
],
"id": "4zvKUPP4GO4Q6GcAlhtvfF"
},
"4WCU7L1JSvZ8xWDdBo6qMb": {
"name": "Fishscale",
"release_date": "2006-02-02",
"uri": "spotify:album:4WCU7L1JSvZ8xWDdBo6qMb",
"artists": [
{
"name": "Ghostface Killah",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6FD0unjzGQhX3b6eMccMJe"
},
"uri": "spotify:artist:6FD0unjzGQhX3b6eMccMJe",
"href": "https://api.spotify.com/v1/artists/6FD0unjzGQhX3b6eMccMJe",
"type": "artist",
"id": "6FD0unjzGQhX3b6eMccMJe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/16650d5f3cac48c46f7a9809b964d024173096f7",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/55c578fdc34b4b5a9b3c05c955a074afba737c8e",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/23aca2f13a52598e46a3a89e053a012ce07e8d0e",
"width": 64,
"height": 64
}
],
"id": "4WCU7L1JSvZ8xWDdBo6qMb"
},
"2wOWfpfLWKlMQDsyM5UqqE": {
"name": "Phrenology",
"release_date": "2002-11-26",
"uri": "spotify:album:2wOWfpfLWKlMQDsyM5UqqE",
"artists": [
{
"name": "The Roots",
"external_urls": {
"spotify": "https://open.spotify.com/artist/78xUyw6FkVZrRAtziFdtdu"
},
"uri": "spotify:artist:78xUyw6FkVZrRAtziFdtdu",
"href": "https://api.spotify.com/v1/artists/78xUyw6FkVZrRAtziFdtdu",
"type": "artist",
"id": "78xUyw6FkVZrRAtziFdtdu"
}
],
"images": [
{
"url": "https://i.scdn.co/image/192cf02f76a79c91e1c33b510096582d0e0e3469",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/ab13f3bb03bf4459db052d2163e2dcf4613bbfb0",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/0cf27fbbfc6bf49c6988da99fa3d0732d98eccd4",
"width": 64,
"height": 63
}
],
"id": "2wOWfpfLWKlMQDsyM5UqqE"
},
"3WuIu9uaZktPRoXJ6WZp36": {
"name": "The Renaissance",
"release_date": "2008-11-04",
"uri": "spotify:album:3WuIu9uaZktPRoXJ6WZp36",
"artists": [
{
"name": "Q-Tip",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3ZotbHeyVQKxQCPDJuQ4SU"
},
"uri": "spotify:artist:3ZotbHeyVQKxQCPDJuQ4SU",
"href": "https://api.spotify.com/v1/artists/3ZotbHeyVQKxQCPDJuQ4SU",
"type": "artist",
"id": "3ZotbHeyVQKxQCPDJuQ4SU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a36bdbbee0224cdd77498ed8182f8dcddeabd6cb",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/21d0b505f3834fcd09ebf956f55b650bb2c351e7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d977eb772aa2fcc662490030f6635faa367e5026",
"width": 64,
"height": 64
}
],
"id": "3WuIu9uaZktPRoXJ6WZp36"
},
"56pR0SwZfVQFSIVWzM1eow": {
"name": "Fever Ray (Deluxe Edition)",
"release_date": "2009-10-19",
"uri": "spotify:album:56pR0SwZfVQFSIVWzM1eow",
"artists": [
{
"name": "Fever Ray",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5hE6NCoobhyEu6TRSbjOJY"
},
"uri": "spotify:artist:5hE6NCoobhyEu6TRSbjOJY",
"href": "https://api.spotify.com/v1/artists/5hE6NCoobhyEu6TRSbjOJY",
"type": "artist",
"id": "5hE6NCoobhyEu6TRSbjOJY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/35c63015db94655a9c6dbce53feebaf7c385132a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4272628604313e388382443f2bcea8b1719b01a9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/aab9ca65e13203d755091161d4d088eb991c5737",
"width": 64,
"height": 64
}
],
"id": "56pR0SwZfVQFSIVWzM1eow"
},
"10jsW2NYd9blCrDITMh2zS": {
"name": "American Pie",
"release_date": "1971",
"uri": "spotify:album:10jsW2NYd9blCrDITMh2zS",
"artists": [
{
"name": "Don McLean",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1gRNBaI4yn6wCCTvRhGWh8"
},
"uri": "spotify:artist:1gRNBaI4yn6wCCTvRhGWh8",
"href": "https://api.spotify.com/v1/artists/1gRNBaI4yn6wCCTvRhGWh8",
"type": "artist",
"id": "1gRNBaI4yn6wCCTvRhGWh8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8d28530dd1cf226a09e7c4e7bddf5b1a0160b85f",
"width": 640,
"height": 639
},
{
"url": "https://i.scdn.co/image/e0bc1479d6f0e3557ea12f90b1683c2ac9d70ffe",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/466130eb290cf5de5c53a504f49dd8272b7174c4",
"width": 64,
"height": 64
}
],
"id": "10jsW2NYd9blCrDITMh2zS"
},
"3yExIlG5OQdTeWQJFoZAEn": {
"name": "Face to Face",
"release_date": "1966-10-28",
"uri": "spotify:album:3yExIlG5OQdTeWQJFoZAEn",
"artists": [
{
"name": "The Kinks",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1SQRv42e4PjEYfPhS0Tk9E"
},
"uri": "spotify:artist:1SQRv42e4PjEYfPhS0Tk9E",
"href": "https://api.spotify.com/v1/artists/1SQRv42e4PjEYfPhS0Tk9E",
"type": "artist",
"id": "1SQRv42e4PjEYfPhS0Tk9E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b9d53a37ec7e4853c91f683867d7f28fc1d558df",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3453633bb0cd787a800c7aec83f3c86574886bb1",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1d84956ca8b70431946c2f09792e28f619ce3db8",
"width": 64,
"height": 64
}
],
"id": "3yExIlG5OQdTeWQJFoZAEn"
},
"4w9UeNiCO8kr4ZBdWPQKln": {
"name": "Catch A Fire (Deluxe Edition)",
"release_date": "2001-01-01",
"uri": "spotify:album:4w9UeNiCO8kr4ZBdWPQKln",
"artists": [
{
"name": "Bob Marley & The Wailers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2QsynagSdAqZj3U9HgDzjD"
},
"uri": "spotify:artist:2QsynagSdAqZj3U9HgDzjD",
"href": "https://api.spotify.com/v1/artists/2QsynagSdAqZj3U9HgDzjD",
"type": "artist",
"id": "2QsynagSdAqZj3U9HgDzjD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/125be211bf0a5d5c69e000921e0d1dc7bc9369a3",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/2c48cf9307c4bdff873e3e024acda0571dff9fb8",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/344adc772e5386c115d8782133c5cecd8d4216cb",
"width": 64,
"height": 63
}
],
"id": "4w9UeNiCO8kr4ZBdWPQKln"
},
"7xg7u99lilTCPbaRfnYuy6": {
"name": "Horses",
"release_date": "1975",
"uri": "spotify:album:7xg7u99lilTCPbaRfnYuy6",
"artists": [
{
"name": "Patti Smith",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0vYkHhJ48Bs3jWcvZXvOrP"
},
"uri": "spotify:artist:0vYkHhJ48Bs3jWcvZXvOrP",
"href": "https://api.spotify.com/v1/artists/0vYkHhJ48Bs3jWcvZXvOrP",
"type": "artist",
"id": "0vYkHhJ48Bs3jWcvZXvOrP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4116451b3da17b64dc9708c37a8f463054980174",
"width": 640,
"height": 575
},
{
"url": "https://i.scdn.co/image/b99426d04ff29d154cbfff522c5d694c264ba0d5",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/dcf035d016db63a8d22bd7e4cc6f16a91321ef22",
"width": 64,
"height": 58
}
],
"id": "7xg7u99lilTCPbaRfnYuy6"
},
"4V4NjX74cttwZSKabeqMQc": {
"name": "A Northern Soul",
"release_date": "1995-06-20",
"uri": "spotify:album:4V4NjX74cttwZSKabeqMQc",
"artists": [
{
"name": "The Verve",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2cGwlqi3k18jFpUyTrsR84"
},
"uri": "spotify:artist:2cGwlqi3k18jFpUyTrsR84",
"href": "https://api.spotify.com/v1/artists/2cGwlqi3k18jFpUyTrsR84",
"type": "artist",
"id": "2cGwlqi3k18jFpUyTrsR84"
}
],
"images": [
{
"url": "https://i.scdn.co/image/66b8286fdc422072115006c9dfba6e8a3d712ff4",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2209459992d645cf9f29bca59239e69574282bfe",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/04f848fc9a02715331fbb03d5ffadc8545d24b13",
"width": 64,
"height": 64
}
],
"id": "4V4NjX74cttwZSKabeqMQc"
},
"2aFWgTQdB8lG7DuMHIU6uw": {
"name": "The Lexicon Of Love",
"release_date": "1982",
"uri": "spotify:album:2aFWgTQdB8lG7DuMHIU6uw",
"artists": [
{
"name": "ABC",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2s79xe5F6eUQkjwjww27Fh"
},
"uri": "spotify:artist:2s79xe5F6eUQkjwjww27Fh",
"href": "https://api.spotify.com/v1/artists/2s79xe5F6eUQkjwjww27Fh",
"type": "artist",
"id": "2s79xe5F6eUQkjwjww27Fh"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b4b3c521618251dec9abb28e35aac38677d9b05b",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/0e6e2b4689ce443289ee6744cc5764c8839257a7",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/d3ca3c218d6357f82708e3e4c5f0781485aea405",
"width": 64,
"height": 63
}
],
"id": "2aFWgTQdB8lG7DuMHIU6uw"
},
"1NF8WUbdC632SIwixiWrLh": {
"name": "Brothers In Arms (Remastered)",
"release_date": "1985-05-13",
"uri": "spotify:album:1NF8WUbdC632SIwixiWrLh",
"artists": [
{
"name": "Dire Straits",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0WwSkZ7LtFUFjGjMZBMt6T"
},
"uri": "spotify:artist:0WwSkZ7LtFUFjGjMZBMt6T",
"href": "https://api.spotify.com/v1/artists/0WwSkZ7LtFUFjGjMZBMt6T",
"type": "artist",
"id": "0WwSkZ7LtFUFjGjMZBMt6T"
}
],
"images": [
{
"url": "https://i.scdn.co/image/623174994487554315f0bc1c3f5b047eef83db98",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/0e528f08633f70706fc1494f611aa974a31c9df7",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/92bd5f6a5e6bdae2980e9b5b74e9498ff264ab9b",
"width": 64,
"height": 63
}
],
"id": "1NF8WUbdC632SIwixiWrLh"
},
"7FiPNXyrCGGWFqO4btxPEe": {
"name": "The Holy Bible 20 (Remastered)",
"release_date": "2014-12-05",
"uri": "spotify:album:7FiPNXyrCGGWFqO4btxPEe",
"artists": [
{
"name": "Manic Street Preachers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2uH0RyPcX7fnCcT90HFDQX"
},
"uri": "spotify:artist:2uH0RyPcX7fnCcT90HFDQX",
"href": "https://api.spotify.com/v1/artists/2uH0RyPcX7fnCcT90HFDQX",
"type": "artist",
"id": "2uH0RyPcX7fnCcT90HFDQX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/96634a357b8bc14bd4223c39db540ff9ecc75f87",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/d6369fb5c77baf671e8dcecc19ab83379dd63ffb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c5ea5c4cdda2d6375eedf9a3bc14924b5cfb78a7",
"width": 64,
"height": 64
}
],
"id": "7FiPNXyrCGGWFqO4btxPEe"
},
"0gVxPZ2tcMgyzLxyw8k1z7": {
"name": "Brothers (Deluxe Edition)",
"release_date": "2010-10-18",
"uri": "spotify:album:0gVxPZ2tcMgyzLxyw8k1z7",
"artists": [
{
"name": "The Black Keys",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7mnBLXK823vNxN3UWB7Gfz"
},
"uri": "spotify:artist:7mnBLXK823vNxN3UWB7Gfz",
"href": "https://api.spotify.com/v1/artists/7mnBLXK823vNxN3UWB7Gfz",
"type": "artist",
"id": "7mnBLXK823vNxN3UWB7Gfz"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e1c8594562d35cd8d4338bfeb6c6b23bd41fd942",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ca4b85e01309d843d615b8ab93d312742650e46d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e76deee80fb59daef5f531d08e2fc156c9bdff9a",
"width": 64,
"height": 64
}
],
"id": "0gVxPZ2tcMgyzLxyw8k1z7"
},
"2okCg9scHue9GNELoB8U9g": {
"name": "Urban Hymns",
"release_date": "1997-09-29",
"uri": "spotify:album:2okCg9scHue9GNELoB8U9g",
"artists": [
{
"name": "The Verve",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2cGwlqi3k18jFpUyTrsR84"
},
"uri": "spotify:artist:2cGwlqi3k18jFpUyTrsR84",
"href": "https://api.spotify.com/v1/artists/2cGwlqi3k18jFpUyTrsR84",
"type": "artist",
"id": "2cGwlqi3k18jFpUyTrsR84"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2d3304df30a2ee192cd4c6ebe1edd223c5a14a17",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/58b696c0504f5b0ee9c5c36f86fd476b710ff20a",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d4f788ee65ae8623db318efe8ec0308db86f4fe9",
"width": 64,
"height": 64
}
],
"id": "2okCg9scHue9GNELoB8U9g"
},
"168tPkaBJZKYxSrWDo4n1h": {
"name": "The Hangman's Beautiful Daughter",
"release_date": "1968",
"uri": "spotify:album:168tPkaBJZKYxSrWDo4n1h",
"artists": [
{
"name": "The Incredible String Band",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0tQzBYPjAardhWpGkqVdNW"
},
"uri": "spotify:artist:0tQzBYPjAardhWpGkqVdNW",
"href": "https://api.spotify.com/v1/artists/0tQzBYPjAardhWpGkqVdNW",
"type": "artist",
"id": "0tQzBYPjAardhWpGkqVdNW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2ee543049a1cd09d25434e473906895f658df100",
"width": 632,
"height": 640
},
{
"url": "https://i.scdn.co/image/5e541a2380451c432ee5677167bb44d669c1e3fd",
"width": 296,
"height": 300
},
{
"url": "https://i.scdn.co/image/28a2eed1e1cfa87a359fa3b449ef0acd06e22200",
"width": 63,
"height": 64
}
],
"id": "168tPkaBJZKYxSrWDo4n1h"
},
"185DHT5SvszXRrezx3lOjt": {
"name": "Time Out Of Mind",
"release_date": "1997-09-30",
"uri": "spotify:album:185DHT5SvszXRrezx3lOjt",
"artists": [
{
"name": "Bob Dylan",
"external_urls": {
"spotify": "https://open.spotify.com/artist/74ASZWbe4lXaubB36ztrGX"
},
"uri": "spotify:artist:74ASZWbe4lXaubB36ztrGX",
"href": "https://api.spotify.com/v1/artists/74ASZWbe4lXaubB36ztrGX",
"type": "artist",
"id": "74ASZWbe4lXaubB36ztrGX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cd459f6bd283afd8d2b047bced6d896c2b2e32e2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/45317e0144e3918561108a69a7b076ef99c94479",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1b0e84bfd81893af25a67e3f3f6aeb8a298c0376",
"width": 64,
"height": 64
}
],
"id": "185DHT5SvszXRrezx3lOjt"
},
"0lXoZDB0yfxncR0cyrWDmf": {
"name": "The Visitors",
"release_date": "1981",
"uri": "spotify:album:0lXoZDB0yfxncR0cyrWDmf",
"artists": [
{
"name": "ABBA",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV"
},
"uri": "spotify:artist:0LcJLqbBmaGUft1e9Mm8HV",
"href": "https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV",
"type": "artist",
"id": "0LcJLqbBmaGUft1e9Mm8HV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/659122e710381dea1b3f442f170b7a70e5ac60d4",
"width": 640,
"height": 574
},
{
"url": "https://i.scdn.co/image/5c63b7583e1a98605617516a6b6f133319eb88a6",
"width": 300,
"height": 269
},
{
"url": "https://i.scdn.co/image/faade621fe7001b5eaf716e33673da1185d89234",
"width": 64,
"height": 57
}
],
"id": "0lXoZDB0yfxncR0cyrWDmf"
},
"1IRzjAaf0c93kLKZQqfEH0": {
"name": "Beyond Skin",
"release_date": "1999-06-21",
"uri": "spotify:album:1IRzjAaf0c93kLKZQqfEH0",
"artists": [
{
"name": "Nitin Sawhney",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5NCKpzuowtihcIrIHFjKbJ"
},
"uri": "spotify:artist:5NCKpzuowtihcIrIHFjKbJ",
"href": "https://api.spotify.com/v1/artists/5NCKpzuowtihcIrIHFjKbJ",
"type": "artist",
"id": "5NCKpzuowtihcIrIHFjKbJ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/931345b3e4b76279e70bcda45fcc6d40a49dbe6b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/2421ef2ea18df2c85da1c48bc3cf958f1c4f2eca",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/b783e9859a9a4a09440d06a6e7b820184132fdff",
"width": 64,
"height": 64
}
],
"id": "1IRzjAaf0c93kLKZQqfEH0"
},
"67qnhGyaN6Z0PYJMEePzjW": {
"name": "In It For The Money",
"release_date": "1997-04-21",
"uri": "spotify:album:67qnhGyaN6Z0PYJMEePzjW",
"artists": [
{
"name": "Supergrass",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0sHeX8oQ6o7xic3wMf4NBU"
},
"uri": "spotify:artist:0sHeX8oQ6o7xic3wMf4NBU",
"href": "https://api.spotify.com/v1/artists/0sHeX8oQ6o7xic3wMf4NBU",
"type": "artist",
"id": "0sHeX8oQ6o7xic3wMf4NBU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c6bf0133bee1b55778a2d052ca385fa612152a97",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6fc7b99bd7497cf86e8d56e2c4d2af572c8a47cb",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8cd944d5a10770f1f0442a3cc6b156cac38c0c3b",
"width": 64,
"height": 64
}
],
"id": "67qnhGyaN6Z0PYJMEePzjW"
},
"7ynKEunH8LSit4TR3foMVC": {
"name": "Lust For Life",
"release_date": "1977-09-09",
"uri": "spotify:album:7ynKEunH8LSit4TR3foMVC",
"artists": [
{
"name": "Iggy Pop",
"external_urls": {
"spotify": "https://open.spotify.com/artist/33EUXrFKGjpUSGacqEHhU4"
},
"uri": "spotify:artist:33EUXrFKGjpUSGacqEHhU4",
"href": "https://api.spotify.com/v1/artists/33EUXrFKGjpUSGacqEHhU4",
"type": "artist",
"id": "33EUXrFKGjpUSGacqEHhU4"
}
],
"images": [
{
"url": "https://i.scdn.co/image/41a26ac922f82ca5396402806636b7edde5f63fe",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f96ab03391cbc13017c61e302fb65cd514d83e40",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7b1464238068dd81f68a97bd5e3f92ce1485c3e6",
"width": 64,
"height": 64
}
],
"id": "7ynKEunH8LSit4TR3foMVC"
},
"6Lmj92VLXz7Z5xcsjXBMSC": {
"name": "The Bends",
"release_date": "1995-03-13",
"uri": "spotify:album:6Lmj92VLXz7Z5xcsjXBMSC",
"artists": [
{
"name": "Radiohead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb"
},
"uri": "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb",
"href": "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb",
"type": "artist",
"id": "4Z8W4fKeB5YxbusRsdQVPb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5930ff2ec8be19a6d76ef1e1d181d4ed4803c0fc",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9a251a9ea3e80d65d8e41a05823295fb74fec088",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/19d24b5482c1ecefc9858f96ca54cd87b6a27387",
"width": 64,
"height": 64
}
],
"id": "6Lmj92VLXz7Z5xcsjXBMSC"
},
"7d9IZA5hVMlRqkRszYt66r": {
"name": "Happy Trails",
"release_date": "1969",
"uri": "spotify:album:7d9IZA5hVMlRqkRszYt66r",
"artists": [
{
"name": "Quicksilver Messenger Service",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7DCnwoFMqGN6eZULdcLZeL"
},
"uri": "spotify:artist:7DCnwoFMqGN6eZULdcLZeL",
"href": "https://api.spotify.com/v1/artists/7DCnwoFMqGN6eZULdcLZeL",
"type": "artist",
"id": "7DCnwoFMqGN6eZULdcLZeL"
}
],
"images": [
{
"url": "https://i.scdn.co/image/953b5859a21dad7bcc852aeaaa299f3376ec15b2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a258bf549c389819c7f1be84fedde2bda1e91e02",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a8fcd3f1e8834913e7a639772ab439b8a74d7232",
"width": 64,
"height": 64
}
],
"id": "7d9IZA5hVMlRqkRszYt66r"
},
"0HHRIVjvBcnTepfeRVgS2f": {
"name": "Trans Europe Express (2009 Remastered Version)",
"release_date": "1977",
"uri": "spotify:album:0HHRIVjvBcnTepfeRVgS2f",
"artists": [
{
"name": "Kraftwerk",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0dmPX6ovclgOy8WWJaFEUU"
},
"uri": "spotify:artist:0dmPX6ovclgOy8WWJaFEUU",
"href": "https://api.spotify.com/v1/artists/0dmPX6ovclgOy8WWJaFEUU",
"type": "artist",
"id": "0dmPX6ovclgOy8WWJaFEUU"
}
],
"images": [
{
"url": "https://i.scdn.co/image/961a19794fcb452928010195273079dfbdcb5217",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8c7dd60a81f387d0e3a3d80f2d64b23a2908d8dc",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/709115a56441fc5e0d1f05385703638a5be0d753",
"width": 64,
"height": 64
}
],
"id": "0HHRIVjvBcnTepfeRVgS2f"
},
"6yskFQZNlLYhkchAxELHi6": {
"name": "Nebraska",
"release_date": "1982",
"uri": "spotify:album:6yskFQZNlLYhkchAxELHi6",
"artists": [
{
"name": "Bruce Springsteen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT"
},
"uri": "spotify:artist:3eqjTLE0HfPfh78zjh6TqT",
"href": "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT",
"type": "artist",
"id": "3eqjTLE0HfPfh78zjh6TqT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2d6eb3ee73cf0d5132b46dd0d6bf9f23160bf0a2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/3d9db05ea029fd266227dfc6b85d8a074f4bd050",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d68d88a38cb1ddb136a1df08bc9df6e97218969e",
"width": 64,
"height": 64
}
],
"id": "6yskFQZNlLYhkchAxELHi6"
},
"5eAoPNZzWRn2C409kAUsbE": {
"name": "Follow The Leader",
"release_date": "1998",
"uri": "spotify:album:5eAoPNZzWRn2C409kAUsbE",
"artists": [
{
"name": "Korn",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3RNrq3jvMZxD9ZyoOZbQOD"
},
"uri": "spotify:artist:3RNrq3jvMZxD9ZyoOZbQOD",
"href": "https://api.spotify.com/v1/artists/3RNrq3jvMZxD9ZyoOZbQOD",
"type": "artist",
"id": "3RNrq3jvMZxD9ZyoOZbQOD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dcab2d136873cfbdb5feac7539897d6774bf83d3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/4774955af5d849796296df2a077d4b75bcb9e07b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3da30c0cf5cc80f1e061222076cc0d0fbb35b378",
"width": 64,
"height": 64
}
],
"id": "5eAoPNZzWRn2C409kAUsbE"
},
"058qBjhg9yzbRGZCqOBX42": {
"name": "Tago Mago (Remastered)",
"release_date": "1971",
"uri": "spotify:album:058qBjhg9yzbRGZCqOBX42",
"artists": [
{
"name": "Can",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4l8xPGtl6DHR2uvunqrl8r"
},
"uri": "spotify:artist:4l8xPGtl6DHR2uvunqrl8r",
"href": "https://api.spotify.com/v1/artists/4l8xPGtl6DHR2uvunqrl8r",
"type": "artist",
"id": "4l8xPGtl6DHR2uvunqrl8r"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cae7251136c429ea982973a1b1bb0f164740cadd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ef9f317c834edb92d29f5622f86773f659b64119",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/39a9d8f98c63e52e0d08c3c6bc5b5fd554001966",
"width": 64,
"height": 64
}
],
"id": "058qBjhg9yzbRGZCqOBX42"
},
"60cRh5MCFNOrFeQykKnDej": {
"name": "Bossanova",
"release_date": "1990",
"uri": "spotify:album:60cRh5MCFNOrFeQykKnDej",
"artists": [
{
"name": "Pixies",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6zvul52xwTWzilBZl6BUbT"
},
"uri": "spotify:artist:6zvul52xwTWzilBZl6BUbT",
"href": "https://api.spotify.com/v1/artists/6zvul52xwTWzilBZl6BUbT",
"type": "artist",
"id": "6zvul52xwTWzilBZl6BUbT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c0433cff4af9707c9a28af92674f1741486cda27",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/bc5f84f3583de382308077c9cf4eb7d3e5a00236",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/25becd1f6b3bf0aa2c601c4e7b1e51b701f911f9",
"width": 64,
"height": 64
}
],
"id": "60cRh5MCFNOrFeQykKnDej"
},
"38uGoW7jS8jjJMvZA26sRq": {
"name": "Stardust",
"release_date": "1978",
"uri": "spotify:album:38uGoW7jS8jjJMvZA26sRq",
"artists": [
{
"name": "Willie Nelson",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5W5bDNCqJ1jbCgTxDD0Cb3"
},
"uri": "spotify:artist:5W5bDNCqJ1jbCgTxDD0Cb3",
"href": "https://api.spotify.com/v1/artists/5W5bDNCqJ1jbCgTxDD0Cb3",
"type": "artist",
"id": "5W5bDNCqJ1jbCgTxDD0Cb3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/cb2fb0dae1ee4d9c5ed048047d45c86bdb891b4f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/cd277437206502ee642aa0ea677bb688b9385599",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/221b5ed84f1bde9d035a7e9d199d6fe3e16e1487",
"width": 64,
"height": 64
}
],
"id": "38uGoW7jS8jjJMvZA26sRq"
},
"19YvpcYqIYb0JqfnxHm4F2": {
"name": "Low-Life",
"release_date": "1985",
"uri": "spotify:album:19YvpcYqIYb0JqfnxHm4F2",
"artists": [
{
"name": "New Order",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0yNLKJebCb8Aueb54LYya3"
},
"uri": "spotify:artist:0yNLKJebCb8Aueb54LYya3",
"href": "https://api.spotify.com/v1/artists/0yNLKJebCb8Aueb54LYya3",
"type": "artist",
"id": "0yNLKJebCb8Aueb54LYya3"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2bed5e78fd75b52ad68369cc414d98a3d39ce3d1",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0ef4b7dc63bdc7abe97ad4fba4ce2ce40c646ba9",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/43454ebfc1c8fdea2238a027f13e5aa7d93e5161",
"width": 64,
"height": 64
}
],
"id": "19YvpcYqIYb0JqfnxHm4F2"
},
"0M8nGzVxKuM41Wr73dU9ex": {
"name": "Rip It Up",
"release_date": "1982",
"uri": "spotify:album:0M8nGzVxKuM41Wr73dU9ex",
"artists": [
{
"name": "Orange Juice",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2u7xZP39dtED9EuRX9MUwu"
},
"uri": "spotify:artist:2u7xZP39dtED9EuRX9MUwu",
"href": "https://api.spotify.com/v1/artists/2u7xZP39dtED9EuRX9MUwu",
"type": "artist",
"id": "2u7xZP39dtED9EuRX9MUwu"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8b4a3ea7bbcfd71a7cef8ef92f5cf4c686ddb237",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/8798da6bd502a46c7157b51ef027d076e316c794",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/64d7c9a1a7c1f3ccd052859190588b8055343e60",
"width": 64,
"height": 64
}
],
"id": "0M8nGzVxKuM41Wr73dU9ex"
},
"3vZQVeesxkzSRPtVLsrXKn": {
"name": "Dirty",
"release_date": "1992-01-01",
"uri": "spotify:album:3vZQVeesxkzSRPtVLsrXKn",
"artists": [
{
"name": "Sonic Youth",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5UqTO8smerMvxHYA5xsXb6"
},
"uri": "spotify:artist:5UqTO8smerMvxHYA5xsXb6",
"href": "https://api.spotify.com/v1/artists/5UqTO8smerMvxHYA5xsXb6",
"type": "artist",
"id": "5UqTO8smerMvxHYA5xsXb6"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7dd333d532859aa7a3b2c863daa6b7074c91f07d",
"width": 640,
"height": 631
},
{
"url": "https://i.scdn.co/image/8fab60374011a9b0e8c11e13d8fe76742b910d16",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/6b4672966f65849e651e9ba22c25c745450f6dc9",
"width": 64,
"height": 63
}
],
"id": "3vZQVeesxkzSRPtVLsrXKn"
},
"1XjabdmwipT62cLSZV45SU": {
"name": "Dance Mania Vol.1",
"release_date": "1990-07-10",
"uri": "spotify:album:1XjabdmwipT62cLSZV45SU",
"artists": [
{
"name": "Tito Puente",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6SPpCqM8gOzrtICAxN5NuX"
},
"uri": "spotify:artist:6SPpCqM8gOzrtICAxN5NuX",
"href": "https://api.spotify.com/v1/artists/6SPpCqM8gOzrtICAxN5NuX",
"type": "artist",
"id": "6SPpCqM8gOzrtICAxN5NuX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8d79bd06675660651b4ae05bc1166f17edd22cea",
"width": 636,
"height": 640
},
{
"url": "https://i.scdn.co/image/1a9ea290695ce91ecedbc61e84945dc8dcaf25ee",
"width": 298,
"height": 300
},
{
"url": "https://i.scdn.co/image/65cc9c49725af7ee603f71fac532b65e98d28203",
"width": 64,
"height": 64
}
],
"id": "1XjabdmwipT62cLSZV45SU"
},
"372smdctC8hNczUfZG8phL": {
"name": "Music From The Penguin Cafe",
"release_date": "1976",
"uri": "spotify:album:372smdctC8hNczUfZG8phL",
"artists": [
{
"name": "Penguin Cafe Orchestra",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6rAZ6OYwAXqykSlPxqGy8E"
},
"uri": "spotify:artist:6rAZ6OYwAXqykSlPxqGy8E",
"href": "https://api.spotify.com/v1/artists/6rAZ6OYwAXqykSlPxqGy8E",
"type": "artist",
"id": "6rAZ6OYwAXqykSlPxqGy8E"
}
],
"images": [
{
"url": "https://i.scdn.co/image/221f49315d3ef64287c279b03e4ee7ba80add992",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e8d54e8bd15885fccad2b51ab9a598bcb64a2d54",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c1e4f6ffbbe20496133b9a9878795ad01bd2bb00",
"width": 64,
"height": 64
}
],
"id": "372smdctC8hNczUfZG8phL"
},
"3gcPVCFXfShcfVtFdMBXNG": {
"name": "Garbage",
"release_date": "1995",
"uri": "spotify:album:3gcPVCFXfShcfVtFdMBXNG",
"artists": [
{
"name": "Garbage",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6S0GHTqz5sxK5f9HtLXn9q"
},
"uri": "spotify:artist:6S0GHTqz5sxK5f9HtLXn9q",
"href": "https://api.spotify.com/v1/artists/6S0GHTqz5sxK5f9HtLXn9q",
"type": "artist",
"id": "6S0GHTqz5sxK5f9HtLXn9q"
}
],
"images": [
{
"url": "https://i.scdn.co/image/50d069863a329fa154abd71e80880511a91b3ad2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9965e7d9e453e1fea382010f13fa0c896e9b2274",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/938255fded8f4f535851addce2420ac301ba5ea7",
"width": 64,
"height": 64
}
],
"id": "3gcPVCFXfShcfVtFdMBXNG"
},
"3dhCCJodKcSHHnA34OOfgz": {
"name": "You've Come a Long Way Baby (10th Anniversary Edition)",
"release_date": "2008-11-30",
"uri": "spotify:album:3dhCCJodKcSHHnA34OOfgz",
"artists": [
{
"name": "Fatboy Slim",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4Y7tXHSEejGu1vQ9bwDdXW"
},
"uri": "spotify:artist:4Y7tXHSEejGu1vQ9bwDdXW",
"href": "https://api.spotify.com/v1/artists/4Y7tXHSEejGu1vQ9bwDdXW",
"type": "artist",
"id": "4Y7tXHSEejGu1vQ9bwDdXW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f90393e550af4037722fadbd0f750b05211297e2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/0c24ca7e257405ca43ac69a7ca3c725655ae4d9f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/93309a81b403a774d6ec1003b21e3d2d6ab5fb06",
"width": 64,
"height": 64
}
],
"id": "3dhCCJodKcSHHnA34OOfgz"
},
"2Y9IRtehByVkegoD7TcLfi": {
"name": "Californication (Deluxe Version)",
"release_date": "1999-06-08",
"uri": "spotify:album:2Y9IRtehByVkegoD7TcLfi",
"artists": [
{
"name": "Red Hot Chili Peppers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0L8ExT028jH3ddEcZwqJJ5"
},
"uri": "spotify:artist:0L8ExT028jH3ddEcZwqJJ5",
"href": "https://api.spotify.com/v1/artists/0L8ExT028jH3ddEcZwqJJ5",
"type": "artist",
"id": "0L8ExT028jH3ddEcZwqJJ5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/eacf6756dbdf3c75a73043f0ad4c81bf6c7c972a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a6acf5e95e997e07a877cf8bdfd8e7bae8d62c7d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/526abdeeb3827c861ad2c0901758cc300483cb6c",
"width": 64,
"height": 64
}
],
"id": "2Y9IRtehByVkegoD7TcLfi"
},
"5mAPk4qeNqVLtNydaWbWlf": {
"name": "Blue Lines",
"release_date": "1991",
"uri": "spotify:album:5mAPk4qeNqVLtNydaWbWlf",
"artists": [
{
"name": "Massive Attack",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6FXMGgJwohJLUSr5nVlf9X"
},
"uri": "spotify:artist:6FXMGgJwohJLUSr5nVlf9X",
"href": "https://api.spotify.com/v1/artists/6FXMGgJwohJLUSr5nVlf9X",
"type": "artist",
"id": "6FXMGgJwohJLUSr5nVlf9X"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2a2ad1a7f18442df4f5ba61051cdcd3225b246f3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b42d4f128807cffcda24466368b6abdac9c25516",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/8009082fef6f28859a65915a072edcaefc8257fc",
"width": 64,
"height": 64
}
],
"id": "5mAPk4qeNqVLtNydaWbWlf"
},
"1CHUXwuge9A7L2KiA3vnR6": {
"name": "Abraxas",
"release_date": "1970",
"uri": "spotify:album:1CHUXwuge9A7L2KiA3vnR6",
"artists": [
{
"name": "Santana",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6GI52t8N5F02MxU0g5U69P"
},
"uri": "spotify:artist:6GI52t8N5F02MxU0g5U69P",
"href": "https://api.spotify.com/v1/artists/6GI52t8N5F02MxU0g5U69P",
"type": "artist",
"id": "6GI52t8N5F02MxU0g5U69P"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8a7c6d07bf44acb546a79e9a441a8761ee1ae6fd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/04dc767e8ac9ac25f0c45a1ba57a22ba31733339",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/37765ee024e2d981efca3ba9f8c681305dbe908f",
"width": 64,
"height": 64
}
],
"id": "1CHUXwuge9A7L2KiA3vnR6"
},
"0Gu0z7Agm0kSDhpX55dttF": {
"name": "Pills 'n' Thrills And Bellyaches",
"release_date": "1990-11-27",
"uri": "spotify:album:0Gu0z7Agm0kSDhpX55dttF",
"artists": [
{
"name": "Happy Mondays",
"external_urls": {
"spotify": "https://open.spotify.com/artist/339DNkQkuhHKEcHw6oK8f0"
},
"uri": "spotify:artist:339DNkQkuhHKEcHw6oK8f0",
"href": "https://api.spotify.com/v1/artists/339DNkQkuhHKEcHw6oK8f0",
"type": "artist",
"id": "339DNkQkuhHKEcHw6oK8f0"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7706d06d3d818db9000294a5a46f39f6c254065d",
"width": 640,
"height": 632
},
{
"url": "https://i.scdn.co/image/4cadc0634181fcbc85e98e20a8c2c3ca69f04004",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/042ffd42c96e566530b6940be1d0b3d6cf65eff0",
"width": 64,
"height": 63
}
],
"id": "0Gu0z7Agm0kSDhpX55dttF"
},
"69Wr9DvWfIJRTi5NUGeVTn": {
"name": "Sea Change",
"release_date": "2002-01-01",
"uri": "spotify:album:69Wr9DvWfIJRTi5NUGeVTn",
"artists": [
{
"name": "Beck",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3vbKDsSS70ZX9D2OcvbZmS"
},
"uri": "spotify:artist:3vbKDsSS70ZX9D2OcvbZmS",
"href": "https://api.spotify.com/v1/artists/3vbKDsSS70ZX9D2OcvbZmS",
"type": "artist",
"id": "3vbKDsSS70ZX9D2OcvbZmS"
}
],
"images": [
{
"url": "https://i.scdn.co/image/77e6af2be61404e22e375e9ce0d8f1ff20280eeb",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/6595d699679f8b6f8de8fb9294951b62efaa19d7",
"width": 300,
"height": 296
},
{
"url": "https://i.scdn.co/image/24d2beadcc3119a3755493bcbf8971588f544886",
"width": 64,
"height": 63
}
],
"id": "69Wr9DvWfIJRTi5NUGeVTn"
},
"33p78EyTp6esCBodi24Pzx": {
"name": "The Wall [2011 - Remaster] (2011 Remastered Version)",
"release_date": "1979-11-30",
"uri": "spotify:album:33p78EyTp6esCBodi24Pzx",
"artists": [
{
"name": "Pink Floyd",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0k17h0D3J5VfsdmQ1iZtE9"
},
"uri": "spotify:artist:0k17h0D3J5VfsdmQ1iZtE9",
"href": "https://api.spotify.com/v1/artists/0k17h0D3J5VfsdmQ1iZtE9",
"type": "artist",
"id": "0k17h0D3J5VfsdmQ1iZtE9"
}
],
"images": [
{
"url": "https://i.scdn.co/image/20ebb5d258c9df2f58d39b0c63052135e10a39df",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/f7f22420531d4850aa5b568445feaa9b62af60e7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6503b1e6668f67ecbf3907ff0aeb05b779fbc00c",
"width": 64,
"height": 64
}
],
"id": "33p78EyTp6esCBodi24Pzx"
},
"0gUoiZk9aWpg3HXaygDNp6": {
"name": "\"Os Mutantes\"",
"release_date": "1968",
"uri": "spotify:album:0gUoiZk9aWpg3HXaygDNp6",
"artists": [
{
"name": "Os Mutantes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5C0gCCG8N5Dh5dZytIgzLX"
},
"uri": "spotify:artist:5C0gCCG8N5Dh5dZytIgzLX",
"href": "https://api.spotify.com/v1/artists/5C0gCCG8N5Dh5dZytIgzLX",
"type": "artist",
"id": "5C0gCCG8N5Dh5dZytIgzLX"
}
],
"images": [
{
"url": "https://i.scdn.co/image/dfdebdf64c884d2016f8a7eea909c29e37d53514",
"width": 640,
"height": 634
},
{
"url": "https://i.scdn.co/image/94ad4a04d30e62c8cac67a5577e702ec89a6c2f9",
"width": 300,
"height": 297
},
{
"url": "https://i.scdn.co/image/f93ddc730083491dc21299b2578fb0877116dab6",
"width": 64,
"height": 63
}
],
"id": "0gUoiZk9aWpg3HXaygDNp6"
},
"2tdJzRmoFwJME9skwrPGew": {
"name": "Strange Cargo III",
"release_date": "1993",
"uri": "spotify:album:2tdJzRmoFwJME9skwrPGew",
"artists": [
{
"name": "William Orbit",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2AHGrNDMKFi8rHqQ8kJqfl"
},
"uri": "spotify:artist:2AHGrNDMKFi8rHqQ8kJqfl",
"href": "https://api.spotify.com/v1/artists/2AHGrNDMKFi8rHqQ8kJqfl",
"type": "artist",
"id": "2AHGrNDMKFi8rHqQ8kJqfl"
}
],
"images": [
{
"url": "https://i.scdn.co/image/abbe3a9d75d17b4d25a19599e3e351739fd465f7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/39f490311d6f0bd4bda85f8f8d746d4200f15335",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/57302870e62cbef4a83ec35ee0f080da0a93f06b",
"width": 64,
"height": 64
}
],
"id": "2tdJzRmoFwJME9skwrPGew"
},
"3wRlU7n3LULfjL0e9RtB5Q": {
"name": "Play & Play: B Sides",
"release_date": "2008-06-02",
"uri": "spotify:album:3wRlU7n3LULfjL0e9RtB5Q",
"artists": [
{
"name": "Moby",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3OsRAKCvk37zwYcnzRf5XF"
},
"uri": "spotify:artist:3OsRAKCvk37zwYcnzRf5XF",
"href": "https://api.spotify.com/v1/artists/3OsRAKCvk37zwYcnzRf5XF",
"type": "artist",
"id": "3OsRAKCvk37zwYcnzRf5XF"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d87c707723ad9ac4d337f276a5ad3aba60fed81a",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/cde6b4a79ea14830af1afc4879575072a88d4963",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3a1d673775f6c0d90e2ae3d45385eb095f23b84b",
"width": 64,
"height": 64
}
],
"id": "3wRlU7n3LULfjL0e9RtB5Q"
},
"05wcY4zcfSawCyoutTTxda": {
"name": "Step In The Arena",
"release_date": "1991-01-15",
"uri": "spotify:album:05wcY4zcfSawCyoutTTxda",
"artists": [
{
"name": "Gang Starr",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5cMgGlA1xGyeAB2ctYlRdZ"
},
"uri": "spotify:artist:5cMgGlA1xGyeAB2ctYlRdZ",
"href": "https://api.spotify.com/v1/artists/5cMgGlA1xGyeAB2ctYlRdZ",
"type": "artist",
"id": "5cMgGlA1xGyeAB2ctYlRdZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/807ad3cf5b56ab8ebff93c18181372590330c61b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ea337bebe52a800286bfaaab0f9902f1e4bbeb43",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/39f8b315b2316277685f68348ac8170917f28d0d",
"width": 64,
"height": 64
}
],
"id": "05wcY4zcfSawCyoutTTxda"
},
"0Io0LirRuQhO2l3OMmgfpO": {
"name": "Come Find Yourself",
"release_date": "1996-02-20",
"uri": "spotify:album:0Io0LirRuQhO2l3OMmgfpO",
"artists": [
{
"name": "Fun Lovin' Criminals",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0hWRiJV8KlRZvsZeemUJVv"
},
"uri": "spotify:artist:0hWRiJV8KlRZvsZeemUJVv",
"href": "https://api.spotify.com/v1/artists/0hWRiJV8KlRZvsZeemUJVv",
"type": "artist",
"id": "0hWRiJV8KlRZvsZeemUJVv"
}
],
"images": [
{
"url": "https://i.scdn.co/image/355d32108a3384342de67b538e8ebfdbcfd2664e",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ec095f801d14cd60ccefe3850e2733d1400b5adf",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eb2aa20f77dfac49655b2dfb830bb1f4809b99d1",
"width": 64,
"height": 64
}
],
"id": "0Io0LirRuQhO2l3OMmgfpO"
},
"12UO1VN1TffieQyDyzjivp": {
"name": "Straight Outta Compton (2002 - Remaster)",
"release_date": "1988-08-08",
"uri": "spotify:album:12UO1VN1TffieQyDyzjivp",
"artists": [
{
"name": "N.W.A.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4EnEZVjo3w1cwcQYePccay"
},
"uri": "spotify:artist:4EnEZVjo3w1cwcQYePccay",
"href": "https://api.spotify.com/v1/artists/4EnEZVjo3w1cwcQYePccay",
"type": "artist",
"id": "4EnEZVjo3w1cwcQYePccay"
}
],
"images": [
{
"url": "https://i.scdn.co/image/66472225a8e3044a8b979afc417db5887930e626",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/73d3a3a310c5c01c252185e9013acdb23b85d8ba",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a49df0bcda13a75d37b1deb2bd9a8220ce6a7284",
"width": 64,
"height": 64
}
],
"id": "12UO1VN1TffieQyDyzjivp"
},
"23vzCh5cDn0LzdGmGWrT1d": {
"name": "The Rising",
"release_date": "2002-07-30",
"uri": "spotify:album:23vzCh5cDn0LzdGmGWrT1d",
"artists": [
{
"name": "Bruce Springsteen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3eqjTLE0HfPfh78zjh6TqT"
},
"uri": "spotify:artist:3eqjTLE0HfPfh78zjh6TqT",
"href": "https://api.spotify.com/v1/artists/3eqjTLE0HfPfh78zjh6TqT",
"type": "artist",
"id": "3eqjTLE0HfPfh78zjh6TqT"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5bccfa9a59cbcc063a614b238879fbbf6f2fb0ec",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/6761c240d47e1b57440cfce382992b8c0a40413b",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5a82078d6f7821a5c0de0ad8e2a08b95c71c8f81",
"width": 64,
"height": 64
}
],
"id": "23vzCh5cDn0LzdGmGWrT1d"
},
"1dwzhoYlTd5ZgPygszllwo": {
"name": "GI",
"release_date": "1979",
"uri": "spotify:album:1dwzhoYlTd5ZgPygszllwo",
"artists": [
{
"name": "Germs",
"external_urls": {
"spotify": "https://open.spotify.com/artist/39zgKjGWsiZzJ9h6gbrPFY"
},
"uri": "spotify:artist:39zgKjGWsiZzJ9h6gbrPFY",
"href": "https://api.spotify.com/v1/artists/39zgKjGWsiZzJ9h6gbrPFY",
"type": "artist",
"id": "39zgKjGWsiZzJ9h6gbrPFY"
}
],
"images": [
{
"url": "https://i.scdn.co/image/4c70eb4df6faef318f853af344c94f81280372e3",
"width": 612,
"height": 640
},
{
"url": "https://i.scdn.co/image/8451424698a88ef2c7e2fd877e7a03d55267a083",
"width": 287,
"height": 300
},
{
"url": "https://i.scdn.co/image/d58ed456d0c98a9a8075943dfbd0a130f10ac21e",
"width": 61,
"height": 64
}
],
"id": "1dwzhoYlTd5ZgPygszllwo"
},
"4jHuw0FsxTYTS3TFOmnYyD": {
"name": "Smash",
"release_date": "1994-04-08",
"uri": "spotify:album:4jHuw0FsxTYTS3TFOmnYyD",
"artists": [
{
"name": "The Offspring",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5LfGQac0EIXyAN8aUwmNAQ"
},
"uri": "spotify:artist:5LfGQac0EIXyAN8aUwmNAQ",
"href": "https://api.spotify.com/v1/artists/5LfGQac0EIXyAN8aUwmNAQ",
"type": "artist",
"id": "5LfGQac0EIXyAN8aUwmNAQ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/968c40e430be1f86071823e0b242cd29f603aecd",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/09934081809828316994487d7ca9e4e65d1c14cd",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/421a2c78da0d16bbdeaeff756058052b3a8f8058",
"width": 64,
"height": 64
}
],
"id": "4jHuw0FsxTYTS3TFOmnYyD"
},
"0wdleLMeNmGUHChsmx9svt": {
"name": "Cee-Lo Green... Is The Soul Machine",
"release_date": "2004-03-02",
"uri": "spotify:album:0wdleLMeNmGUHChsmx9svt",
"artists": [
{
"name": "Cee Lo Green",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5nLYd9ST4Cnwy6NHaCxbj8"
},
"uri": "spotify:artist:5nLYd9ST4Cnwy6NHaCxbj8",
"href": "https://api.spotify.com/v1/artists/5nLYd9ST4Cnwy6NHaCxbj8",
"type": "artist",
"id": "5nLYd9ST4Cnwy6NHaCxbj8"
}
],
"images": [
{
"url": "https://i.scdn.co/image/8575ee724b425643b585d034c5e991f8102684af",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/51248783a17675e4c64e5fa51757b65e6133163d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e608886a6477bbad367477f8b7543aafeb0ebd09",
"width": 64,
"height": 64
}
],
"id": "0wdleLMeNmGUHChsmx9svt"
},
"1W0fmt3UzzyxvzRqvHoNFw": {
"name": "Different Class / Deluxe Edition",
"release_date": "2006-09-01",
"uri": "spotify:album:1W0fmt3UzzyxvzRqvHoNFw",
"artists": [
{
"name": "Pulp",
"external_urls": {
"spotify": "https://open.spotify.com/artist/36E7oYfz3LLRto6l2WmDcD"
},
"uri": "spotify:artist:36E7oYfz3LLRto6l2WmDcD",
"href": "https://api.spotify.com/v1/artists/36E7oYfz3LLRto6l2WmDcD",
"type": "artist",
"id": "36E7oYfz3LLRto6l2WmDcD"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f8278e4b884e9e1923be8b4d3d85c51d2fbfce1c",
"width": 640,
"height": 638
},
{
"url": "https://i.scdn.co/image/413d8a76aaf77a00e832b44be25b21c5253c0171",
"width": 300,
"height": 299
},
{
"url": "https://i.scdn.co/image/6088dad0de7a46c62257aeb6568c7c5ffe67a192",
"width": 64,
"height": 64
}
],
"id": "1W0fmt3UzzyxvzRqvHoNFw"
},
"5iKbwJTf8URd3TSR3xlsuH": {
"name": "Roadrunner: The Beserkley Collection",
"release_date": "2004",
"uri": "spotify:album:5iKbwJTf8URd3TSR3xlsuH",
"artists": [
{
"name": "Jonathan Richman And The Modern Lovers",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0NjdXlUziaK1qv3kgZV4Jy"
},
"uri": "spotify:artist:0NjdXlUziaK1qv3kgZV4Jy",
"href": "https://api.spotify.com/v1/artists/0NjdXlUziaK1qv3kgZV4Jy",
"type": "artist",
"id": "0NjdXlUziaK1qv3kgZV4Jy"
}
],
"images": [
{
"url": "https://i.scdn.co/image/9fa3c384a57f2fd3c8220775be9f15a0770ceb93",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e93125985a9c9cbc79148be9dbbbd281cb61c999",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/845fae40fb02556d756b11ef4e4f006997314620",
"width": 64,
"height": 64
}
],
"id": "5iKbwJTf8URd3TSR3xlsuH"
},
"0vkWciD32ObFi5iXtWmkvo": {
"name": "Scream, Dracula, Scream",
"release_date": "1995",
"uri": "spotify:album:0vkWciD32ObFi5iXtWmkvo",
"artists": [
{
"name": "Rocket From The Crypt",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5GOJQ1HSMGp1rEnOhBeH1h"
},
"uri": "spotify:artist:5GOJQ1HSMGp1rEnOhBeH1h",
"href": "https://api.spotify.com/v1/artists/5GOJQ1HSMGp1rEnOhBeH1h",
"type": "artist",
"id": "5GOJQ1HSMGp1rEnOhBeH1h"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b703c0243d95736f5ec8d842c828fa1ed8c8d50e",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/7bd725cff971d565d0257fd57f292663337abdec",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d4302a650d88f14e66ed5189d05e6823aadd94b5",
"width": 64,
"height": 64
}
],
"id": "0vkWciD32ObFi5iXtWmkvo"
},
"3enuKERSauyNFVTa2n0t7S": {
"name": "Greatest Hits II (2011 Remaster)",
"release_date": "1991-10-28",
"uri": "spotify:album:3enuKERSauyNFVTa2n0t7S",
"artists": [
{
"name": "Queen",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1dfeR4HaWDbWqFHLkxsg1d"
},
"uri": "spotify:artist:1dfeR4HaWDbWqFHLkxsg1d",
"href": "https://api.spotify.com/v1/artists/1dfeR4HaWDbWqFHLkxsg1d",
"type": "artist",
"id": "1dfeR4HaWDbWqFHLkxsg1d"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c3ce7612f9333dc3c8984e5c5c3f55e62e0cddc2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/560a2af3ed5a22154ea86f1065c68c27b86dbf44",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/e840b4f9aeaa3f6bb438f6c31da2bfc1cf46a9e2",
"width": 64,
"height": 64
}
],
"id": "3enuKERSauyNFVTa2n0t7S"
},
"5vzC8CgZMeaBubitu2rK6m": {
"name": "Ready To Die",
"release_date": "1994",
"uri": "spotify:album:5vzC8CgZMeaBubitu2rK6m",
"artists": [
{
"name": "The Notorious B.I.G.",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5me0Irg2ANcsgc93uaYrpb"
},
"uri": "spotify:artist:5me0Irg2ANcsgc93uaYrpb",
"href": "https://api.spotify.com/v1/artists/5me0Irg2ANcsgc93uaYrpb",
"type": "artist",
"id": "5me0Irg2ANcsgc93uaYrpb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d922c0ad04a0096c3a392df083fb85f4f41761a5",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/80c4ece4e5ce825c001f6d3c8ba69dc62f5be153",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/53b3abb862dbb123ebf423faa74641d22cda90ed",
"width": 64,
"height": 64
}
],
"id": "5vzC8CgZMeaBubitu2rK6m"
},
"6J6nlVu4JMveJz0YM9zDgL": {
"name": "Kid A",
"release_date": "2000-10-02",
"uri": "spotify:album:6J6nlVu4JMveJz0YM9zDgL",
"artists": [
{
"name": "Radiohead",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4Z8W4fKeB5YxbusRsdQVPb"
},
"uri": "spotify:artist:4Z8W4fKeB5YxbusRsdQVPb",
"href": "https://api.spotify.com/v1/artists/4Z8W4fKeB5YxbusRsdQVPb",
"type": "artist",
"id": "4Z8W4fKeB5YxbusRsdQVPb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c3aeb51328216ec61c11191d5c6c33f320164b95",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/690e5c2be4147fe16bf810b5d7e4ce3582319945",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/c855e570037c355b063567068807c45616e86cbb",
"width": 64,
"height": 64
}
],
"id": "6J6nlVu4JMveJz0YM9zDgL"
},
"0Syn17gPB8FVLmRpFiYWyM": {
"name": "Fleet Foxes",
"release_date": "2008-12-01",
"uri": "spotify:album:0Syn17gPB8FVLmRpFiYWyM",
"artists": [
{
"name": "Fleet Foxes",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4EVpmkEwrLYEg6jIsiPMIb"
},
"uri": "spotify:artist:4EVpmkEwrLYEg6jIsiPMIb",
"href": "https://api.spotify.com/v1/artists/4EVpmkEwrLYEg6jIsiPMIb",
"type": "artist",
"id": "4EVpmkEwrLYEg6jIsiPMIb"
}
],
"images": [
{
"url": "https://i.scdn.co/image/a764b4fa242690037abbb7122adb8892f43bcbde",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/a25c28a11fa0dfc77373bbef28644caddae89911",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/1fc1141fc49b775152f211baaab395ca11e93075",
"width": 64,
"height": 64
}
],
"id": "0Syn17gPB8FVLmRpFiYWyM"
},
"79ZX48114T8NH36MnOTtl7": {
"name": "Arrival",
"release_date": "1976",
"uri": "spotify:album:79ZX48114T8NH36MnOTtl7",
"artists": [
{
"name": "ABBA",
"external_urls": {
"spotify": "https://open.spotify.com/artist/0LcJLqbBmaGUft1e9Mm8HV"
},
"uri": "spotify:artist:0LcJLqbBmaGUft1e9Mm8HV",
"href": "https://api.spotify.com/v1/artists/0LcJLqbBmaGUft1e9Mm8HV",
"type": "artist",
"id": "0LcJLqbBmaGUft1e9Mm8HV"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e476ed4023827e55692e1b676c79cc6e9cd0600b",
"width": 640,
"height": 575
},
{
"url": "https://i.scdn.co/image/59f4f383515d3d13560ac3b7e18580aee27cad7f",
"width": 300,
"height": 270
},
{
"url": "https://i.scdn.co/image/c77cc67a983a67a1f6eff3f404a81246d73a4810",
"width": 64,
"height": 58
}
],
"id": "79ZX48114T8NH36MnOTtl7"
},
"7uSgX0fbBol4NDyqsSZJaE": {
"name": "Mermaid Avenue: The Complete Sessions",
"release_date": "2012-04-20",
"uri": "spotify:album:7uSgX0fbBol4NDyqsSZJaE",
"artists": [
{
"name": "Billy Bragg",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5yXAFDZNUNyO92l5WTImkO"
},
"uri": "spotify:artist:5yXAFDZNUNyO92l5WTImkO",
"href": "https://api.spotify.com/v1/artists/5yXAFDZNUNyO92l5WTImkO",
"type": "artist",
"id": "5yXAFDZNUNyO92l5WTImkO"
},
{
"name": "Wilco",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2QoU3awHVdcHS8LrZEKvSM"
},
"uri": "spotify:artist:2QoU3awHVdcHS8LrZEKvSM",
"href": "https://api.spotify.com/v1/artists/2QoU3awHVdcHS8LrZEKvSM",
"type": "artist",
"id": "2QoU3awHVdcHS8LrZEKvSM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/aec8e7035637dd90030df094f65f793b3cd458e3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/eddd4a554e52656c01836264918b58103af1b3d5",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7c0a9723700ff298dc820041737f186acc87625c",
"width": 64,
"height": 64
}
],
"id": "7uSgX0fbBol4NDyqsSZJaE"
},
"3i3imP9g6gCc6VzeeyduXZ": {
"name": "Sticky Fingers (Remastered 2009)",
"release_date": "1971-04-23",
"uri": "spotify:album:3i3imP9g6gCc6VzeeyduXZ",
"artists": [
{
"name": "The Rolling Stones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/22bE4uQ6baNwSHPVcDxLCe"
},
"uri": "spotify:artist:22bE4uQ6baNwSHPVcDxLCe",
"href": "https://api.spotify.com/v1/artists/22bE4uQ6baNwSHPVcDxLCe",
"type": "artist",
"id": "22bE4uQ6baNwSHPVcDxLCe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/406c1885e5644613388d47a6f0c5b5963a55835a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/76f5b86a326ca21f892ebaa5f77e76968e6ca3ba",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/098c2f2658b03ddb8a31eee0994a7efd788dd8f7",
"width": 64,
"height": 64
}
],
"id": "3i3imP9g6gCc6VzeeyduXZ"
},
"0lpEvJEfpLXHd858t35DQt": {
"name": "Fuzzy",
"release_date": "1993",
"uri": "spotify:album:0lpEvJEfpLXHd858t35DQt",
"artists": [
{
"name": "Grant Lee Buffalo",
"external_urls": {
"spotify": "https://open.spotify.com/artist/31ir0nQWMLTowZmZO8CiBw"
},
"uri": "spotify:artist:31ir0nQWMLTowZmZO8CiBw",
"href": "https://api.spotify.com/v1/artists/31ir0nQWMLTowZmZO8CiBw",
"type": "artist",
"id": "31ir0nQWMLTowZmZO8CiBw"
}
],
"images": [
{
"url": "https://i.scdn.co/image/f61ef7d5b7091cc2b42463f3cc1793260bf4435b",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/5c10f19588405bc98ae9461b0131d211ed24f62f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eca8ccc050f6338aa00ac7fa100e16a994c4d34d",
"width": 64,
"height": 64
}
],
"id": "0lpEvJEfpLXHd858t35DQt"
},
"6OAzWuJqxiCFZ0cvqM9EFh": {
"name": "Rejoicing In The Hands",
"release_date": "2004-05-24",
"uri": "spotify:album:6OAzWuJqxiCFZ0cvqM9EFh",
"artists": [
{
"name": "Devendra Banhart",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1YZEoYFXx4AxVv13OiOPvZ"
},
"uri": "spotify:artist:1YZEoYFXx4AxVv13OiOPvZ",
"href": "https://api.spotify.com/v1/artists/1YZEoYFXx4AxVv13OiOPvZ",
"type": "artist",
"id": "1YZEoYFXx4AxVv13OiOPvZ"
}
],
"images": [
{
"url": "https://i.scdn.co/image/0767b14a4e3f385fe49bb591eb78ce0aaf7513c0",
"width": 600,
"height": 601
},
{
"url": "https://i.scdn.co/image/6ed65644575b99a0c7fe2fbb7232a96a9b290f3e",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/9a1be85d4987fe44fbc9d35d0dddb89524ff6e97",
"width": 64,
"height": 64
}
],
"id": "6OAzWuJqxiCFZ0cvqM9EFh"
},
"2zRDp36FDBbOJDihTwQpKa": {
"name": "Teenager Of The Year",
"release_date": "1994-05-23",
"uri": "spotify:album:2zRDp36FDBbOJDihTwQpKa",
"artists": [
{
"name": "Frank Black",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5Q8gM5SMBT2LAoZ5LzqAvH"
},
"uri": "spotify:artist:5Q8gM5SMBT2LAoZ5LzqAvH",
"href": "https://api.spotify.com/v1/artists/5Q8gM5SMBT2LAoZ5LzqAvH",
"type": "artist",
"id": "5Q8gM5SMBT2LAoZ5LzqAvH"
}
],
"images": [
{
"url": "https://i.scdn.co/image/52fea90bfaaf433d0e8544a1e97e4512d5b98798",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/97e3ddca377e1e3130f5efb76f2442f7f8076550",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/bb1979c56a4f2af459a09213ced1e0a67103b4ae",
"width": 64,
"height": 64
}
],
"id": "2zRDp36FDBbOJDihTwQpKa"
},
"7AHbaRIYnilUwe981nZpmi": {
"name": "Yank Crime",
"release_date": "1994",
"uri": "spotify:album:7AHbaRIYnilUwe981nZpmi",
"artists": [
{
"name": "Drive Like Jehu",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7FbdCzKUwoZs1v9bCl43Ev"
},
"uri": "spotify:artist:7FbdCzKUwoZs1v9bCl43Ev",
"href": "https://api.spotify.com/v1/artists/7FbdCzKUwoZs1v9bCl43Ev",
"type": "artist",
"id": "7FbdCzKUwoZs1v9bCl43Ev"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d914d694febeb885c5b6c41fa8ffeed74d01f580",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/34e3a0fc899956529307a7a23d85d25b8ddceea6",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/81c33d0d9930d3cf32c0fe6ed209b5f126a7a825",
"width": 64,
"height": 64
}
],
"id": "7AHbaRIYnilUwe981nZpmi"
},
"2vgJ5TE9W64JNZhPiFzYRE": {
"name": "Bizarre Ride II The Pharcyde (Deluxe Edition)",
"release_date": "1992-01-01",
"uri": "spotify:album:2vgJ5TE9W64JNZhPiFzYRE",
"artists": [
{
"name": "The Pharcyde",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7yk35uHNQclPXFGFoTU44w"
},
"uri": "spotify:artist:7yk35uHNQclPXFGFoTU44w",
"href": "https://api.spotify.com/v1/artists/7yk35uHNQclPXFGFoTU44w",
"type": "artist",
"id": "7yk35uHNQclPXFGFoTU44w"
}
],
"images": [
{
"url": "https://i.scdn.co/image/48bbe229b4bba90f024bafc08f80219dafb0e539",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e3382a2dfa780e761a6cc273fe4d3e909cee6dc2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/7f4d18c5a3ef52042d5497d05292085715016018",
"width": 64,
"height": 64
}
],
"id": "2vgJ5TE9W64JNZhPiFzYRE"
},
"5ji2M0Ei7VAASfYfvBVx3M": {
"name": "69 Love Songs",
"release_date": "1999",
"uri": "spotify:album:5ji2M0Ei7VAASfYfvBVx3M",
"artists": [
{
"name": "The Magnetic Fields",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6RWjTQqILL7a1tQ0VapyLK"
},
"uri": "spotify:artist:6RWjTQqILL7a1tQ0VapyLK",
"href": "https://api.spotify.com/v1/artists/6RWjTQqILL7a1tQ0VapyLK",
"type": "artist",
"id": "6RWjTQqILL7a1tQ0VapyLK"
}
],
"images": [
{
"url": "https://i.scdn.co/image/452d85af3ad345ec06fcd33fcd03208dd01a2075",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/9f2c9cf129379934e867ed6f031a9f7735a6da8d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d9b1bf8d36325c61e220545e99860e08f017cdac",
"width": 64,
"height": 64
}
],
"id": "5ji2M0Ei7VAASfYfvBVx3M"
},
"0sOJ1TztxZdEfUbX7f1CZO": {
"name": "Sheet Music",
"release_date": "1974",
"uri": "spotify:album:0sOJ1TztxZdEfUbX7f1CZO",
"artists": [
{
"name": "10cc",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6i6WlGzQtXtz7GcC5H5st5"
},
"uri": "spotify:artist:6i6WlGzQtXtz7GcC5H5st5",
"href": "https://api.spotify.com/v1/artists/6i6WlGzQtXtz7GcC5H5st5",
"type": "artist",
"id": "6i6WlGzQtXtz7GcC5H5st5"
}
],
"images": [
{
"url": "https://i.scdn.co/image/1b91fabcbf5b7985c3c2c31a34703510318ef202",
"width": 600,
"height": 600
},
{
"url": "https://i.scdn.co/image/1622d7d0dd75437a8da956dcf7da10ecd8dfc7fa",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/51dd377f9ca9900d2bc271313b0bab160953fb5f",
"width": 64,
"height": 64
}
],
"id": "0sOJ1TztxZdEfUbX7f1CZO"
},
"6hmmX5UP4rIvOpGSaPerV8": {
"name": "Tracy Chapman",
"release_date": "1988-01-01",
"uri": "spotify:album:6hmmX5UP4rIvOpGSaPerV8",
"artists": [
{
"name": "Tracy Chapman",
"external_urls": {
"spotify": "https://open.spotify.com/artist/7oPgCQqMMXEXrNau5vxYZP"
},
"uri": "spotify:artist:7oPgCQqMMXEXrNau5vxYZP",
"href": "https://api.spotify.com/v1/artists/7oPgCQqMMXEXrNau5vxYZP",
"type": "artist",
"id": "7oPgCQqMMXEXrNau5vxYZP"
}
],
"images": [
{
"url": "https://i.scdn.co/image/19970404b9d849956f085f4b2175f06c73dc362c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e00124ed1864f9ae7f41b7e4e065c4ee41f45892",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5331e788e00e9fc15a818adebb594ca11f421c72",
"width": 64,
"height": 64
}
],
"id": "6hmmX5UP4rIvOpGSaPerV8"
},
"4FHd783Gm1k8Fj2JWS34eb": {
"name": "The Fat Of The Land",
"release_date": "1997-06-30",
"uri": "spotify:album:4FHd783Gm1k8Fj2JWS34eb",
"artists": [
{
"name": "The Prodigy",
"external_urls": {
"spotify": "https://open.spotify.com/artist/4k1ELeJKT1ISyDv8JivPpB"
},
"uri": "spotify:artist:4k1ELeJKT1ISyDv8JivPpB",
"href": "https://api.spotify.com/v1/artists/4k1ELeJKT1ISyDv8JivPpB",
"type": "artist",
"id": "4k1ELeJKT1ISyDv8JivPpB"
}
],
"images": [
{
"url": "https://i.scdn.co/image/2ff9b47c65ff007c4744f58ee83b64ca34a04f62",
"width": 640,
"height": 618
},
{
"url": "https://i.scdn.co/image/a482bfa14e61812b58f8d0fc3891e6654d68078d",
"width": 300,
"height": 290
},
{
"url": "https://i.scdn.co/image/11b1a6b65c76726f72d6b1ad45c4e2e6e472b182",
"width": 64,
"height": 62
}
],
"id": "4FHd783Gm1k8Fj2JWS34eb"
},
"7wH3vXQZgy9a6PUvMXLayk": {
"name": "Space Ritual",
"release_date": "1973",
"uri": "spotify:album:7wH3vXQZgy9a6PUvMXLayk",
"artists": [
{
"name": "Hawkwind",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2jK54ZlZhTF1TxygsVeR05"
},
"uri": "spotify:artist:2jK54ZlZhTF1TxygsVeR05",
"href": "https://api.spotify.com/v1/artists/2jK54ZlZhTF1TxygsVeR05",
"type": "artist",
"id": "2jK54ZlZhTF1TxygsVeR05"
}
],
"images": [
{
"url": "https://i.scdn.co/image/efdf9ec86267b28c61adbc42a514de8b0f01cfb3",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/38c860077d34d02736ec653dadaee3c4a8e0d2d2",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/a34b94aac070bc24128c5b7611329bea104fa52e",
"width": 64,
"height": 64
}
],
"id": "7wH3vXQZgy9a6PUvMXLayk"
},
"0WYYrC9My9rYWigac003hw": {
"name": "Hot Rats",
"release_date": "1969-10-10",
"uri": "spotify:album:0WYYrC9My9rYWigac003hw",
"artists": [
{
"name": "Frank Zappa",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6ra4GIOgCZQZMOaUECftGN"
},
"uri": "spotify:artist:6ra4GIOgCZQZMOaUECftGN",
"href": "https://api.spotify.com/v1/artists/6ra4GIOgCZQZMOaUECftGN",
"type": "artist",
"id": "6ra4GIOgCZQZMOaUECftGN"
}
],
"images": [
{
"url": "https://i.scdn.co/image/7b7b8f87e371a48bfa9b96d09ebbc6753b9e7297",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/de00035155324c6706fcb8af1ca14d418d0c1a06",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/571d985c0647f6c85c50b5b4cb68ed81f2440ce0",
"width": 64,
"height": 64
}
],
"id": "0WYYrC9My9rYWigac003hw"
},
"4OYjeX6ByIDmklZLMUSxhT": {
"name": "The Undertones",
"release_date": "1979",
"uri": "spotify:album:4OYjeX6ByIDmklZLMUSxhT",
"artists": [
{
"name": "The Undertones",
"external_urls": {
"spotify": "https://open.spotify.com/artist/2WRStKp4ihGVUzlzWfv1Qt"
},
"uri": "spotify:artist:2WRStKp4ihGVUzlzWfv1Qt",
"href": "https://api.spotify.com/v1/artists/2WRStKp4ihGVUzlzWfv1Qt",
"type": "artist",
"id": "2WRStKp4ihGVUzlzWfv1Qt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/b16e9539199d7ae242f996026d20c088b9aa2ac0",
"width": 640,
"height": 630
},
{
"url": "https://i.scdn.co/image/8a75c565561d8eb7037f9fa8ce3f9c152904b4ae",
"width": 300,
"height": 295
},
{
"url": "https://i.scdn.co/image/cf5598fc77700914c9936a1902f072f363c64738",
"width": 64,
"height": 63
}
],
"id": "4OYjeX6ByIDmklZLMUSxhT"
},
"48AGkmM7iO4jrELRnNZGPV": {
"name": "Like A Prayer",
"release_date": "1989-03-21",
"uri": "spotify:album:48AGkmM7iO4jrELRnNZGPV",
"artists": [
{
"name": "Madonna",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6tbjWDEIzxoDsBA1FuhfPW"
},
"uri": "spotify:artist:6tbjWDEIzxoDsBA1FuhfPW",
"href": "https://api.spotify.com/v1/artists/6tbjWDEIzxoDsBA1FuhfPW",
"type": "artist",
"id": "6tbjWDEIzxoDsBA1FuhfPW"
}
],
"images": [
{
"url": "https://i.scdn.co/image/e41ccd612f1f0d3de08f2ca147f32efb16e0f56a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/27428b28f68db617679aa5cb9822054293bb9b52",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/92a1b30e71441c33bc96ddcbeeb4bf492b5ff25b",
"width": 64,
"height": 64
}
],
"id": "48AGkmM7iO4jrELRnNZGPV"
},
"37hHXJ7xas2Nb7Jbi8ip4E": {
"name": "Heaven Or Las Vegas (Remastered)",
"release_date": "1990",
"uri": "spotify:album:37hHXJ7xas2Nb7Jbi8ip4E",
"artists": [
{
"name": "Cocteau Twins",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5Wabl1lPdNOeIn0SQ5A1mp"
},
"uri": "spotify:artist:5Wabl1lPdNOeIn0SQ5A1mp",
"href": "https://api.spotify.com/v1/artists/5Wabl1lPdNOeIn0SQ5A1mp",
"type": "artist",
"id": "5Wabl1lPdNOeIn0SQ5A1mp"
}
],
"images": [
{
"url": "https://i.scdn.co/image/17307aa025caece6700eba402d2f0e1a914f515a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/b38f009d63f01ca8cb81eae7fd3502b649848c49",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/5431b0e863d5bba6a7e2073ade2b921b744b408b",
"width": 64,
"height": 64
}
],
"id": "37hHXJ7xas2Nb7Jbi8ip4E"
},
"2UrSPDjccATKgu4CIxu8IV": {
"name": "A Walk Across The Rooftops",
"release_date": "1984",
"uri": "spotify:album:2UrSPDjccATKgu4CIxu8IV",
"artists": [
{
"name": "The Blue Nile",
"external_urls": {
"spotify": "https://open.spotify.com/artist/1GWV70Reko15eV2nHCm0bM"
},
"uri": "spotify:artist:1GWV70Reko15eV2nHCm0bM",
"href": "https://api.spotify.com/v1/artists/1GWV70Reko15eV2nHCm0bM",
"type": "artist",
"id": "1GWV70Reko15eV2nHCm0bM"
}
],
"images": [
{
"url": "https://i.scdn.co/image/64cd0b030b9a39b4c82411cf9b2a3c676bf2ff6c",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/249ec41897980c8cacedf5504a989549ba4881d7",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/6f9f6b59a23666d3ad8a8c88a0398926d566c605",
"width": 64,
"height": 64
}
],
"id": "2UrSPDjccATKgu4CIxu8IV"
},
"1MCmkNa0UxhulmHkGBqw1n": {
"name": "Vanishing Point",
"release_date": "1997-03-19",
"uri": "spotify:album:1MCmkNa0UxhulmHkGBqw1n",
"artists": [
{
"name": "Primal Scream",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3wury2nd8idV4GecUg5xze"
},
"uri": "spotify:artist:3wury2nd8idV4GecUg5xze",
"href": "https://api.spotify.com/v1/artists/3wury2nd8idV4GecUg5xze",
"type": "artist",
"id": "3wury2nd8idV4GecUg5xze"
}
],
"images": [
{
"url": "https://i.scdn.co/image/5db238701d302c2a22d885dabb0e5d62bc023e4f",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/e4ccb0f4d173503c2d8149578efc7cc2395f208d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/12d95a2919d41004bc3cce34ac8aee0cb345f480",
"width": 64,
"height": 64
}
],
"id": "1MCmkNa0UxhulmHkGBqw1n"
},
"51wqCUWehVrNj2Ltc83zJu": {
"name": "Scum",
"release_date": "1987",
"uri": "spotify:album:51wqCUWehVrNj2Ltc83zJu",
"artists": [
{
"name": "Napalm Death",
"external_urls": {
"spotify": "https://open.spotify.com/artist/3UqRgrDIQ208yNGiWKRMNt"
},
"uri": "spotify:artist:3UqRgrDIQ208yNGiWKRMNt",
"href": "https://api.spotify.com/v1/artists/3UqRgrDIQ208yNGiWKRMNt",
"type": "artist",
"id": "3UqRgrDIQ208yNGiWKRMNt"
}
],
"images": [
{
"url": "https://i.scdn.co/image/3334cad238b4361992580374bb8803d7a59c23c2",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/23c9e987124d448f509c9546ba34fee4b863e69f",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/3bdb34d614014407cbe3b9122e5043bd0d25fed0",
"width": 64,
"height": 64
}
],
"id": "51wqCUWehVrNj2Ltc83zJu"
},
"3USUYWiLEX5HLXF9VXo1MY": {
"name": "Black Metal",
"release_date": "1982",
"uri": "spotify:album:3USUYWiLEX5HLXF9VXo1MY",
"artists": [
{
"name": "Venom",
"external_urls": {
"spotify": "https://open.spotify.com/artist/5fwaejlOHVBAw1KhIPPaQe"
},
"uri": "spotify:artist:5fwaejlOHVBAw1KhIPPaQe",
"href": "https://api.spotify.com/v1/artists/5fwaejlOHVBAw1KhIPPaQe",
"type": "artist",
"id": "5fwaejlOHVBAw1KhIPPaQe"
}
],
"images": [
{
"url": "https://i.scdn.co/image/d624255dc47240d42f00d0beb6d2aaf7dfaf81f7",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/ba13979f36ea854237684e4dce85d7f669ca9368",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/eead2e96b8b96ac061f8b34e802d510a5d1dc3b1",
"width": 64,
"height": 64
}
],
"id": "3USUYWiLEX5HLXF9VXo1MY"
},
"0jgEtOLWGKsid52kBzpCRP": {
"name": "The Black Crown",
"release_date": "2011-07-18",
"uri": "spotify:album:0jgEtOLWGKsid52kBzpCRP",
"artists": [
{
"name": "Suicide Silence",
"external_urls": {
"spotify": "https://open.spotify.com/artist/6HZr7Fs2VfV1PYHIwo8Ylc"
},
"uri": "spotify:artist:6HZr7Fs2VfV1PYHIwo8Ylc",
"href": "https://api.spotify.com/v1/artists/6HZr7Fs2VfV1PYHIwo8Ylc",
"type": "artist",
"id": "6HZr7Fs2VfV1PYHIwo8Ylc"
}
],
"images": [
{
"url": "https://i.scdn.co/image/c4267fd5ab28049fa3695fb429ae9ff4ad67959a",
"width": 640,
"height": 640
},
{
"url": "https://i.scdn.co/image/40da2525d2d312cfeeaee3d5f37ac85dc3ed3d1d",
"width": 300,
"height": 300
},
{
"url": "https://i.scdn.co/image/d46fb5af5acb48e62c20e043bc3512e46409025b",
"width": 64,
"height": 64
}
],
"id": "0jgEtOLWGKsid52kBzpCRP"
}
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>1001 albums</title>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/grids-responsive-min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src="http://fb.me/react-0.13.1.min.js"></script>
<script src="http://fb.me/JSXTransformer-0.13.1.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/superagent/0.15.7/superagent.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/3.6.0/lodash.min.js"></script>
<script type="text/jsx;harmony=true" src="app.jsx"></script>
</head>
<body>
<div id="container" class="main"></div>
</body>
</html>
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment