musicgraph 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 565669d2c3f1a4398efe5d9741cc59efc52ac894
4
- data.tar.gz: 5001572c0cdc89a8fc4c9aeac31cb7d9a8057133
3
+ metadata.gz: e59d946827c81a6dfa96be3a1d67d6e75a6bd844
4
+ data.tar.gz: dc4d28275ab30300840e83b4b1a916b42cbaaa5c
5
5
  SHA512:
6
- metadata.gz: 709e4b6c88456e6a17e698e87ca7088ff80495451ace2804decdca9a3d8ba3a47e00cb48576aaa49f0bf716689fc0fd634f6822c66255da5bc8accafe9167236
7
- data.tar.gz: 9dbe24da0a606226ca9e85f701cece956a3b219774d1fce028bf44fcf886799182fce56f5eaad495efc7f006f4f25dd8cde51f01fc1b33f85c3a4059f3bea6d7
6
+ metadata.gz: df0ae0626c42e471207966ea036aba4995e04f04932d34124cd44b150add95db73f5801979bed02ab04edf1f95ae58035c54c9989eb3d1ab284f101361a5300e
7
+ data.tar.gz: 64a849fb5ef6ec3a88ad50cb6661e1c1a8d4f469a94dd8302c1b0ec9c0cd5059f4d06b29ba538dc0c5455961d9ce5cf1499d99233472420cd018437e5e8678f5
data/README.md CHANGED
@@ -67,6 +67,39 @@ artist.tracks # => returns array of tracks belonging to artist
67
67
  artist = MusicGraph::Artist.find("e4de0d41-a6b5-11e0-b446-00251188dd67", ["id", "name"])
68
68
  artist.name # => "Beck"
69
69
  artist.gender # => nil
70
+
71
+ albums = MusicGraph::Album.search("either/or")
72
+ albums.first.title # => "Either/Or"
73
+
74
+ albums = MusicGraph::Album.search({artist_name: "led zeppelin"})
75
+ albums.first.title # => "C'mon Everybody"
76
+
77
+ albums = MusicGraph::Album.search({similar_to: "grace"})
78
+ albums.first.title # => "Tidal"
79
+
80
+ albums = MusicGraph::Album.search({country: "iceland"})
81
+ albums.first.title # => "My Head Is an Animal"
82
+
83
+ albums = MusicGraph::Album.search({decade: "1960s"})
84
+ albums.first.title # => "Soul Shakedown"
85
+
86
+ albums = MusicGraph::Album.search({genre: "rock"})
87
+ albums.first.title # => "You Are the Night"
88
+
89
+ albums = MusicGraph::Album.search({limit: 5}).last
90
+ albums.length # => 5
91
+
92
+ albums = MusicGraph::Album.suggest("emotion").
93
+ albums.first.title # => "Emotions"
94
+
95
+ album = MusicGraph::Album.find("7cfb88ac-1d50-f210-42d6-57a718fa141c")
96
+ albums.first.performer_name # => "The Rolling Stones"
97
+
98
+ album.edges # => ["artists", "tracks"]
99
+
100
+ album.metadata # => returns all available metadata
101
+
102
+ album.artists.first.name # => "The Rolling Stones"
70
103
  ```
71
104
 
72
105
  ## Testing
@@ -1,3 +1,7 @@
1
+ require "faraday"
2
+ require "json"
3
+ require "uri"
4
+
1
5
  require "musicgraph/version"
2
6
  require "musicgraph/artist"
3
7
  require "musicgraph/album"
@@ -1,7 +1,73 @@
1
1
  module MusicGraph
2
2
  class Album
3
+ attr_reader :title, :release_year, :entity_type, :album_artist_id, :id, :number_of_tracks, :album_ref_id, :performer_name, :main_genre, :product_form
4
+
5
+ API_URL = "http://api.musicgraph.com/api/v2/album/"
3
6
 
4
7
  def initialize(attributes)
8
+ @title = attributes["title"]
9
+ @title = attributes["name"] if attributes["name"]
10
+ @release_year = attributes["release_year"]
11
+ @entity_type = attributes["entity_type"]
12
+ @album_artist_id = attributes["album_artist_id"]
13
+ @id = attributes["id"]
14
+ @number_of_tracks = attributes["number_of_tracks"]
15
+ @album_ref_id = attributes["album_ref_id"]
16
+ @performer_name = attributes["performer_name"]
17
+ @main_genre = attributes["main_genre"]
18
+ @product_form = attributes["product_form"]
19
+ end
20
+
21
+ def self.search(params)
22
+ if params.is_a? String
23
+ response = Faraday.get("#{API_URL}search?#{MusicGraph.key_param}&title=#{params}")
24
+ elsif params.is_a? Hash
25
+ encoded_params = URI.encode_www_form(params)
26
+ response = Faraday.get("#{API_URL}search?#{MusicGraph.key_param}&#{encoded_params}")
27
+ end
28
+ albums = JSON.parse(response.body)["data"]
29
+ albums.map { |attributes| new(attributes) }
30
+ end
31
+
32
+ def self.suggest(params)
33
+ if params.is_a? String
34
+ response = Faraday.get("#{API_URL}suggest?#{MusicGraph.key_param}&prefix=#{params}")
35
+ elsif params.is_a? Hash
36
+ encoded_params = URI.encode_www_form(params)
37
+ response = Faraday.get("#{API_URL}suggest?#{MusicGraph.key_param}&#{encoded_params}")
38
+ end
39
+ albums = JSON.parse(response.body)["data"]
40
+ albums.map { |attributes| new(attributes) }
41
+ end
42
+
43
+ def self.find(id, filters = nil)
44
+ request = "#{API_URL}#{id}?#{MusicGraph.key_param}"
45
+ request += "&fields=#{filters.join(",")}" if filters
46
+ response = Faraday.get(request)
47
+ attributes = JSON.parse(response.body)
48
+ new(attributes["data"])
49
+ end
50
+
51
+ def edges
52
+ response = Faraday.get("#{API_URL}#{id}/edges?#{MusicGraph.key_param}")
53
+ JSON.parse(response.body)["data"]
54
+ end
55
+
56
+ def metadata
57
+ response = Faraday.get("#{API_URL}#{id}?#{MusicGraph.key_param}")
58
+ JSON.parse(response.body)["data"]
59
+ end
60
+
61
+ def artists
62
+ response = Faraday.get("#{API_URL}#{id}/artists?#{MusicGraph.key_param}")
63
+ artists = JSON.parse(response.body)["data"]
64
+ artists.map { |attributes| Artist.new(attributes) }
65
+ end
66
+
67
+ def tracks
68
+ response = Faraday.get("#{API_URL}#{id}/tracks?#{MusicGraph.key_param}")
69
+ tracks = JSON.parse(response.body)["data"]
70
+ tracks.map { |attributes| Track.new(attributes) }
5
71
  end
6
72
  end
7
73
  end
@@ -1,13 +1,9 @@
1
- require "faraday"
2
- require "json"
3
- require "uri"
4
-
5
- API_URL = "http://api.musicgraph.com/api/v2/artist/"
6
-
7
1
  module MusicGraph
8
2
  class Artist
9
3
  attr_reader :seven_digital_id, :main_genre, :country_of_origin, :entity_type, :artist_ref_id, :vevo_id, :sort_name, :gender, :rhapsody_id, :id, :decade, :name
10
4
 
5
+ API_URL = "http://api.musicgraph.com/api/v2/artist/"
6
+
11
7
  def initialize(attributes)
12
8
  @seven_digital_id = attributes["7digital_id"]
13
9
  @main_genre = attributes["main_genre"]
@@ -1,3 +1,3 @@
1
1
  module MusicGraph
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -0,0 +1,2738 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&title=either/or
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.9.1
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Access-Control-Allow-Headers:
22
+ - accept, origin, content-type, x-requested-with, x-requested-by
23
+ Access-Control-Allow-Methods:
24
+ - GET, POST, PUT, DELETE, OPTIONS
25
+ Access-Control-Allow-Origin:
26
+ - "*"
27
+ Content-Type:
28
+ - application/json; charset=UTF-8
29
+ Date:
30
+ - Thu, 26 Feb 2015 04:58:34 GMT
31
+ Server:
32
+ - nginx/1.5.11
33
+ Content-Length:
34
+ - '594'
35
+ Connection:
36
+ - keep-alive
37
+ body:
38
+ encoding: UTF-8
39
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
40
+ {"count": 2, "offset": 1}, "data": [{"release_year": 1997, "entity_type":
41
+ "album", "title": "Either/Or", "main_genre": "rock", "number_of_tracks": "12",
42
+ "album_ref_id": "3693047", "performer_name": "Elliott Smith", "id": "17f425bf-36cd-95b7-deef-5f7b45eb6cc5",
43
+ "product_form": "Album"}, {"entity_type": "album", "title": "Either/Or", "main_genre":
44
+ "rock", "number_of_tracks": "13", "album_ref_id": "65258409", "performer_name":
45
+ "Everyone Involved", "id": "f897831a-6c4d-7602-cc6f-4b38ff14227d", "product_form":
46
+ "Album"}]}'
47
+ http_version:
48
+ recorded_at: Thu, 26 Feb 2015 04:58:31 GMT
49
+ - request:
50
+ method: get
51
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&title=%7B:title=%3E%22the%20carpenter%22%7D
52
+ body:
53
+ encoding: US-ASCII
54
+ string: ''
55
+ headers:
56
+ User-Agent:
57
+ - Faraday v0.9.1
58
+ Accept-Encoding:
59
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
60
+ Accept:
61
+ - "*/*"
62
+ response:
63
+ status:
64
+ code: 200
65
+ message: OK
66
+ headers:
67
+ Access-Control-Allow-Headers:
68
+ - accept, origin, content-type, x-requested-with, x-requested-by
69
+ Access-Control-Allow-Methods:
70
+ - GET, POST, PUT, DELETE, OPTIONS
71
+ Access-Control-Allow-Origin:
72
+ - "*"
73
+ Content-Type:
74
+ - application/json; charset=UTF-8
75
+ Date:
76
+ - Fri, 27 Feb 2015 03:47:41 GMT
77
+ Server:
78
+ - nginx/1.5.11
79
+ Content-Length:
80
+ - '111'
81
+ Connection:
82
+ - keep-alive
83
+ body:
84
+ encoding: UTF-8
85
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
86
+ {"count": 0, "offset": 1}, "data": []}'
87
+ http_version:
88
+ recorded_at: Fri, 27 Feb 2015 03:47:14 GMT
89
+ - request:
90
+ method: get
91
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&title=the%20carpenter
92
+ body:
93
+ encoding: US-ASCII
94
+ string: ''
95
+ headers:
96
+ User-Agent:
97
+ - Faraday v0.9.1
98
+ Accept-Encoding:
99
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
100
+ Accept:
101
+ - "*/*"
102
+ response:
103
+ status:
104
+ code: 200
105
+ message: OK
106
+ headers:
107
+ Access-Control-Allow-Headers:
108
+ - accept, origin, content-type, x-requested-with, x-requested-by
109
+ Access-Control-Allow-Methods:
110
+ - GET, POST, PUT, DELETE, OPTIONS
111
+ Access-Control-Allow-Origin:
112
+ - "*"
113
+ Content-Type:
114
+ - application/json; charset=UTF-8
115
+ Date:
116
+ - Fri, 27 Feb 2015 03:56:40 GMT
117
+ Server:
118
+ - nginx/1.5.11
119
+ Content-Length:
120
+ - '111'
121
+ Connection:
122
+ - keep-alive
123
+ body:
124
+ encoding: UTF-8
125
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
126
+ {"count": 0, "offset": 1}, "data": []}'
127
+ http_version:
128
+ recorded_at: Fri, 27 Feb 2015 03:54:11 GMT
129
+ - request:
130
+ method: get
131
+ uri: http://api.musicgraph.com/api/v2/artist/search?api_key=<API_KEY>&name=the%20avett%20brothers
132
+ body:
133
+ encoding: US-ASCII
134
+ string: ''
135
+ headers:
136
+ User-Agent:
137
+ - Faraday v0.9.1
138
+ Accept-Encoding:
139
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
140
+ Accept:
141
+ - "*/*"
142
+ response:
143
+ status:
144
+ code: 200
145
+ message: OK
146
+ headers:
147
+ Access-Control-Allow-Headers:
148
+ - accept, origin, content-type, x-requested-with, x-requested-by
149
+ Access-Control-Allow-Methods:
150
+ - GET, POST, PUT, DELETE, OPTIONS
151
+ Access-Control-Allow-Origin:
152
+ - "*"
153
+ Content-Type:
154
+ - application/json; charset=UTF-8
155
+ Date:
156
+ - Fri, 27 Feb 2015 03:57:35 GMT
157
+ Server:
158
+ - nginx/1.5.11
159
+ Content-Length:
160
+ - '488'
161
+ Connection:
162
+ - keep-alive
163
+ body:
164
+ encoding: UTF-8
165
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
166
+ {"count": 1, "offset": 1}, "data": [{"7digital_id": "352390", "main_genre":
167
+ "rock", "country_of_origin": "United States of America", "entity_type": "artist",
168
+ "artist_ref_id": "188989", "vevo_id": "0dd9fb87-10a4-48f4-bb85-c3e5769adf90",
169
+ "sort_name": "Avett Brothers", "gender": "Male", "rhapsody_id": "7309378",
170
+ "id": "f064adc4-a6b5-11e0-b446-00251188dd67", "decade": "2000s / 2010s", "name":
171
+ "The Avett Brothers"}]}'
172
+ http_version:
173
+ recorded_at: Fri, 27 Feb 2015 03:57:32 GMT
174
+ - request:
175
+ method: get
176
+ uri: http://api.musicgraph.com/api/v2/artist/search?api_key=<API_KEY>&name=the%20avett%20brothers
177
+ body:
178
+ encoding: US-ASCII
179
+ string: ''
180
+ headers:
181
+ User-Agent:
182
+ - Faraday v0.9.1
183
+ Accept-Encoding:
184
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
185
+ Accept:
186
+ - "*/*"
187
+ response:
188
+ status:
189
+ code: 200
190
+ message: OK
191
+ headers:
192
+ Access-Control-Allow-Headers:
193
+ - accept, origin, content-type, x-requested-with, x-requested-by
194
+ Access-Control-Allow-Methods:
195
+ - GET, POST, PUT, DELETE, OPTIONS
196
+ Access-Control-Allow-Origin:
197
+ - "*"
198
+ Content-Type:
199
+ - application/json; charset=UTF-8
200
+ Date:
201
+ - Fri, 27 Feb 2015 03:57:38 GMT
202
+ Server:
203
+ - nginx/1.5.11
204
+ Content-Length:
205
+ - '488'
206
+ Connection:
207
+ - keep-alive
208
+ body:
209
+ encoding: UTF-8
210
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
211
+ {"count": 1, "offset": 1}, "data": [{"7digital_id": "352390", "country_of_origin":
212
+ "United States of America", "entity_type": "artist", "artist_ref_id": "188989",
213
+ "vevo_id": "0dd9fb87-10a4-48f4-bb85-c3e5769adf90", "id": "f064adc4-a6b5-11e0-b446-00251188dd67",
214
+ "sort_name": "Avett Brothers", "gender": "Male", "rhapsody_id": "7309378",
215
+ "main_genre": "rock", "decade": "2000s / 2010s", "name": "The Avett Brothers"}]}'
216
+ http_version:
217
+ recorded_at: Fri, 27 Feb 2015 03:57:35 GMT
218
+ - request:
219
+ method: get
220
+ uri: http://api.musicgraph.com/api/v2/artist/search?api_key=<API_KEY>&name=the%20avett%20brothers
221
+ body:
222
+ encoding: US-ASCII
223
+ string: ''
224
+ headers:
225
+ User-Agent:
226
+ - Faraday v0.9.1
227
+ Accept-Encoding:
228
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
229
+ Accept:
230
+ - "*/*"
231
+ response:
232
+ status:
233
+ code: 200
234
+ message: OK
235
+ headers:
236
+ Access-Control-Allow-Headers:
237
+ - accept, origin, content-type, x-requested-with, x-requested-by
238
+ Access-Control-Allow-Methods:
239
+ - GET, POST, PUT, DELETE, OPTIONS
240
+ Access-Control-Allow-Origin:
241
+ - "*"
242
+ Content-Type:
243
+ - application/json; charset=UTF-8
244
+ Date:
245
+ - Fri, 27 Feb 2015 03:57:43 GMT
246
+ Server:
247
+ - nginx/1.5.11
248
+ Content-Length:
249
+ - '488'
250
+ Connection:
251
+ - keep-alive
252
+ body:
253
+ encoding: UTF-8
254
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
255
+ {"count": 1, "offset": 1}, "data": [{"7digital_id": "352390", "country_of_origin":
256
+ "United States of America", "entity_type": "artist", "artist_ref_id": "188989",
257
+ "vevo_id": "0dd9fb87-10a4-48f4-bb85-c3e5769adf90", "id": "f064adc4-a6b5-11e0-b446-00251188dd67",
258
+ "sort_name": "Avett Brothers", "gender": "Male", "rhapsody_id": "7309378",
259
+ "main_genre": "rock", "decade": "2000s / 2010s", "name": "The Avett Brothers"}]}'
260
+ http_version:
261
+ recorded_at: Fri, 27 Feb 2015 03:57:40 GMT
262
+ - request:
263
+ method: get
264
+ uri: http://api.musicgraph.com/api/v2/artist/search?api_key=<API_KEY>&name=the%20avett%20brothers
265
+ body:
266
+ encoding: US-ASCII
267
+ string: ''
268
+ headers:
269
+ User-Agent:
270
+ - Faraday v0.9.1
271
+ Accept-Encoding:
272
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
273
+ Accept:
274
+ - "*/*"
275
+ response:
276
+ status:
277
+ code: 200
278
+ message: OK
279
+ headers:
280
+ Access-Control-Allow-Headers:
281
+ - accept, origin, content-type, x-requested-with, x-requested-by
282
+ Access-Control-Allow-Methods:
283
+ - GET, POST, PUT, DELETE, OPTIONS
284
+ Access-Control-Allow-Origin:
285
+ - "*"
286
+ Content-Type:
287
+ - application/json; charset=UTF-8
288
+ Date:
289
+ - Fri, 27 Feb 2015 04:00:12 GMT
290
+ Server:
291
+ - nginx/1.5.11
292
+ Content-Length:
293
+ - '488'
294
+ Connection:
295
+ - keep-alive
296
+ body:
297
+ encoding: UTF-8
298
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
299
+ {"count": 1, "offset": 1}, "data": [{"7digital_id": "352390", "country_of_origin":
300
+ "United States of America", "entity_type": "artist", "artist_ref_id": "188989",
301
+ "vevo_id": "0dd9fb87-10a4-48f4-bb85-c3e5769adf90", "id": "f064adc4-a6b5-11e0-b446-00251188dd67",
302
+ "sort_name": "Avett Brothers", "gender": "Male", "rhapsody_id": "7309378",
303
+ "main_genre": "rock", "decade": "2000s / 2010s", "name": "The Avett Brothers"}]}'
304
+ http_version:
305
+ recorded_at: Fri, 27 Feb 2015 03:57:43 GMT
306
+ - request:
307
+ method: get
308
+ uri: http://api.musicgraph.com/api/v2/artist/f064adc4-a6b5-11e0-b446-00251188dd67/albums?api_key=<API_KEY>
309
+ body:
310
+ encoding: US-ASCII
311
+ string: ''
312
+ headers:
313
+ User-Agent:
314
+ - Faraday v0.9.1
315
+ Accept-Encoding:
316
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
317
+ Accept:
318
+ - "*/*"
319
+ response:
320
+ status:
321
+ code: 200
322
+ message: OK
323
+ headers:
324
+ Access-Control-Allow-Headers:
325
+ - accept, origin, content-type, x-requested-with, x-requested-by
326
+ Access-Control-Allow-Methods:
327
+ - GET, POST, PUT, DELETE, OPTIONS
328
+ Access-Control-Allow-Origin:
329
+ - "*"
330
+ Content-Type:
331
+ - application/json; charset=UTF-8
332
+ Date:
333
+ - Fri, 27 Feb 2015 03:58:11 GMT
334
+ Server:
335
+ - nginx/1.5.11
336
+ Content-Length:
337
+ - '5064'
338
+ Connection:
339
+ - keep-alive
340
+ body:
341
+ encoding: UTF-8
342
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
343
+ {"count": 20, "total": 20, "offset": 1}, "data": [{"release_year": 2013, "title":
344
+ "Magpie and the Dandelion", "entity_type": "album", "id": "6f915c8e-9ffb-43a2-8fcc-807d290da4de",
345
+ "number_of_tracks": "11", "album_ref_id": "90486047", "main_genre": "rock"},
346
+ {"release_year": 2012, "title": "Carpenter", "entity_type": "album", "id":
347
+ "74983766-f9d4-35bf-d647-6ce1a08ccac3", "number_of_tracks": "12", "album_ref_id":
348
+ "70194615", "performer_name": "The Avett Brothers", "main_genre": "rock",
349
+ "product_form": "Album"}, {"release_year": 2010, "title": "Live, Vol. 3",
350
+ "entity_type": "album", "id": "f173f517-2ea3-ad0c-6853-a072441944e9", "number_of_tracks":
351
+ "16", "album_ref_id": "10535201", "performer_name": "The Avett Brothers",
352
+ "main_genre": "alternative/indie", "product_form": "Album"}, {"release_year":
353
+ 2010, "title": "Live, Vol. 3", "entity_type": "album", "id": "114bc1c3-e6a9-5a8f-dfe3-47f46baedf6b",
354
+ "number_of_tracks": "0", "album_ref_id": "10535201", "performer_name": "The
355
+ Avett Brothers", "main_genre": "alternative/indie", "product_form": "Album"},
356
+ {"release_year": 2009, "title": "I and Love and You", "entity_type": "album",
357
+ "id": "9e39e8b2-aa26-3908-ed47-9c6e17e8a02e", "number_of_tracks": "13", "label_name":
358
+ "AMERICAN", "album_ref_id": "33118867", "performer_name": "The Avett Brothers",
359
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 2008, "title":
360
+ "Gleam II", "entity_type": "album", "id": "0f84addd-98b0-25e2-be1a-4942c575cdca",
361
+ "number_of_tracks": "6", "album_ref_id": "37361561", "performer_name": "The
362
+ Avett Brothers", "main_genre": "rock", "product_form": "EP"}, {"release_year":
363
+ 2007, "title": "Emotionalism", "entity_type": "album", "id": "4866b11f-6328-4d9d-55e4-641e3573ff52",
364
+ "number_of_tracks": "14", "album_ref_id": "10416045", "performer_name": "The
365
+ Avett Brothers", "main_genre": "rock", "product_form": "Album"}, {"release_year":
366
+ 2006, "title": "Gleam", "entity_type": "album", "id": "4222ccce-d37b-73a1-9624-01fc6d65ba9d",
367
+ "number_of_tracks": "6", "album_ref_id": "10542685", "performer_name": "The
368
+ Avett Brothers", "main_genre": "alternative/indie", "product_form": "EP"},
369
+ {"release_year": 2006, "title": "Four Thieves Gone: The Robbinsville Sessions",
370
+ "entity_type": "album", "id": "b70e0ced-c7aa-3915-9f0b-04cf9ccd5f39", "number_of_tracks":
371
+ "17", "album_ref_id": "6610477", "performer_name": "The Avett Brothers", "main_genre":
372
+ "country", "product_form": "Album"}, {"release_year": 2005, "title": "Live,
373
+ Vol. 2", "entity_type": "album", "id": "0371e6f3-d95d-5271-f565-58c5a9bf2fec",
374
+ "number_of_tracks": "17", "album_ref_id": "26589165", "performer_name": "The
375
+ Avett Brothers", "main_genre": "folk", "product_form": "Album"}, {"release_year":
376
+ 2004, "title": "Mignonette", "entity_type": "album", "id": "473b392a-085c-32c7-0d92-2a05f137aba2",
377
+ "number_of_tracks": "20", "album_ref_id": "26589281", "performer_name": "The
378
+ Avett Brothers", "main_genre": "folk", "product_form": "Album"}, {"release_year":
379
+ 2004, "title": "Swept Away", "entity_type": "album", "id": "de83ef72-c917-8d14-d15c-87e0ef04fff8",
380
+ "number_of_tracks": "3", "album_ref_id": "34227515", "performer_name": "The
381
+ Avett Brothers", "main_genre": "country", "product_form": "Single"}, {"release_year":
382
+ 2003, "title": "Carolina Jubilee", "entity_type": "album", "id": "989249a8-c085-b28e-89f9-59063f0500dc",
383
+ "number_of_tracks": "15", "album_ref_id": "37571025", "performer_name": "The
384
+ Avett Brothers", "main_genre": "rock", "product_form": "Album"}, {"release_year":
385
+ 2002, "title": "Live at the Double Door Inn", "entity_type": "album", "id":
386
+ "16b02642-9e99-75a6-2562-aaceaed2d65f", "number_of_tracks": "15", "album_ref_id":
387
+ "35730343", "performer_name": "The Avett Brothers", "main_genre": "rock",
388
+ "product_form": "Album"}, {"release_year": 2002, "title": "Country Was", "entity_type":
389
+ "album", "id": "da0c033b-953f-7a3f-39ab-6a32342ffe5c", "number_of_tracks":
390
+ "8", "album_ref_id": "26328843", "performer_name": "The Avett Brothers", "main_genre":
391
+ "rock", "product_form": "Album"}, {"release_year": 2000, "title": "Avett Brothers",
392
+ "entity_type": "album", "number_of_tracks": "6", "performer_name": "The Avett
393
+ Brothers", "id": "c77ec054-2a78-2a1e-e883-a3734ae43030", "product_form": "EP"},
394
+ {"title": "I and Love and You/Live, Vol. 3", "entity_type": "album", "id":
395
+ "d277ba4c-f948-f876-d695-aa770182ea48", "number_of_tracks": "29", "album_ref_id":
396
+ "37864775", "performer_name": "The Avett Brothers", "main_genre": "rock",
397
+ "product_form": "Album"}, {"number_of_tracks": "0", "entity_type": "album",
398
+ "id": "4287047b-8ec1-4b30-b301-385cd2df391c", "title": "Carp "}, {"title":
399
+ "Live and Die", "entity_type": "album", "id": "907e0e83-dc41-df28-8b02-f009af700f35",
400
+ "number_of_tracks": "1", "album_ref_id": "70194615", "performer_name": "The
401
+ Avett Brothers", "main_genre": "rock", "product_form": "Single"}, {"entity_type":
402
+ "album", "title": "Another is Waiting", "id": "ec710fcd-cd49-40cb-b3ac-a5e9804343c6",
403
+ "number_of_tracks": "1", "album_ref_id": "87903883", "main_genre": "rock"}]}'
404
+ http_version:
405
+ recorded_at: Fri, 27 Feb 2015 03:57:43 GMT
406
+ - request:
407
+ method: get
408
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&title=i%20and%20love%20and%20you
409
+ body:
410
+ encoding: US-ASCII
411
+ string: ''
412
+ headers:
413
+ User-Agent:
414
+ - Faraday v0.9.1
415
+ Accept-Encoding:
416
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
417
+ Accept:
418
+ - "*/*"
419
+ response:
420
+ status:
421
+ code: 200
422
+ message: OK
423
+ headers:
424
+ Access-Control-Allow-Headers:
425
+ - accept, origin, content-type, x-requested-with, x-requested-by
426
+ Access-Control-Allow-Methods:
427
+ - GET, POST, PUT, DELETE, OPTIONS
428
+ Access-Control-Allow-Origin:
429
+ - "*"
430
+ Content-Type:
431
+ - application/json; charset=UTF-8
432
+ Date:
433
+ - Fri, 27 Feb 2015 03:59:10 GMT
434
+ Server:
435
+ - nginx/1.5.11
436
+ Content-Length:
437
+ - '401'
438
+ Connection:
439
+ - keep-alive
440
+ body:
441
+ encoding: UTF-8
442
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
443
+ {"count": 1, "offset": 1}, "data": [{"release_year": 2009, "entity_type":
444
+ "album", "title": "I and Love and You", "main_genre": "rock", "number_of_tracks":
445
+ "13", "label_name": "AMERICAN", "album_ref_id": "33118867", "performer_name":
446
+ "The Avett Brothers", "id": "9e39e8b2-aa26-3908-ed47-9c6e17e8a02e", "product_form":
447
+ "Album"}]}'
448
+ http_version:
449
+ recorded_at: Fri, 27 Feb 2015 03:58:42 GMT
450
+ - request:
451
+ method: get
452
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&artist_name=led%20zeppelin
453
+ body:
454
+ encoding: US-ASCII
455
+ string: ''
456
+ headers:
457
+ User-Agent:
458
+ - Faraday v0.9.1
459
+ Accept-Encoding:
460
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
461
+ Accept:
462
+ - "*/*"
463
+ response:
464
+ status:
465
+ code: 200
466
+ message: OK
467
+ headers:
468
+ Access-Control-Allow-Headers:
469
+ - accept, origin, content-type, x-requested-with, x-requested-by
470
+ Access-Control-Allow-Methods:
471
+ - GET, POST, PUT, DELETE, OPTIONS
472
+ Access-Control-Allow-Origin:
473
+ - "*"
474
+ Content-Type:
475
+ - application/json; charset=UTF-8
476
+ Date:
477
+ - Fri, 27 Feb 2015 04:06:58 GMT
478
+ Server:
479
+ - nginx/1.5.11
480
+ Content-Length:
481
+ - '5416'
482
+ Connection:
483
+ - keep-alive
484
+ body:
485
+ encoding: UTF-8
486
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
487
+ {"count": 20, "offset": 1}, "data": [{"release_year": 1998, "title": "C''mon
488
+ Everybody", "entity_type": "album", "id": "53a01775-6774-0bc0-642c-a03ae0bbf244",
489
+ "number_of_tracks": "16", "album_ref_id": "11842631", "performer_name": "Led
490
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
491
+ 1993, "title": "Complete Studio Recordings", "entity_type": "album", "id":
492
+ "97f940b9-8fe7-8386-b681-3277de880764", "number_of_tracks": "85", "album_ref_id":
493
+ "35101251", "performer_name": "Led Zeppelin", "main_genre": "rock", "product_form":
494
+ "Album"}, {"release_year": 2003, "title": "Led Zeppelin [DVD Box Set]", "entity_type":
495
+ "album", "id": "24615519-67f9-278f-a031-5ffbbac2489f", "number_of_tracks":
496
+ "30", "album_ref_id": "35101251", "performer_name": "Led Zeppelin", "main_genre":
497
+ "rock", "product_form": "Album"}, {"release_year": 1998, "title": "Whole Lotta
498
+ Love", "entity_type": "album", "id": "a88afd5a-a960-bd7a-8a7d-4a54d0134584",
499
+ "number_of_tracks": "3", "album_ref_id": "11842631", "performer_name": "Led
500
+ Zeppelin", "main_genre": "rock", "product_form": "Single"}, {"release_year":
501
+ 1971, "title": "Led Zeppelin IV", "entity_type": "album", "id": "5cdd393f-9f99-08db-8768-7cb37292abff",
502
+ "number_of_tracks": "8", "label_name": "Atlantic Records", "album_ref_id":
503
+ "11842753", "performer_name": "Led Zeppelin", "main_genre": "rock", "product_form":
504
+ "Album"}, {"release_year": 2008, "title": "Definitive Collection Mini LP",
505
+ "entity_type": "album", "id": "4f7f054a-eec2-d2a9-3b1f-ea22b84a2326", "number_of_tracks":
506
+ "100", "album_ref_id": "35101251", "performer_name": "Led Zeppelin", "main_genre":
507
+ "rock", "product_form": "Album"}, {"release_year": 1993, "title": "Led Zeppelin
508
+ [Box Set 2]", "entity_type": "album", "id": "c6282757-9116-7561-72ec-0512c97d5227",
509
+ "number_of_tracks": "32", "album_ref_id": "35101251", "performer_name": "Led
510
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
511
+ 1975, "title": "Physical Graffiti", "entity_type": "album", "id": "f32c31b4-836b-6588-4ed8-57bb2e902d4a",
512
+ "number_of_tracks": "15", "label_name": "Atlantic Records", "album_ref_id":
513
+ "11842721", "performer_name": "Led Zeppelin", "main_genre": "rock", "product_form":
514
+ "Album"}, {"release_year": 1994, "title": "Pleeease!", "entity_type": "album",
515
+ "id": "398e8463-72ed-f5ea-c63a-0ba4577c72fd", "number_of_tracks": "14", "album_ref_id":
516
+ "11842849", "performer_name": "Led Zeppelin", "main_genre": "rock", "product_form":
517
+ "Album"}, {"release_year": 2002, "title": "Early Days & Latter Days: Vol.
518
+ 1 & 2", "entity_type": "album", "id": "b6500ee4-59b1-dbdd-eaf1-25cccee4d969",
519
+ "number_of_tracks": "23", "album_ref_id": "11842849", "performer_name": "Led
520
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
521
+ 1991, "title": "Kingdom of Zep", "entity_type": "album", "id": "00b9d24b-3a28-3684-919c-f8e598f3c4a3",
522
+ "number_of_tracks": "18", "album_ref_id": "35101251", "performer_name": "Led
523
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
524
+ 1977, "title": "Destroyer", "entity_type": "album", "id": "be299d48-9c8c-aad3-a0c6-c992047b7544",
525
+ "number_of_tracks": "16", "album_ref_id": "11842849", "performer_name": "Led
526
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
527
+ 1992, "title": "Led Zeppelin Remasters", "entity_type": "album", "id": "9613220d-d794-36f5-2ec8-51226ef84da4",
528
+ "number_of_tracks": "26", "album_ref_id": "35101251", "performer_name": "Led
529
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"title": "Music
530
+ That Rocked Us", "entity_type": "album", "id": "8299f822-9c11-9ac0-52cc-4bc34932f1d6",
531
+ "number_of_tracks": "104", "album_ref_id": "84224067", "performer_name": "Led
532
+ Zeppelin", "main_genre": "pop", "product_form": "Album"}, {"release_year":
533
+ 1976, "title": "Song Remains the Same", "entity_type": "album", "id": "22011f6c-549d-5190-34f1-e0018855a83b",
534
+ "number_of_tracks": "9", "album_ref_id": "11901971", "performer_name": "Led
535
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"title": "Blueberry
536
+ Hill [RoundPin]", "entity_type": "album", "id": "8537df58-eb41-8fac-e038-956e5a0fdac3",
537
+ "number_of_tracks": "14", "album_ref_id": "11842631", "performer_name": "Led
538
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
539
+ 1973, "title": "Madison Square Garden, 1973", "entity_type": "album", "id":
540
+ "9670fa41-e504-edbd-3748-edcf4512ed03", "number_of_tracks": "10", "album_ref_id":
541
+ "11901971", "performer_name": "Led Zeppelin", "main_genre": "rock", "product_form":
542
+ "Album"}, {"release_year": 2009, "title": "Complete Rock Case Studies", "entity_type":
543
+ "album", "id": "ef8e526e-b0a1-4b34-e5bb-df371eb946e6", "number_of_tracks":
544
+ "9", "album_ref_id": "11842849", "performer_name": "Led Zeppelin", "main_genre":
545
+ "rock", "product_form": "Album"}, {"release_year": 1969, "title": "Led Zeppelin",
546
+ "entity_type": "album", "id": "f12ba578-6299-92a7-e06d-003a4aed892b", "number_of_tracks":
547
+ "9", "label_name": "Atlantic Records", "album_ref_id": "11842813", "performer_name":
548
+ "Led Zeppelin", "main_genre": "rock", "product_form": "Album"}, {"release_year":
549
+ 1990, "title": "Led Zeppelin [Box Set]", "entity_type": "album", "id": "971d772f-d9d3-d3ca-d512-2b4163a4c102",
550
+ "number_of_tracks": "54", "album_ref_id": "35101251", "performer_name": "Led
551
+ Zeppelin", "main_genre": "rock", "product_form": "Album"}]}'
552
+ http_version:
553
+ recorded_at: Fri, 27 Feb 2015 04:04:28 GMT
554
+ - request:
555
+ method: get
556
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&similar_to=grace
557
+ body:
558
+ encoding: US-ASCII
559
+ string: ''
560
+ headers:
561
+ User-Agent:
562
+ - Faraday v0.9.1
563
+ Accept-Encoding:
564
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
565
+ Accept:
566
+ - "*/*"
567
+ response:
568
+ status:
569
+ code: 200
570
+ message: OK
571
+ headers:
572
+ Access-Control-Allow-Headers:
573
+ - accept, origin, content-type, x-requested-with, x-requested-by
574
+ Access-Control-Allow-Methods:
575
+ - GET, POST, PUT, DELETE, OPTIONS
576
+ Access-Control-Allow-Origin:
577
+ - "*"
578
+ Content-Type:
579
+ - application/json; charset=UTF-8
580
+ Date:
581
+ - Fri, 27 Feb 2015 04:09:51 GMT
582
+ Server:
583
+ - nginx/1.5.11
584
+ Content-Length:
585
+ - '1992'
586
+ Connection:
587
+ - keep-alive
588
+ body:
589
+ encoding: UTF-8
590
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
591
+ {"count": 7, "offset": 1}, "data": [{"release_year": 1996, "title": "Tidal",
592
+ "entity_type": "album", "id": "4f2412ac-c60f-0017-996a-1aaa382c5134", "number_of_tracks":
593
+ "10", "label_name": "Work", "album_ref_id": "30423903", "performer_name":
594
+ "Fiona Apple", "main_genre": "alternative/indie", "product_form": "Album"},
595
+ {"release_year": 2005, "title": "Back to Bedlam", "entity_type": "album",
596
+ "id": "134e50d5-1385-5149-fe30-e665352a07fe", "number_of_tracks": "10", "album_ref_id":
597
+ "5349699", "performer_name": "James Blunt", "main_genre": "alternative/indie",
598
+ "product_form": "Album"}, {"release_year": 1998, "title": "Rufus Wainwright",
599
+ "entity_type": "album", "id": "d5cd6891-9e46-1fe0-2764-972221046799", "number_of_tracks":
600
+ "12", "album_ref_id": "1530715", "performer_name": "Rufus Wainwright", "main_genre":
601
+ "pop", "product_form": "Album"}, {"release_year": 1994, "title": "Under the
602
+ Pink", "entity_type": "album", "id": "be7e9aa4-7211-8bcc-c61c-88f6263d43ef",
603
+ "number_of_tracks": "12", "label_name": "Atlantic Records", "album_ref_id":
604
+ "20993", "performer_name": "Tori Amos", "main_genre": "alternative/indie",
605
+ "product_form": "Album"}, {"release_year": 2006, "title": "Beautiful Lie",
606
+ "entity_type": "album", "id": "f0cd1aad-1d84-2fe8-7d6e-62427bf80e23", "number_of_tracks":
607
+ "14", "album_ref_id": "7335785", "performer_name": "Ed Harcourt", "main_genre":
608
+ "rock", "product_form": "Album"}, {"release_year": 2006, "title": "Real Life",
609
+ "entity_type": "album", "id": "61b85423-6370-540a-1d99-5aa886531a6e", "number_of_tracks":
610
+ "10", "album_ref_id": "11352933", "performer_name": "Joan as Police Woman",
611
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 2013, "title":
612
+ "Greater Than", "entity_type": "album", "id": "d3ea8dd8-eb76-ec8b-1b62-93aa538dad2b",
613
+ "number_of_tracks": "12", "album_ref_id": "87274829", "performer_name": "Tye
614
+ Tribbett", "main_genre": "christian/gospel", "product_form": "Album"}]}'
615
+ http_version:
616
+ recorded_at: Fri, 27 Feb 2015 04:09:48 GMT
617
+ - request:
618
+ method: get
619
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&country=iceland
620
+ body:
621
+ encoding: US-ASCII
622
+ string: ''
623
+ headers:
624
+ User-Agent:
625
+ - Faraday v0.9.1
626
+ Accept-Encoding:
627
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
628
+ Accept:
629
+ - "*/*"
630
+ response:
631
+ status:
632
+ code: 200
633
+ message: OK
634
+ headers:
635
+ Access-Control-Allow-Headers:
636
+ - accept, origin, content-type, x-requested-with, x-requested-by
637
+ Access-Control-Allow-Methods:
638
+ - GET, POST, PUT, DELETE, OPTIONS
639
+ Access-Control-Allow-Origin:
640
+ - "*"
641
+ Content-Type:
642
+ - application/json; charset=UTF-8
643
+ Date:
644
+ - Fri, 27 Feb 2015 04:23:55 GMT
645
+ Server:
646
+ - nginx/1.5.11
647
+ Content-Length:
648
+ - '5603'
649
+ Connection:
650
+ - keep-alive
651
+ body:
652
+ encoding: UTF-8
653
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
654
+ {"count": 20, "offset": 1}, "data": [{"release_year": 2013, "title": "For
655
+ Now I Am Winter", "entity_type": "album", "id": "4558ffec-00a3-6052-956a-aa31362985eb",
656
+ "number_of_tracks": "12", "album_ref_id": "82130205", "performer_name": "\u00d3lafur
657
+ Arnalds", "main_genre": "classical/opera", "product_form": "Album"}, {"release_year":
658
+ 2008, "title": "Declare Independence ", "entity_type": "album", "id": "768cb3ff-b4d9-aecb-ee44-eb31ec19f8b5",
659
+ "number_of_tracks": "5", "album_ref_id": "54768135", "performer_name": "Bj\u00f6rk",
660
+ "main_genre": "electronica/dance", "product_form": "Single"}, {"release_year":
661
+ 1998, "title": "Singles Box Set", "entity_type": "album", "id": "291e742d-64e1-9dc5-c17a-2a92918a3cbc",
662
+ "number_of_tracks": "0", "album_ref_id": "11304951", "performer_name": "Bj\u00f6rk",
663
+ "main_genre": "electronica/dance", "product_form": "Album"}, {"release_year":
664
+ 2012, "title": "Bastards", "entity_type": "album", "id": "ab9f1137-2c6d-3626-f832-304bc878bc7c",
665
+ "number_of_tracks": "13", "album_ref_id": "76118403", "performer_name": "Bj\u00f6rk",
666
+ "main_genre": "alternative/indie", "product_form": "Album"}, {"release_year":
667
+ 1994, "title": "Best Mixes from the Album Debut (For All the People Who Don''t
668
+ Buy White Labels)", "entity_type": "album", "id": "06fe4802-02f3-e4d2-b056-5660834d6f8f",
669
+ "number_of_tracks": "6", "album_ref_id": "19091003", "performer_name": "Bj\u00f6rk",
670
+ "main_genre": "electronica/dance", "product_form": "Album"}, {"release_year":
671
+ 1999, "title": "All Is Full of Love", "entity_type": "album", "id": "789088d3-56b0-8481-37d2-5953ca9bf154",
672
+ "number_of_tracks": "3", "album_ref_id": "30021127", "performer_name": "Bj\u00f6rk",
673
+ "main_genre": "alternative/indie", "product_form": "Single"}, {"release_year":
674
+ 1999, "title": "Hunter", "entity_type": "album", "id": "84e77b82-6833-f1ff-e503-2c05b983c132",
675
+ "number_of_tracks": "3", "album_ref_id": "19091017", "performer_name": "Bj\u00f6rk",
676
+ "main_genre": "electronica/dance", "product_form": "Album"}, {"release_year":
677
+ 2009, "title": "Voltaic", "entity_type": "album", "id": "98fd65b6-0b75-63aa-91d5-5a3badf26c11",
678
+ "number_of_tracks": "11", "album_ref_id": "30829263", "performer_name": "Bj\u00f6rk",
679
+ "main_genre": "alternative/indie", "product_form": "Album"}, {"release_year":
680
+ 2007, "title": "Earth Intruders", "entity_type": "album", "id": "3a48510a-76e0-dbae-1660-9353f8c36d05",
681
+ "number_of_tracks": "1", "album_ref_id": "10267687", "performer_name": "Bj\u00f6rk",
682
+ "main_genre": "alternative/indie", "product_form": "Single"}, {"release_year":
683
+ 1999, "title": "Alarm Call", "entity_type": "album", "id": "45d2787f-62a0-710d-f04c-87d5455dee23",
684
+ "number_of_tracks": "3", "album_ref_id": "29946057", "performer_name": "Bj\u00f6rk",
685
+ "main_genre": "alternative/indie", "product_form": "Single"}, {"release_year":
686
+ 1998, "title": "J\u00f3ga", "entity_type": "album", "id": "3988bf7b-1433-5ced-bdf9-a62e9f12a178",
687
+ "number_of_tracks": "11", "album_ref_id": "19062447", "performer_name": "Bj\u00f6rk",
688
+ "main_genre": "electronica/dance", "product_form": "Single"}, {"release_year":
689
+ 2008, "title": "Dull Flame of Desire", "entity_type": "album", "id": "f69b800f-0186-5a0b-b48f-03c0c95bc6f0",
690
+ "number_of_tracks": "11", "album_ref_id": "19151945", "performer_name": "Bj\u00f6rk",
691
+ "main_genre": "alternative/indie", "product_form": "Single"}, {"release_year":
692
+ 2002, "title": "Family Tree", "entity_type": "album", "id": "332c1ade-c7ed-215d-7fed-9524ca281092",
693
+ "number_of_tracks": "35", "album_ref_id": "11304951", "performer_name": "Bj\u00f6rk",
694
+ "main_genre": "electronica/dance", "product_form": "Album"}, {"release_year":
695
+ 2003, "title": "Live Box: 1993-2002", "entity_type": "album", "id": "0d845e4a-2c76-0534-f544-d9f0bb6f1fa2",
696
+ "number_of_tracks": "55", "album_ref_id": "11929459", "performer_name": "Bj\u00f6rk",
697
+ "main_genre": "alternative/indie", "product_form": "Album"}, {"release_year":
698
+ 2011, "title": "Biophilia", "entity_type": "album", "id": "fd231f55-91cf-b75f-0f14-d49e62200c48",
699
+ "number_of_tracks": "13", "label_name": "Nonesuch", "album_ref_id": "59072523",
700
+ "performer_name": "Bj\u00f6rk", "main_genre": "alternative/indie", "product_form":
701
+ "Album"}, {"release_year": 2002, "title": "Bj\u00f6rk''s Greatest Hits", "entity_type":
702
+ "album", "id": "a493205f-2bed-c679-e761-1479c5a822ae", "number_of_tracks":
703
+ "15", "album_ref_id": "26734611", "performer_name": "Bj\u00f6rk", "main_genre":
704
+ "alternative/indie", "product_form": "Album"}, {"release_year": 2007, "title":
705
+ "Volta", "entity_type": "album", "id": "725288f9-7545-7d5c-4ede-0b3a01b4fea6",
706
+ "number_of_tracks": "10", "album_ref_id": "10433635", "performer_name": "Bj\u00f6rk",
707
+ "main_genre": "alternative/indie", "product_form": "Album"}, {"release_year":
708
+ 2012, "title": "Little Talks", "entity_type": "album", "id": "561a3270-0ca4-e0b6-fc39-55c8f91b580d",
709
+ "number_of_tracks": "1", "album_ref_id": "72199553", "performer_name": "Of
710
+ Monsters and Men", "main_genre": "alternative/indie", "product_form": "Single"},
711
+ {"release_year": 2011, "title": "Into the Woods", "entity_type": "album",
712
+ "id": "063e6dd3-fe2e-dd66-9785-b414c7d748b2", "number_of_tracks": "4", "album_ref_id":
713
+ "62190819", "performer_name": "Of Monsters and Men", "main_genre": "alternative/indie",
714
+ "product_form": "EP"}, {"release_year": 2012, "title": "My Head Is an Animal",
715
+ "entity_type": "album", "id": "433529da-c01c-e583-4962-f7818740d81a", "number_of_tracks":
716
+ "12", "label_name": "Republic Records", "album_ref_id": "65659279", "performer_name":
717
+ "Of Monsters and Men", "main_genre": "alternative/indie", "product_form":
718
+ "Album"}]}'
719
+ http_version:
720
+ recorded_at: Fri, 27 Feb 2015 04:23:52 GMT
721
+ - request:
722
+ method: get
723
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&decade=1960s
724
+ body:
725
+ encoding: US-ASCII
726
+ string: ''
727
+ headers:
728
+ User-Agent:
729
+ - Faraday v0.9.1
730
+ Accept-Encoding:
731
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
732
+ Accept:
733
+ - "*/*"
734
+ response:
735
+ status:
736
+ code: 200
737
+ message: OK
738
+ headers:
739
+ Access-Control-Allow-Headers:
740
+ - accept, origin, content-type, x-requested-with, x-requested-by
741
+ Access-Control-Allow-Methods:
742
+ - GET, POST, PUT, DELETE, OPTIONS
743
+ Access-Control-Allow-Origin:
744
+ - "*"
745
+ Content-Type:
746
+ - application/json; charset=UTF-8
747
+ Date:
748
+ - Sat, 28 Feb 2015 04:41:11 GMT
749
+ Server:
750
+ - nginx/1.5.11
751
+ Content-Length:
752
+ - '5284'
753
+ Connection:
754
+ - keep-alive
755
+ body:
756
+ encoding: UTF-8
757
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
758
+ {"count": 20, "offset": 1}, "data": [{"release_year": 1969, "title": "Soul
759
+ Shakedown", "entity_type": "album", "id": "8d1f2f13-c345-1c22-ce76-515af52fbe48",
760
+ "number_of_tracks": "20", "album_ref_id": "39934207", "performer_name": "Bob
761
+ Marley & The Wailers", "main_genre": "reggae/ska", "product_form": "Album"},
762
+ {"release_year": 1963, "title": "Nina''s Choice", "entity_type": "album",
763
+ "id": "10732a8e-ae6e-a6a1-00cd-d2f4abaca5b4", "number_of_tracks": "9", "album_ref_id":
764
+ "64144127", "performer_name": "Nina Simone", "main_genre": "jazz", "product_form":
765
+ "Album"}, {"release_year": 1968, "title": "''Nuff Said!", "entity_type": "album",
766
+ "id": "73ccd8c9-28a9-321d-d709-924d6351629f", "number_of_tracks": "11", "album_ref_id":
767
+ "13698013", "performer_name": "Nina Simone", "main_genre": "jazz", "product_form":
768
+ "Album"}, {"release_year": 1960, "title": "Nina Simone at Newport", "entity_type":
769
+ "album", "id": "1b09b262-e06e-7b96-aa84-0a9ff9a0d396", "number_of_tracks":
770
+ "7", "album_ref_id": "64725041", "performer_name": "Nina Simone", "main_genre":
771
+ "jazz", "product_form": "Album"}, {"release_year": 1964, "title": "Nina Simone
772
+ in Concert", "entity_type": "album", "id": "302171d7-614a-0fb4-d036-90e5e245b61f",
773
+ "number_of_tracks": "7", "album_ref_id": "26580005", "performer_name": "Nina
774
+ Simone", "main_genre": "electronica/dance", "product_form": "Album"}, {"release_year":
775
+ 1966, "title": "Let It All Out", "entity_type": "album", "id": "c9648d77-62df-5c69-6350-f0bf362dba82",
776
+ "number_of_tracks": "11", "album_ref_id": "6687551", "performer_name": "Nina
777
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
778
+ 1969, "title": "Very Rare Evening", "entity_type": "album", "id": "29b84b98-b796-f06d-9587-e8e2434d159f",
779
+ "number_of_tracks": "8", "album_ref_id": "13541089", "performer_name": "Nina
780
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
781
+ 1967, "title": "Nina Simone Sings the Blues", "entity_type": "album", "id":
782
+ "b225dc8e-c513-71c5-ee9a-cc7a89906dc1", "number_of_tracks": "13", "album_ref_id":
783
+ "28175449", "performer_name": "Nina Simone", "main_genre": "vocals", "product_form":
784
+ "Album"}, {"release_year": 1961, "title": "Forbidden Fruit", "entity_type":
785
+ "album", "id": "b7718279-a6a1-b20e-ed86-a484ccf17cc2", "number_of_tracks":
786
+ "21", "album_ref_id": "80555067", "performer_name": "Nina Simone", "main_genre":
787
+ "jazz", "product_form": "Album"}, {"release_year": 1969, "title": "To Love
788
+ Somebody", "entity_type": "album", "id": "3cfbaac2-f53b-fca2-22e8-45e62ad581a8",
789
+ "number_of_tracks": "8", "album_ref_id": "30802591", "performer_name": "Nina
790
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
791
+ 1967, "title": "Sings the Blues/Nuff Said", "entity_type": "album", "id":
792
+ "59c24eeb-ff31-fc4c-e4b9-53b628ff529a", "number_of_tracks": "22", "album_ref_id":
793
+ "13698013", "performer_name": "Nina Simone", "main_genre": "jazz", "product_form":
794
+ "Album"}, {"release_year": 1969, "title": "Gifted & Black", "entity_type":
795
+ "album", "number_of_tracks": "10", "album_ref_id": "26607723", "performer_name":
796
+ "Nina Simone", "id": "206ff583-2e7b-01be-e590-890a5df0ba6f", "product_form":
797
+ "Album"}, {"release_year": 1967, "title": "Silk & Soul", "entity_type": "album",
798
+ "id": "a170aa15-f82a-7e27-10af-173b31e71272", "number_of_tracks": "10", "album_ref_id":
799
+ "6468731", "performer_name": "Nina Simone", "main_genre": "vocals", "product_form":
800
+ "Album"}, {"release_year": 1969, "title": "Best of Nina Simone [PolyGram]",
801
+ "entity_type": "album", "id": "127f9cfc-c745-c3a8-a2e8-b44100c0b795", "number_of_tracks":
802
+ "12", "album_ref_id": "766135", "performer_name": "Nina Simone", "main_genre":
803
+ "jazz", "product_form": "Album"}, {"release_year": 1962, "title": "At the
804
+ Village Gate", "entity_type": "album", "id": "300e6c96-f0e5-132b-23bd-9d1a28f6b8d0",
805
+ "number_of_tracks": "8", "album_ref_id": "52582861", "performer_name": "Nina
806
+ Simone", "main_genre": "soul/r&b", "product_form": "Album"}, {"release_year":
807
+ 1964, "title": "Folksy Nina", "entity_type": "album", "id": "37200eb0-5563-7e49-9d42-b2e6e3ab8da7",
808
+ "number_of_tracks": "0", "album_ref_id": "64143737", "performer_name": "Nina
809
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
810
+ 1964, "title": "Broadway-Blues-Ballads", "entity_type": "album", "id": "59d0a311-95ea-dc5b-6df9-e6d1934d2c1b",
811
+ "number_of_tracks": "13", "album_ref_id": "6687507", "performer_name": "Nina
812
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
813
+ 1965, "title": "I Put a Spell on You", "entity_type": "album", "id": "46ee1fa9-658a-af23-37f5-cc729375ade0",
814
+ "number_of_tracks": "12", "album_ref_id": "6687481", "performer_name": "Nina
815
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
816
+ 1965, "title": "Pastel Blues", "entity_type": "album", "id": "83a218c6-d068-0be0-7599-7219cc038bcb",
817
+ "number_of_tracks": "10", "album_ref_id": "6693331", "performer_name": "Nina
818
+ Simone", "main_genre": "jazz", "product_form": "Album"}, {"release_year":
819
+ 1963, "title": "At Carnegie Hall", "entity_type": "album", "id": "e09da5bf-6ad9-7760-00f7-551aa87170eb",
820
+ "number_of_tracks": "7", "album_ref_id": "64144069", "performer_name": "Nina
821
+ Simone", "main_genre": "jazz", "product_form": "Album"}]}'
822
+ http_version:
823
+ recorded_at: Sat, 28 Feb 2015 04:42:10 GMT
824
+ - request:
825
+ method: get
826
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&genre=rock
827
+ body:
828
+ encoding: US-ASCII
829
+ string: ''
830
+ headers:
831
+ User-Agent:
832
+ - Faraday v0.9.1
833
+ Accept-Encoding:
834
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
835
+ Accept:
836
+ - "*/*"
837
+ response:
838
+ status:
839
+ code: 200
840
+ message: OK
841
+ headers:
842
+ Access-Control-Allow-Headers:
843
+ - accept, origin, content-type, x-requested-with, x-requested-by
844
+ Access-Control-Allow-Methods:
845
+ - GET, POST, PUT, DELETE, OPTIONS
846
+ Access-Control-Allow-Origin:
847
+ - "*"
848
+ Content-Type:
849
+ - application/json; charset=UTF-8
850
+ Date:
851
+ - Sat, 28 Feb 2015 04:59:35 GMT
852
+ Server:
853
+ - nginx/1.5.11
854
+ Content-Length:
855
+ - '5259'
856
+ Connection:
857
+ - keep-alive
858
+ body:
859
+ encoding: UTF-8
860
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
861
+ {"count": 20, "offset": 1}, "data": [{"title": "You Are the Night", "entity_type":
862
+ "album", "id": "1299c862-9bce-53e8-6c5f-0ae5c7d5b5e3", "number_of_tracks":
863
+ "10", "album_ref_id": "40158785", "performer_name": "Grande", "main_genre":
864
+ "rock", "product_form": "Album"}, {"release_year": 2006, "title": "These and
865
+ Other Things", "entity_type": "album", "id": "aff81bc0-920e-b5aa-3c02-e6fcb85787bb",
866
+ "number_of_tracks": "11", "label_name": "drake", "album_ref_id": "62098209",
867
+ "performer_name": "Drake", "main_genre": "rock", "product_form": "Album"},
868
+ {"release_year": 1989, "title": "Mind Bomb", "entity_type": "album", "id":
869
+ "a1db31ba-7bed-8f35-681e-138b0c1b6d32", "number_of_tracks": "8", "album_ref_id":
870
+ "8590237", "performer_name": "The The", "main_genre": "rock", "product_form":
871
+ "Album"}, {"release_year": 1993, "title": "Dusk", "entity_type": "album",
872
+ "id": "c6e5e43a-79a5-a723-1448-cf0a6e68c34a", "number_of_tracks": "10", "album_ref_id":
873
+ "6754457", "performer_name": "The The", "main_genre": "rock:80''s rock", "product_form":
874
+ "Album"}, {"release_year": 1995, "title": "Jamaican Singles, Vol. 1", "entity_type":
875
+ "album", "id": "cfeaa3c2-2edc-1245-39a6-6e81e4f8e193", "number_of_tracks":
876
+ "18", "album_ref_id": "56393411", "performer_name": "Bob Marley & The Wailers",
877
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1998, "title":
878
+ "Mr. Chatterbox", "entity_type": "album", "id": "2c94883d-2584-4dbb-f94c-9939c53cbea2",
879
+ "number_of_tracks": "20", "album_ref_id": "56393411", "performer_name": "Bob
880
+ Marley & The Wailers", "main_genre": "rock", "product_form": "Album"}, {"release_year":
881
+ 2007, "title": "It Won''t Be Soon Before Long", "entity_type": "album", "id":
882
+ "9df634ec-ee7f-2421-1853-08dbf6de47dd", "number_of_tracks": "12", "album_ref_id":
883
+ "10512043", "performer_name": "Maroon 5", "main_genre": "rock", "product_form":
884
+ "Album"}, {"title": "Songs About Jane/It Won''t Be Soon Before Long", "entity_type":
885
+ "album", "id": "b483a707-185e-3b65-b9ff-c8b8f97aca0a", "number_of_tracks":
886
+ "31", "album_ref_id": "15129589", "performer_name": "Maroon 5", "main_genre":
887
+ "rock", "product_form": "Album"}, {"release_year": 2004, "title": "Colour
888
+ the Small One", "entity_type": "album", "id": "188053e0-fffb-77f9-9705-5b7fb04939b0",
889
+ "number_of_tracks": "11", "album_ref_id": "6332999", "performer_name": "Sia",
890
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 2007, "title":
891
+ "Won''t Go Home Without You", "entity_type": "album", "id": "79a531f0-52d4-c805-9ffe-fa51145249aa",
892
+ "number_of_tracks": "3", "label_name": "A&M / Octone Records", "album_ref_id":
893
+ "12861063", "performer_name": "Maroon 5", "main_genre": "rock", "product_form":
894
+ "Single"}, {"release_year": 2002, "title": "Songs About Jane", "entity_type":
895
+ "album", "id": "069aefe2-b3b2-3ba8-6ff1-6b3796da5116", "number_of_tracks":
896
+ "12", "label_name": "UMC (Universal Music Catalogue)", "album_ref_id": "1631021",
897
+ "performer_name": "Maroon 5", "main_genre": "rock", "product_form": "Album"},
898
+ {"title": "Never Gonna Leave This Bed (France Version)", "entity_type": "album",
899
+ "id": "dd5d8795-a071-4237-e98d-dccf60ca65b3", "number_of_tracks": "2", "album_ref_id":
900
+ "69412577", "performer_name": "Maroon 5", "main_genre": "rock", "product_form":
901
+ "Single"}, {"title": "Numb Remixes 1", "entity_type": "album", "id": "b8f1e37f-2cbe-0947-91fe-4c3a7e732773",
902
+ "number_of_tracks": "2", "album_ref_id": "14972941", "performer_name": "Sia",
903
+ "main_genre": "rock", "product_form": "Single"}, {"release_year": 2004, "title":
904
+ "Don''t Bring Me Down [UK CD]", "entity_type": "album", "id": "794f094e-6a19-c6ac-402f-0b111b15f853",
905
+ "number_of_tracks": "4", "album_ref_id": "14972925", "performer_name": "Sia",
906
+ "main_genre": "rock", "product_form": "Single"}, {"title": "Remixes 2", "entity_type":
907
+ "album", "id": "81fa8de0-c17b-477d-cb10-0c357ada54be", "number_of_tracks":
908
+ "4", "album_ref_id": "14972925", "performer_name": "Sia", "main_genre": "rock",
909
+ "product_form": "EP"}, {"release_year": 2005, "title": "Numb Remixes 2", "entity_type":
910
+ "album", "id": "9c4ea005-897d-71f7-2262-b4f19b33e690", "number_of_tracks":
911
+ "0", "album_ref_id": "14972941", "performer_name": "Sia", "main_genre": "rock",
912
+ "product_form": "Single"}, {"release_year": 2007, "title": "Makes Me Wonder",
913
+ "entity_type": "album", "id": "d6b00f20-5f62-fedf-8225-c59652629738", "number_of_tracks":
914
+ "16", "album_ref_id": "11881567", "performer_name": "Maroon 5", "main_genre":
915
+ "rock", "product_form": "Album"}, {"release_year": 2008, "title": "Some People
916
+ Have Real Problems", "entity_type": "album", "id": "e9ea3215-d8d7-5d78-b46a-edf3101001ac",
917
+ "number_of_tracks": "14", "album_ref_id": "12404219", "performer_name": "Sia",
918
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 2007, "title":
919
+ "7 Inch Collection", "entity_type": "album", "id": "df6c110a-c82d-4208-402d-2ee2e131690e",
920
+ "number_of_tracks": "33", "album_ref_id": "13518929", "performer_name": "Coldplay",
921
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1998, "title":
922
+ "Safety", "entity_type": "album", "id": "4c82ede3-90a6-c995-27a2-9d88f83f3ee9",
923
+ "number_of_tracks": "3", "album_ref_id": "974141", "performer_name": "Coldplay",
924
+ "main_genre": "rock", "product_form": "EP"}]}'
925
+ http_version:
926
+ recorded_at: Sat, 28 Feb 2015 04:59:32 GMT
927
+ - request:
928
+ method: get
929
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&limit=5&similar_to=Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band
930
+ body:
931
+ encoding: US-ASCII
932
+ string: ''
933
+ headers:
934
+ User-Agent:
935
+ - Faraday v0.9.1
936
+ Accept-Encoding:
937
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
938
+ Accept:
939
+ - "*/*"
940
+ response:
941
+ status:
942
+ code: 200
943
+ message: OK
944
+ headers:
945
+ Access-Control-Allow-Headers:
946
+ - accept, origin, content-type, x-requested-with, x-requested-by
947
+ Access-Control-Allow-Methods:
948
+ - GET, POST, PUT, DELETE, OPTIONS
949
+ Access-Control-Allow-Origin:
950
+ - "*"
951
+ Content-Type:
952
+ - application/json; charset=UTF-8
953
+ Date:
954
+ - Sat, 28 Feb 2015 05:41:09 GMT
955
+ Server:
956
+ - nginx/1.5.11
957
+ Content-Length:
958
+ - '1425'
959
+ Connection:
960
+ - keep-alive
961
+ body:
962
+ encoding: UTF-8
963
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
964
+ {"count": 5, "offset": 1}, "data": [{"release_year": 1967, "title": "Days
965
+ of Future Passed", "entity_type": "album", "id": "0d96e3aa-1882-177d-8119-b38c0c55fc50",
966
+ "number_of_tracks": "7", "album_ref_id": "15223705", "performer_name": "The
967
+ Moody Blues", "main_genre": "rock", "product_form": "Album"}, {"release_year":
968
+ 1967, "title": "Surrealistic Pillow", "entity_type": "album", "id": "3b49d77c-4885-ab51-e54a-5da7fb467bb1",
969
+ "number_of_tracks": "11", "album_ref_id": "31006189", "performer_name": "Jefferson
970
+ Airplane", "main_genre": "rock", "product_form": "Album"}, {"release_year":
971
+ 1967, "title": "Doors", "entity_type": "album", "id": "44354016-526d-7db7-982a-976e8337dd70",
972
+ "number_of_tracks": "11", "album_ref_id": "7679753", "performer_name": "The
973
+ Doors", "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967,
974
+ "title": "SMiLE [Not Released]", "entity_type": "album", "id": "6042f35b-010b-b945-ce5a-64bba6b9c488",
975
+ "number_of_tracks": "14", "album_ref_id": "59665381", "performer_name": "The
976
+ Beach Boys", "main_genre": "pop", "product_form": "Album"}, {"release_year":
977
+ 1967, "title": "Their Satanic Majesties Request", "entity_type": "album",
978
+ "id": "7fa4a465-2be1-1531-7fee-376f22810732", "number_of_tracks": "10", "album_ref_id":
979
+ "6459063", "performer_name": "The Rolling Stones", "main_genre": "rock", "product_form":
980
+ "Album"}]}'
981
+ http_version:
982
+ recorded_at: Sat, 28 Feb 2015 05:41:07 GMT
983
+ - request:
984
+ method: get
985
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=5&similar_to=Sgt.%20Pepper's%20Lonely%20Hearts%20Club%20Band
986
+ body:
987
+ encoding: US-ASCII
988
+ string: ''
989
+ headers:
990
+ User-Agent:
991
+ - Faraday v0.9.1
992
+ Accept-Encoding:
993
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
994
+ Accept:
995
+ - "*/*"
996
+ response:
997
+ status:
998
+ code: 200
999
+ message: OK
1000
+ headers:
1001
+ Access-Control-Allow-Headers:
1002
+ - accept, origin, content-type, x-requested-with, x-requested-by
1003
+ Access-Control-Allow-Methods:
1004
+ - GET, POST, PUT, DELETE, OPTIONS
1005
+ Access-Control-Allow-Origin:
1006
+ - "*"
1007
+ Content-Type:
1008
+ - application/json; charset=UTF-8
1009
+ Date:
1010
+ - Sat, 28 Feb 2015 06:14:31 GMT
1011
+ Server:
1012
+ - nginx/1.5.11
1013
+ Content-Length:
1014
+ - '2223'
1015
+ Connection:
1016
+ - keep-alive
1017
+ body:
1018
+ encoding: UTF-8
1019
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
1020
+ {"count": 8, "offset": 5}, "data": [{"release_year": 1967, "title": "Their
1021
+ Satanic Majesties Request", "entity_type": "album", "id": "7fa4a465-2be1-1531-7fee-376f22810732",
1022
+ "number_of_tracks": "10", "album_ref_id": "6459063", "performer_name": "The
1023
+ Rolling Stones", "main_genre": "rock", "product_form": "Album"}, {"release_year":
1024
+ 1967, "title": "Piper at the Gates of Dawn", "entity_type": "album", "id":
1025
+ "0ce62699-8c96-ecc0-d080-9bb3f24cd783", "number_of_tracks": "11", "album_ref_id":
1026
+ "4994353", "performer_name": "Pink Floyd", "main_genre": "rock", "product_form":
1027
+ "Album"}, {"release_year": 1967, "title": "Magic Garden", "entity_type": "album",
1028
+ "id": "da181ad6-54de-2fa6-c954-b5aa9e149def", "number_of_tracks": "12", "album_ref_id":
1029
+ "11402595", "performer_name": "The 5th Dimension", "main_genre": "pop", "product_form":
1030
+ "Album"}, {"release_year": 1967, "title": "Of Cabbages and Kings", "entity_type":
1031
+ "album", "id": "563f0014-4706-c10a-a285-49ac92620315", "number_of_tracks":
1032
+ "17", "album_ref_id": "38700231", "performer_name": "Chad & Jeremy", "main_genre":
1033
+ "pop", "product_form": "Album"}, {"release_year": 1968, "title": "Village
1034
+ Green Preservation Society", "entity_type": "album", "id": "736ec1d2-f201-10a4-ae3a-f1ef3559381e",
1035
+ "number_of_tracks": "15", "album_ref_id": "19683453", "performer_name": "The
1036
+ Kinks", "main_genre": "rock", "product_form": "Album"}, {"release_year": 1969,
1037
+ "title": "Odessa", "entity_type": "album", "id": "8f0eca9a-6b10-15fd-7b2e-32e57acb70de",
1038
+ "number_of_tracks": "17", "album_ref_id": "12534915", "performer_name": "Bee
1039
+ Gees", "main_genre": "pop", "product_form": "Album"}, {"release_year": 1968,
1040
+ "title": "S.F. Sorrow", "entity_type": "album", "id": "ca991371-a131-71fb-4aa0-43c033e6aa2e",
1041
+ "number_of_tracks": "17", "album_ref_id": "80159857", "performer_name": "The
1042
+ Pretty Things", "main_genre": "pop", "product_form": "Album"}, {"release_year":
1043
+ 1967, "title": "Are You Experienced?", "entity_type": "album", "id": "3be84976-a930-1ebd-41bd-f318553f882e",
1044
+ "number_of_tracks": "17", "album_ref_id": "35619375", "performer_name": "The
1045
+ Jimi Hendrix Experience", "main_genre": "rock", "product_form": "Album"}]}'
1046
+ http_version:
1047
+ recorded_at: Sat, 28 Feb 2015 06:14:28 GMT
1048
+ - request:
1049
+ method: get
1050
+ uri: http://api.musicgraph.com/api/v2/album/suggest?api_key=<API_KEY>&prefix=Emotionalism
1051
+ body:
1052
+ encoding: US-ASCII
1053
+ string: ''
1054
+ headers:
1055
+ User-Agent:
1056
+ - Faraday v0.9.1
1057
+ Accept-Encoding:
1058
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1059
+ Accept:
1060
+ - "*/*"
1061
+ response:
1062
+ status:
1063
+ code: 200
1064
+ message: OK
1065
+ headers:
1066
+ Access-Control-Allow-Headers:
1067
+ - accept, origin, content-type, x-requested-with, x-requested-by
1068
+ Access-Control-Allow-Methods:
1069
+ - GET, POST, PUT, DELETE, OPTIONS
1070
+ Access-Control-Allow-Origin:
1071
+ - "*"
1072
+ Content-Type:
1073
+ - application/json; charset=UTF-8
1074
+ Date:
1075
+ - Sun, 12 Apr 2015 18:17:16 GMT
1076
+ Server:
1077
+ - nginx/1.5.11
1078
+ X-App-Box:
1079
+ - prod.v3.1d.api.musicgraph.com
1080
+ X-Branch:
1081
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1082
+ X-Environment:
1083
+ - prod
1084
+ Content-Length:
1085
+ - '462'
1086
+ Connection:
1087
+ - keep-alive
1088
+ body:
1089
+ encoding: UTF-8
1090
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
1091
+ {"count": 1, "offset": 1}, "data": [{"slug": "emotionalism", "name": "Emotionalism",
1092
+ "album_ref_id": "10416045", "entity_type": "album", "album_artist_id": "f064adc4-a6b5-11e0-b446-00251188dd67",
1093
+ "main_genre": "rock", "artist_name": "The Avett Brothers", "performer_name":
1094
+ "The Avett Brothers", "id": "4866b11f-6328-4d9d-55e4-641e3573ff52", "product_form":
1095
+ "Album", "release_year": 2007}]}'
1096
+ http_version:
1097
+ recorded_at: Sun, 12 Apr 2015 18:17:11 GMT
1098
+ - request:
1099
+ method: get
1100
+ uri: http://api.musicgraph.com/api/v2/album/suggest?api_key=<API_KEY>&prefix=4866b11f-6328-4d9d-55e4-641e3573ff52
1101
+ body:
1102
+ encoding: US-ASCII
1103
+ string: ''
1104
+ headers:
1105
+ User-Agent:
1106
+ - Faraday v0.9.1
1107
+ Accept-Encoding:
1108
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1109
+ Accept:
1110
+ - "*/*"
1111
+ response:
1112
+ status:
1113
+ code: 200
1114
+ message: OK
1115
+ headers:
1116
+ Access-Control-Allow-Headers:
1117
+ - accept, origin, content-type, x-requested-with, x-requested-by
1118
+ Access-Control-Allow-Methods:
1119
+ - GET, POST, PUT, DELETE, OPTIONS
1120
+ Access-Control-Allow-Origin:
1121
+ - "*"
1122
+ Content-Type:
1123
+ - application/json; charset=UTF-8
1124
+ Date:
1125
+ - Sun, 12 Apr 2015 18:19:27 GMT
1126
+ Server:
1127
+ - nginx/1.5.11
1128
+ X-App-Box:
1129
+ - prod.v3.1b.api.musicgraph.com
1130
+ X-Branch:
1131
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1132
+ X-Environment:
1133
+ - prod
1134
+ Content-Length:
1135
+ - '111'
1136
+ Connection:
1137
+ - keep-alive
1138
+ body:
1139
+ encoding: UTF-8
1140
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
1141
+ {"count": 0, "offset": 1}, "data": []}'
1142
+ http_version:
1143
+ recorded_at: Sun, 12 Apr 2015 18:19:30 GMT
1144
+ - request:
1145
+ method: get
1146
+ uri: http://api.musicgraph.com/api/v2/album/suggest?api_key=<API_KEY>&prefix=Emotion
1147
+ body:
1148
+ encoding: US-ASCII
1149
+ string: ''
1150
+ headers:
1151
+ User-Agent:
1152
+ - Faraday v0.9.1
1153
+ Accept-Encoding:
1154
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1155
+ Accept:
1156
+ - "*/*"
1157
+ response:
1158
+ status:
1159
+ code: 200
1160
+ message: OK
1161
+ headers:
1162
+ Access-Control-Allow-Headers:
1163
+ - accept, origin, content-type, x-requested-with, x-requested-by
1164
+ Access-Control-Allow-Methods:
1165
+ - GET, POST, PUT, DELETE, OPTIONS
1166
+ Access-Control-Allow-Origin:
1167
+ - "*"
1168
+ Content-Type:
1169
+ - application/json; charset=UTF-8
1170
+ Date:
1171
+ - Sun, 12 Apr 2015 18:20:38 GMT
1172
+ Server:
1173
+ - nginx/1.5.11
1174
+ X-App-Box:
1175
+ - prod.v3.1c.api.musicgraph.com
1176
+ X-Branch:
1177
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1178
+ X-Environment:
1179
+ - prod
1180
+ Content-Length:
1181
+ - '7015'
1182
+ Connection:
1183
+ - keep-alive
1184
+ body:
1185
+ encoding: UTF-8
1186
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
1187
+ {"count": 20, "offset": 1}, "data": [{"slug": "emotions", "name": "Emotions",
1188
+ "album_ref_id": "1449939", "entity_type": "album", "album_artist_id": "b9fae655-9741-b873-9cd0-834c2a9c3e34",
1189
+ "main_genre": "pop", "artist_name": "Mariah Carey", "performer_name": "Mariah
1190
+ Carey", "id": "7869a003-ec31-37f6-7369-4e500de1f577", "product_form": "Single",
1191
+ "release_year": 2002}, {"slug": "emotions", "name": "Emotions", "album_ref_id":
1192
+ "14842599", "entity_type": "album", "album_artist_id": "b9fae655-9741-b873-9cd0-834c2a9c3e34",
1193
+ "main_genre": "pop", "artist_name": "Mariah Carey", "performer_name": "Mariah
1194
+ Carey", "id": "22a84035-7c3c-5268-e762-68ead77136b3", "product_form": "Album",
1195
+ "release_year": 1991}, {"slug": "mixed emotions", "name": "Mixed Emotions",
1196
+ "album_ref_id": "15890455", "entity_type": "album", "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1197
+ "main_genre": "rock", "artist_name": "The Rolling Stones", "performer_name":
1198
+ "The Rolling Stones", "id": "78fe2b64-8497-1060-bcc0-de924734bff9", "product_form":
1199
+ "Single", "release_year": 1990}, {"slug": "emotional rescue", "name": "Emotional
1200
+ Rescue", "album_ref_id": "32202849", "entity_type": "album", "album_artist_id":
1201
+ "e88b6841-a6b5-11e0-b446-00251188dd67", "main_genre": "rock", "artist_name":
1202
+ "The Rolling Stones", "performer_name": "The Rolling Stones", "id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1203
+ "product_form": "Album", "release_year": 1980}, {"slug": "emotion cycles",
1204
+ "name": "Emotion Cycles", "album_ref_id": "2280143", "entity_type": "album",
1205
+ "album_artist_id": "2d8fb76a-f893-51ec-19c9-572bd3c33c7a", "main_genre": "electronica/dance",
1206
+ "artist_name": "Dahlia", "performer_name": "Dahlia", "id": "d3dd87c4-b87a-e0ab-eb9a-4e598a65a71b",
1207
+ "product_form": "Album", "release_year": 2001}, {"slug": "so emotional", "name":
1208
+ "So Emotional", "album_ref_id": "69577767", "entity_type": "album", "album_artist_id":
1209
+ "e398f5d4-a6b5-11e0-b446-00251188dd67", "main_genre": "pop", "artist_name":
1210
+ "Whitney Houston", "performer_name": "Whitney Houston", "id": "16a652e2-d62b-e7d4-2645-b5b68b8c71fb",
1211
+ "product_form": "Single", "release_year": 1988}, {"slug": "mixed emotions",
1212
+ "name": "Mixed Emotions", "album_ref_id": "40552099", "entity_type": "album",
1213
+ "album_artist_id": "e3577cbb-a6b5-11e0-b446-00251188dd67", "main_genre": "jazz",
1214
+ "artist_name": "Dinah Washington", "performer_name": "Dinah Washington", "id":
1215
+ "36b97c82-cd64-c754-41be-5b41812395df", "product_form": "Album", "release_year":
1216
+ 2002}, {"slug": "emotional traffic", "name": "Emotional Traffic", "album_ref_id":
1217
+ "63234357", "entity_type": "album", "album_artist_id": "8aff6b3e-a023-cead-c16e-5c39d0dedfba",
1218
+ "main_genre": "country", "artist_name": "Tim McGraw", "performer_name": "Tim
1219
+ McGraw", "id": "0dae7300-90cb-8c86-db64-1be3a17a2401", "product_form": "Album",
1220
+ "release_year": 2012}, {"slug": "emotion us 12", "name": "Emotion [US 12\"]",
1221
+ "album_ref_id": "30914135", "entity_type": "album", "album_artist_id": "ab03f3c2-dc65-d333-406b-0e4dddda1407",
1222
+ "main_genre": "pop", "artist_name": "Destiny''s Child", "performer_name":
1223
+ "Destiny''s Child", "id": "f2708bb9-2a65-696b-7f96-3715064096c5", "product_form":
1224
+ "Single", "release_year": 2001}, {"slug": "motions emotions", "name": "Motions
1225
+ & Emotions", "album_ref_id": "5303273", "entity_type": "album", "album_artist_id":
1226
+ "e2cf1db0-a6b5-11e0-b446-00251188dd67", "main_genre": "jazz", "artist_name":
1227
+ "Oscar Peterson", "performer_name": "Oscar Peterson", "id": "e698b9f2-0107-5d26-d1d9-9e0a3feced2d",
1228
+ "product_form": "Album", "release_year": 1969}, {"slug": "emotions", "name":
1229
+ "Emotions", "album_ref_id": "64721737", "entity_type": "album", "album_artist_id":
1230
+ "31fef68f-ebaf-b1a9-6e67-e1ceeb5e8dec", "main_genre": "jazz", "artist_name":
1231
+ "Brenda Lee", "performer_name": "Brenda Lee", "id": "10a17706-d760-6784-1c3c-48b1697b679c",
1232
+ "product_form": "Album", "release_year": 1961}, {"slug": "emotion", "name":
1233
+ "Emotion", "album_ref_id": "527847", "entity_type": "album", "album_artist_id":
1234
+ "e32c6c9d-a6b5-11e0-b446-00251188dd67", "main_genre": "vocals", "artist_name":
1235
+ "Barbra Streisand", "performer_name": "Barbra Streisand", "id": "2207ded9-a5e5-3b8d-1d36-8e969d26564a",
1236
+ "product_form": "Album", "release_year": 1984}, {"slug": "emotions", "name":
1237
+ "Emotions", "entity_type": "album", "album_artist_id": "ee25f6da-a6b5-11e0-b446-00251188dd67",
1238
+ "main_genre": "pop", "artist_name": "Sila", "performer_name": "Sila", "id":
1239
+ "237292d9-12fc-3933-f717-4524ca827daf", "product_form": "Single", "album_ref_id":
1240
+ "41154039"}, {"slug": "mixed emotions", "name": "Mixed Emotions", "album_ref_id":
1241
+ "55612349", "entity_type": "album", "album_artist_id": "e3c55782-a6b5-11e0-b446-00251188dd67",
1242
+ "main_genre": "pop", "artist_name": "Rosemary Clooney", "performer_name":
1243
+ "Rosemary Clooney", "id": "d3008d94-17a9-0c86-4ce8-4723f969368b", "product_form":
1244
+ "Album", "release_year": 1986}, {"slug": "emotionally yours", "name": "Emotionally
1245
+ Yours", "album_ref_id": "57553", "entity_type": "album", "album_artist_id":
1246
+ "e68df63a-a6b5-11e0-b446-00251188dd67", "main_genre": "soul/r&b", "artist_name":
1247
+ "The O''Jays", "performer_name": "The O''Jays", "id": "677bab38-114d-0b4c-049c-70730fe48685",
1248
+ "product_form": "Album", "release_year": 1991}, {"slug": "emotionalism", "name":
1249
+ "Emotionalism", "album_ref_id": "10416045", "entity_type": "album", "album_artist_id":
1250
+ "f064adc4-a6b5-11e0-b446-00251188dd67", "main_genre": "rock", "artist_name":
1251
+ "The Avett Brothers", "performer_name": "The Avett Brothers", "id": "4866b11f-6328-4d9d-55e4-641e3573ff52",
1252
+ "product_form": "Album", "release_year": 2007}, {"slug": "mixed emotions",
1253
+ "name": "Mixed Emotions", "album_ref_id": "86560409", "entity_type": "album",
1254
+ "album_artist_id": "f03535e4-a6b5-11e0-b446-00251188dd67", "main_genre": "blues",
1255
+ "artist_name": "TJR", "performer_name": "TJR", "id": "0bb03327-7d28-9784-1197-4a4bf1ab1e7f",
1256
+ "product_form": "Album", "release_year": 2003}, {"slug": "emotional technology",
1257
+ "name": "Emotional Technology", "album_ref_id": "46155395", "entity_type":
1258
+ "album", "album_artist_id": "e2969b62-a6b5-11e0-b446-00251188dd67", "main_genre":
1259
+ "electronica/dance", "artist_name": "BT", "performer_name": "BT", "id": "3ee8d4d4-03eb-2128-b3ee-dec9cda7c4d0",
1260
+ "product_form": "Album", "release_year": 2003}, {"slug": "into the lighthigh
1261
+ on emotion", "name": "Into the Light/High on Emotion", "album_ref_id": "4078507",
1262
+ "entity_type": "album", "album_artist_id": "3edb3f6a-3cda-2ad5-af2d-ff763c197f52",
1263
+ "main_genre": "rock", "artist_name": "Chris de Burgh", "performer_name": "Chris
1264
+ De Burgh", "id": "b5626855-2766-17e6-31ba-42398b93c314", "product_form": "Album",
1265
+ "release_year": 2000}, {"slug": "emotion commotion", "name": "Emotion & Commotion",
1266
+ "album_ref_id": "38767673", "entity_type": "album", "album_artist_id": "e6c88da8-a6b5-11e0-b446-00251188dd67",
1267
+ "main_genre": "rock", "artist_name": "Jeff Beck", "performer_name": "Jeff
1268
+ Beck", "id": "7f1f7fb1-1906-ae57-de35-446b4566287b", "product_form": "Album",
1269
+ "release_year": 2010}]}'
1270
+ http_version:
1271
+ recorded_at: Sun, 12 Apr 2015 18:20:36 GMT
1272
+ - request:
1273
+ method: get
1274
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c?api_key=<API_KEY>
1275
+ body:
1276
+ encoding: US-ASCII
1277
+ string: ''
1278
+ headers:
1279
+ User-Agent:
1280
+ - Faraday v0.9.1
1281
+ Accept-Encoding:
1282
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1283
+ Accept:
1284
+ - "*/*"
1285
+ response:
1286
+ status:
1287
+ code: 200
1288
+ message: OK
1289
+ headers:
1290
+ Access-Control-Allow-Headers:
1291
+ - accept, origin, content-type, x-requested-with, x-requested-by
1292
+ Access-Control-Allow-Methods:
1293
+ - GET, POST, PUT, DELETE, OPTIONS
1294
+ Access-Control-Allow-Origin:
1295
+ - "*"
1296
+ Content-Type:
1297
+ - application/json; charset=UTF-8
1298
+ Date:
1299
+ - Sun, 12 Apr 2015 23:24:37 GMT
1300
+ Server:
1301
+ - nginx/1.5.11
1302
+ X-App-Box:
1303
+ - prod.v3.1d.api.musicgraph.com
1304
+ X-Branch:
1305
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1306
+ X-Environment:
1307
+ - prod
1308
+ Content-Length:
1309
+ - '389'
1310
+ Connection:
1311
+ - keep-alive
1312
+ body:
1313
+ encoding: UTF-8
1314
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "data":
1315
+ {"release_year": 1980, "title": "Emotional Rescue", "entity_type": "album",
1316
+ "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1317
+ "number_of_tracks": "10", "album_ref_id": "32202849", "performer_name": "The
1318
+ Rolling Stones", "main_genre": "rock", "product_form": "Album"}}'
1319
+ http_version:
1320
+ recorded_at: Sun, 12 Apr 2015 23:24:32 GMT
1321
+ - request:
1322
+ method: get
1323
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/edges?api_key=<API_KEY>
1324
+ body:
1325
+ encoding: US-ASCII
1326
+ string: ''
1327
+ headers:
1328
+ User-Agent:
1329
+ - Faraday v0.9.1
1330
+ Accept-Encoding:
1331
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1332
+ Accept:
1333
+ - "*/*"
1334
+ response:
1335
+ status:
1336
+ code: 200
1337
+ message: OK
1338
+ headers:
1339
+ Access-Control-Allow-Headers:
1340
+ - accept, origin, content-type, x-requested-with, x-requested-by
1341
+ Access-Control-Allow-Methods:
1342
+ - GET, POST, PUT, DELETE, OPTIONS
1343
+ Access-Control-Allow-Origin:
1344
+ - "*"
1345
+ Content-Type:
1346
+ - application/json; charset=UTF-8
1347
+ Date:
1348
+ - Mon, 13 Apr 2015 01:40:09 GMT
1349
+ Server:
1350
+ - nginx/1.5.11
1351
+ X-App-Box:
1352
+ - prod.v3.1b.api.musicgraph.com
1353
+ X-Branch:
1354
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1355
+ X-Environment:
1356
+ - prod
1357
+ Content-Length:
1358
+ - '89'
1359
+ Connection:
1360
+ - keep-alive
1361
+ body:
1362
+ encoding: UTF-8
1363
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "data":
1364
+ ["artists", "tracks"]}'
1365
+ http_version:
1366
+ recorded_at: Mon, 13 Apr 2015 01:40:12 GMT
1367
+ - request:
1368
+ method: get
1369
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/edges?api_key=<API_KEY>
1370
+ body:
1371
+ encoding: US-ASCII
1372
+ string: ''
1373
+ headers:
1374
+ User-Agent:
1375
+ - Faraday v0.9.1
1376
+ Accept-Encoding:
1377
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1378
+ Accept:
1379
+ - "*/*"
1380
+ response:
1381
+ status:
1382
+ code: 200
1383
+ message: OK
1384
+ headers:
1385
+ Access-Control-Allow-Headers:
1386
+ - accept, origin, content-type, x-requested-with, x-requested-by
1387
+ Access-Control-Allow-Methods:
1388
+ - GET, POST, PUT, DELETE, OPTIONS
1389
+ Access-Control-Allow-Origin:
1390
+ - "*"
1391
+ Content-Type:
1392
+ - application/json; charset=UTF-8
1393
+ Date:
1394
+ - Mon, 13 Apr 2015 01:40:48 GMT
1395
+ Server:
1396
+ - nginx/1.5.11
1397
+ X-App-Box:
1398
+ - prod.v3.1c.api.musicgraph.com
1399
+ X-Branch:
1400
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1401
+ X-Environment:
1402
+ - prod
1403
+ Content-Length:
1404
+ - '89'
1405
+ Connection:
1406
+ - keep-alive
1407
+ body:
1408
+ encoding: UTF-8
1409
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "data":
1410
+ ["artists", "tracks"]}'
1411
+ http_version:
1412
+ recorded_at: Mon, 13 Apr 2015 01:40:47 GMT
1413
+ - request:
1414
+ method: get
1415
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/metadata?api_key=<API_KEY>
1416
+ body:
1417
+ encoding: US-ASCII
1418
+ string: ''
1419
+ headers:
1420
+ User-Agent:
1421
+ - Faraday v0.9.1
1422
+ Accept-Encoding:
1423
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1424
+ Accept:
1425
+ - "*/*"
1426
+ response:
1427
+ status:
1428
+ code: 404
1429
+ message: Not Found
1430
+ headers:
1431
+ Access-Control-Allow-Headers:
1432
+ - accept, origin, content-type, x-requested-with, x-requested-by
1433
+ Access-Control-Allow-Methods:
1434
+ - GET, POST, PUT, DELETE, OPTIONS
1435
+ Access-Control-Allow-Origin:
1436
+ - "*"
1437
+ Content-Type:
1438
+ - application/json; charset=UTF-8
1439
+ Date:
1440
+ - Mon, 13 Apr 2015 02:04:36 GMT
1441
+ Server:
1442
+ - nginx/1.5.11
1443
+ Content-Length:
1444
+ - '61'
1445
+ Connection:
1446
+ - keep-alive
1447
+ body:
1448
+ encoding: UTF-8
1449
+ string: '{"status": {"code": -1, "message": "Not Found", "api": "v2"}}'
1450
+ http_version:
1451
+ recorded_at: Mon, 13 Apr 2015 02:04:39 GMT
1452
+ - request:
1453
+ method: get
1454
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c?api_key=<API_KEY>
1455
+ body:
1456
+ encoding: US-ASCII
1457
+ string: ''
1458
+ headers:
1459
+ User-Agent:
1460
+ - Faraday v0.9.1
1461
+ Accept-Encoding:
1462
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1463
+ Accept:
1464
+ - "*/*"
1465
+ response:
1466
+ status:
1467
+ code: 200
1468
+ message: OK
1469
+ headers:
1470
+ Access-Control-Allow-Headers:
1471
+ - accept, origin, content-type, x-requested-with, x-requested-by
1472
+ Access-Control-Allow-Methods:
1473
+ - GET, POST, PUT, DELETE, OPTIONS
1474
+ Access-Control-Allow-Origin:
1475
+ - "*"
1476
+ Content-Type:
1477
+ - application/json; charset=UTF-8
1478
+ Date:
1479
+ - Mon, 13 Apr 2015 02:05:08 GMT
1480
+ Server:
1481
+ - nginx/1.5.11
1482
+ X-App-Box:
1483
+ - prod.v3.1b.api.musicgraph.com
1484
+ X-Branch:
1485
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1486
+ X-Environment:
1487
+ - prod
1488
+ Content-Length:
1489
+ - '389'
1490
+ Connection:
1491
+ - keep-alive
1492
+ body:
1493
+ encoding: UTF-8
1494
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "data":
1495
+ {"release_year": 1980, "entity_type": "album", "title": "Emotional Rescue",
1496
+ "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "main_genre": "rock",
1497
+ "number_of_tracks": "10", "album_ref_id": "32202849", "performer_name": "The
1498
+ Rolling Stones", "id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "product_form":
1499
+ "Album"}}'
1500
+ http_version:
1501
+ recorded_at: Mon, 13 Apr 2015 02:05:11 GMT
1502
+ - request:
1503
+ method: get
1504
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c?api_key=<API_KEY>&fields=id,title
1505
+ body:
1506
+ encoding: US-ASCII
1507
+ string: ''
1508
+ headers:
1509
+ User-Agent:
1510
+ - Faraday v0.9.1
1511
+ Accept-Encoding:
1512
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1513
+ Accept:
1514
+ - "*/*"
1515
+ response:
1516
+ status:
1517
+ code: 200
1518
+ message: OK
1519
+ headers:
1520
+ Access-Control-Allow-Headers:
1521
+ - accept, origin, content-type, x-requested-with, x-requested-by
1522
+ Access-Control-Allow-Methods:
1523
+ - GET, POST, PUT, DELETE, OPTIONS
1524
+ Access-Control-Allow-Origin:
1525
+ - "*"
1526
+ Content-Type:
1527
+ - application/json; charset=UTF-8
1528
+ Date:
1529
+ - Thu, 16 Apr 2015 02:25:05 GMT
1530
+ Server:
1531
+ - nginx/1.5.11
1532
+ X-App-Box:
1533
+ - prod.v3.1a.api.musicgraph.com
1534
+ X-Branch:
1535
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1536
+ X-Environment:
1537
+ - prod
1538
+ Content-Length:
1539
+ - '202'
1540
+ Connection:
1541
+ - keep-alive
1542
+ body:
1543
+ encoding: UTF-8
1544
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "data":
1545
+ {"title": "Emotional Rescue", "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1546
+ "id": "7cfb88ac-1d50-f210-42d6-57a718fa141c"}}'
1547
+ http_version:
1548
+ recorded_at: Thu, 16 Apr 2015 02:25:10 GMT
1549
+ - request:
1550
+ method: get
1551
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/artists?api_key=<API_KEY>
1552
+ body:
1553
+ encoding: US-ASCII
1554
+ string: ''
1555
+ headers:
1556
+ User-Agent:
1557
+ - Faraday v0.9.1
1558
+ Accept-Encoding:
1559
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1560
+ Accept:
1561
+ - "*/*"
1562
+ response:
1563
+ status:
1564
+ code: 200
1565
+ message: OK
1566
+ headers:
1567
+ Access-Control-Allow-Headers:
1568
+ - accept, origin, content-type, x-requested-with, x-requested-by
1569
+ Access-Control-Allow-Methods:
1570
+ - GET, POST, PUT, DELETE, OPTIONS
1571
+ Access-Control-Allow-Origin:
1572
+ - "*"
1573
+ Content-Type:
1574
+ - application/json; charset=UTF-8
1575
+ Date:
1576
+ - Thu, 16 Apr 2015 03:00:42 GMT
1577
+ Server:
1578
+ - nginx/1.5.11
1579
+ X-App-Box:
1580
+ - prod.v3.1a.api.musicgraph.com
1581
+ X-Branch:
1582
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1583
+ X-Environment:
1584
+ - prod
1585
+ Content-Length:
1586
+ - '510'
1587
+ Connection:
1588
+ - keep-alive
1589
+ body:
1590
+ encoding: UTF-8
1591
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
1592
+ {"count": 1, "total": 1, "offset": 1}, "data": [{"main_genre": "rock", "country_of_origin":
1593
+ "England", "spotify_id": "22bE4uQ6baNwSHPVcDxLCe", "entity_type": "artist",
1594
+ "artist_ref_id": "33474", "sort_name": "Rolling Stones", "gender": "Male",
1595
+ "musicbrainz_id": "b071f9fa-14b0-4217-8e97-eb41da73f598", "id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1596
+ "decade": "1960s / 1970s / 1980s / 1990s / 2000s / 2010s", "name": "The Rolling
1597
+ Stones"}]}'
1598
+ http_version:
1599
+ recorded_at: Thu, 16 Apr 2015 03:00:47 GMT
1600
+ - request:
1601
+ method: get
1602
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/artists?api_key=<API_KEY>
1603
+ body:
1604
+ encoding: US-ASCII
1605
+ string: ''
1606
+ headers:
1607
+ User-Agent:
1608
+ - Faraday v0.9.1
1609
+ Accept-Encoding:
1610
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1611
+ Accept:
1612
+ - "*/*"
1613
+ response:
1614
+ status:
1615
+ code: 200
1616
+ message: OK
1617
+ headers:
1618
+ Access-Control-Allow-Headers:
1619
+ - accept, origin, content-type, x-requested-with, x-requested-by
1620
+ Access-Control-Allow-Methods:
1621
+ - GET, POST, PUT, DELETE, OPTIONS
1622
+ Access-Control-Allow-Origin:
1623
+ - "*"
1624
+ Content-Type:
1625
+ - application/json; charset=UTF-8
1626
+ Date:
1627
+ - Thu, 16 Apr 2015 03:00:50 GMT
1628
+ Server:
1629
+ - nginx/1.5.11
1630
+ X-App-Box:
1631
+ - prod.v3.1c.api.musicgraph.com
1632
+ X-Branch:
1633
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1634
+ X-Environment:
1635
+ - prod
1636
+ Content-Length:
1637
+ - '510'
1638
+ Connection:
1639
+ - keep-alive
1640
+ body:
1641
+ encoding: UTF-8
1642
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
1643
+ {"count": 1, "total": 1, "offset": 1}, "data": [{"country_of_origin": "England",
1644
+ "spotify_id": "22bE4uQ6baNwSHPVcDxLCe", "entity_type": "artist", "artist_ref_id":
1645
+ "33474", "id": "e88b6841-a6b5-11e0-b446-00251188dd67", "sort_name": "Rolling
1646
+ Stones", "gender": "Male", "musicbrainz_id": "b071f9fa-14b0-4217-8e97-eb41da73f598",
1647
+ "main_genre": "rock", "decade": "1960s / 1970s / 1980s / 1990s / 2000s / 2010s",
1648
+ "name": "The Rolling Stones"}]}'
1649
+ http_version:
1650
+ recorded_at: Thu, 16 Apr 2015 03:00:47 GMT
1651
+ - request:
1652
+ method: get
1653
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/artists?api_key=<API_KEY>
1654
+ body:
1655
+ encoding: US-ASCII
1656
+ string: ''
1657
+ headers:
1658
+ User-Agent:
1659
+ - Faraday v0.9.1
1660
+ Accept-Encoding:
1661
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1662
+ Accept:
1663
+ - "*/*"
1664
+ response:
1665
+ status:
1666
+ code: 200
1667
+ message: OK
1668
+ headers:
1669
+ Access-Control-Allow-Headers:
1670
+ - accept, origin, content-type, x-requested-with, x-requested-by
1671
+ Access-Control-Allow-Methods:
1672
+ - GET, POST, PUT, DELETE, OPTIONS
1673
+ Access-Control-Allow-Origin:
1674
+ - "*"
1675
+ Content-Type:
1676
+ - application/json; charset=UTF-8
1677
+ Date:
1678
+ - Thu, 16 Apr 2015 03:01:05 GMT
1679
+ Server:
1680
+ - nginx/1.5.11
1681
+ X-App-Box:
1682
+ - prod.v3.1c.api.musicgraph.com
1683
+ X-Branch:
1684
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1685
+ X-Environment:
1686
+ - prod
1687
+ Content-Length:
1688
+ - '510'
1689
+ Connection:
1690
+ - keep-alive
1691
+ body:
1692
+ encoding: UTF-8
1693
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
1694
+ {"count": 1, "total": 1, "offset": 1}, "data": [{"country_of_origin": "England",
1695
+ "spotify_id": "22bE4uQ6baNwSHPVcDxLCe", "entity_type": "artist", "artist_ref_id":
1696
+ "33474", "id": "e88b6841-a6b5-11e0-b446-00251188dd67", "sort_name": "Rolling
1697
+ Stones", "gender": "Male", "musicbrainz_id": "b071f9fa-14b0-4217-8e97-eb41da73f598",
1698
+ "main_genre": "rock", "decade": "1960s / 1970s / 1980s / 1990s / 2000s / 2010s",
1699
+ "name": "The Rolling Stones"}]}'
1700
+ http_version:
1701
+ recorded_at: Thu, 16 Apr 2015 03:01:02 GMT
1702
+ - request:
1703
+ method: get
1704
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/artists?api_key=<API_KEY>
1705
+ body:
1706
+ encoding: US-ASCII
1707
+ string: ''
1708
+ headers:
1709
+ User-Agent:
1710
+ - Faraday v0.9.1
1711
+ Accept-Encoding:
1712
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1713
+ Accept:
1714
+ - "*/*"
1715
+ response:
1716
+ status:
1717
+ code: 200
1718
+ message: OK
1719
+ headers:
1720
+ Access-Control-Allow-Headers:
1721
+ - accept, origin, content-type, x-requested-with, x-requested-by
1722
+ Access-Control-Allow-Methods:
1723
+ - GET, POST, PUT, DELETE, OPTIONS
1724
+ Access-Control-Allow-Origin:
1725
+ - "*"
1726
+ Content-Type:
1727
+ - application/json; charset=UTF-8
1728
+ Date:
1729
+ - Thu, 16 Apr 2015 03:01:02 GMT
1730
+ Server:
1731
+ - nginx/1.5.11
1732
+ X-App-Box:
1733
+ - prod.v3.1b.api.musicgraph.com
1734
+ X-Branch:
1735
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1736
+ X-Environment:
1737
+ - prod
1738
+ Content-Length:
1739
+ - '510'
1740
+ Connection:
1741
+ - keep-alive
1742
+ body:
1743
+ encoding: UTF-8
1744
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
1745
+ {"count": 1, "total": 1, "offset": 1}, "data": [{"country_of_origin": "England",
1746
+ "spotify_id": "22bE4uQ6baNwSHPVcDxLCe", "entity_type": "artist", "artist_ref_id":
1747
+ "33474", "id": "e88b6841-a6b5-11e0-b446-00251188dd67", "sort_name": "Rolling
1748
+ Stones", "gender": "Male", "musicbrainz_id": "b071f9fa-14b0-4217-8e97-eb41da73f598",
1749
+ "main_genre": "rock", "decade": "1960s / 1970s / 1980s / 1990s / 2000s / 2010s",
1750
+ "name": "The Rolling Stones"}]}'
1751
+ http_version:
1752
+ recorded_at: Thu, 16 Apr 2015 03:01:07 GMT
1753
+ - request:
1754
+ method: get
1755
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/tracks?api_key=<API_KEY>
1756
+ body:
1757
+ encoding: US-ASCII
1758
+ string: ''
1759
+ headers:
1760
+ User-Agent:
1761
+ - Faraday v0.9.1
1762
+ Accept-Encoding:
1763
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1764
+ Accept:
1765
+ - "*/*"
1766
+ response:
1767
+ status:
1768
+ code: 200
1769
+ message: OK
1770
+ headers:
1771
+ Access-Control-Allow-Headers:
1772
+ - accept, origin, content-type, x-requested-with, x-requested-by
1773
+ Access-Control-Allow-Methods:
1774
+ - GET, POST, PUT, DELETE, OPTIONS
1775
+ Access-Control-Allow-Origin:
1776
+ - "*"
1777
+ Content-Type:
1778
+ - application/json; charset=UTF-8
1779
+ Date:
1780
+ - Thu, 16 Apr 2015 03:07:57 GMT
1781
+ Server:
1782
+ - nginx/1.5.11
1783
+ X-App-Box:
1784
+ - prod.v3.1c.api.musicgraph.com
1785
+ X-Branch:
1786
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1787
+ X-Environment:
1788
+ - prod
1789
+ Content-Length:
1790
+ - '6319'
1791
+ Connection:
1792
+ - keep-alive
1793
+ body:
1794
+ encoding: UTF-8
1795
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
1796
+ {"count": 10, "total": 10, "offset": 1}, "data": [{"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1797
+ "primary_tempo": 69.837, "label_name": "Capitol", "track_index": "9", "duration":
1798
+ 254, "main_genre": "rock", "title": "She''s So Cold", "track_ref_id": "32202867",
1799
+ "id": "6d1252b1-40d8-a029-5a67-773ef8ae92bb", "performer_name": "The Rolling
1800
+ Stones", "original_release_year": 1980, "entity_type": "track", "artist_name":
1801
+ "The Rolling Stones", "isrc": "GBUM70909392", "track_artist_ref_id": "33474",
1802
+ "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1803
+ "popularity": 0.41, "track_album_ref_id": "32202849", "album_title": "Emotional
1804
+ Rescue"}, {"popularity": 0.3, "track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1805
+ "release_year": 2009, "title": "Down in the Hole", "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1806
+ "primary_tempo": 61.81, "artist_name": "The Rolling Stones", "entity_type":
1807
+ "track", "album_title": "Emotional Rescue", "performer_name": "The Rolling
1808
+ Stones", "track_index": "7", "duration": 238, "isrc": "GBCJN8000007", "original_release_year":
1809
+ 1980, "id": "fc13444d-2d36-a278-283a-4714c9dc4ff5"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1810
+ "primary_tempo": 97.97, "label_name": "Capitol", "track_index": "5", "duration":
1811
+ 263, "main_genre": "rock", "title": "Indian Girl", "track_ref_id": "32202859",
1812
+ "id": "3d562866-5bdf-3a36-0ec5-9acf53386ec2", "performer_name": "The Rolling
1813
+ Stones", "original_release_year": 1980, "entity_type": "track", "artist_name":
1814
+ "The Rolling Stones", "isrc": "GBUM70909388", "track_artist_ref_id": "33474",
1815
+ "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1816
+ "popularity": 0.32, "track_album_ref_id": "32202849", "album_title": "Emotional
1817
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1818
+ 83.354, "label_name": "Capitol", "track_index": "2", "duration": 196, "main_genre":
1819
+ "rock", "title": "Summer Romance", "track_ref_id": "32202853", "id": "744de873-7235-1969-cedf-c6801dfdada3",
1820
+ "original_release_year": 1980, "entity_type": "track", "performer_name": "The
1821
+ Rolling Stones", "artist_name": "The Rolling Stones", "isrc": "GBUM70909385",
1822
+ "track_artist_ref_id": "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1823
+ "popularity": 0.31, "track_album_ref_id": "32202849", "album_title": "Emotional
1824
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1825
+ 80.124, "label_name": "Capitol", "track_index": "6", "duration": 209, "main_genre":
1826
+ "rock", "title": "Where the Boys Go", "track_ref_id": "32202861", "id": "2362e93c-1476-db02-bd1b-647593a64efe",
1827
+ "performer_name": "The Rolling Stones", "original_release_year": 1980, "entity_type":
1828
+ "track", "artist_name": "The Rolling Stones", "isrc": "GBUM70909389", "track_artist_ref_id":
1829
+ "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1830
+ "popularity": 0.29, "track_album_ref_id": "32202849", "album_title": "Emotional
1831
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1832
+ 86.857, "label_name": "Capitol", "track_index": "10", "duration": 258, "main_genre":
1833
+ "rock", "title": "All About You", "track_ref_id": "32202869", "id": "1da77c83-ab33-36fd-3af4-85f5ea71972c",
1834
+ "original_release_year": 1980, "entity_type": "track", "performer_name": "The
1835
+ Rolling Stones", "artist_name": "The Rolling Stones", "isrc": "GBUM70909393",
1836
+ "track_artist_ref_id": "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1837
+ "popularity": 0.3, "track_album_ref_id": "32202849", "album_title": "Emotional
1838
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1839
+ 107.666, "label_name": "Capitol", "track_index": "1", "duration": 263, "main_genre":
1840
+ "rock", "title": "Dance (Pt. 1)", "track_ref_id": "32202851", "id": "4b091198-0448-9494-cb1c-cc7dd1356455",
1841
+ "original_release_year": 2009, "entity_type": "track", "performer_name": "The
1842
+ Rolling Stones", "artist_name": "The Rolling Stones", "isrc": "GBUM70909384",
1843
+ "track_artist_ref_id": "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1844
+ "popularity": 0.37, "track_album_ref_id": "32202849", "album_title": "Emotional
1845
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1846
+ 93.963, "label_name": "Capitol", "track_index": "3", "duration": 223, "main_genre":
1847
+ "rock", "title": "Send It to Me", "track_ref_id": "32202855", "id": "99f024c5-a02f-3a06-a232-9cc1f14de80e",
1848
+ "performer_name": "The Rolling Stones", "original_release_year": 1980, "entity_type":
1849
+ "track", "artist_name": "The Rolling Stones", "isrc": "GBUM70909386", "track_artist_ref_id":
1850
+ "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1851
+ "popularity": 0.33, "track_album_ref_id": "32202849", "album_title": "Emotional
1852
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1853
+ 114.84, "label_name": "Capitol", "track_index": "8", "duration": 339, "main_genre":
1854
+ "rock", "title": "Emotional Rescue", "track_ref_id": "32202865", "id": "6bafa653-0c6d-6df3-41db-8412f7c00a84",
1855
+ "performer_name": "The Rolling Stones", "original_release_year": 1980, "entity_type":
1856
+ "track", "artist_name": "The Rolling Stones", "isrc": "GBUM70909391", "track_artist_ref_id":
1857
+ "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1858
+ "popularity": 0.44, "track_album_ref_id": "32202849", "album_title": "Emotional
1859
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1860
+ 74.359, "label_name": "Capitol", "track_index": "4", "duration": 232, "main_genre":
1861
+ "rock", "title": "Let Me Go", "track_ref_id": "32202857", "id": "02b2263b-3f44-876b-595b-658340e4e6a6",
1862
+ "performer_name": "The Rolling Stones", "original_release_year": 2009, "entity_type":
1863
+ "track", "track_musicbrainz_id": "2276d4a3-370b-46f4-84a2-98d886577c0f", "artist_name":
1864
+ "The Rolling Stones", "isrc": "GBUM70909387", "track_artist_ref_id": "33474",
1865
+ "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1866
+ "popularity": 0.31, "track_album_ref_id": "32202849", "album_title": "Emotional
1867
+ Rescue"}]}'
1868
+ http_version:
1869
+ recorded_at: Thu, 16 Apr 2015 03:07:54 GMT
1870
+ - request:
1871
+ method: get
1872
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/tracks?api_key=<API_KEY>
1873
+ body:
1874
+ encoding: US-ASCII
1875
+ string: ''
1876
+ headers:
1877
+ User-Agent:
1878
+ - Faraday v0.9.1
1879
+ Accept-Encoding:
1880
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
1881
+ Accept:
1882
+ - "*/*"
1883
+ response:
1884
+ status:
1885
+ code: 200
1886
+ message: OK
1887
+ headers:
1888
+ Access-Control-Allow-Headers:
1889
+ - accept, origin, content-type, x-requested-with, x-requested-by
1890
+ Access-Control-Allow-Methods:
1891
+ - GET, POST, PUT, DELETE, OPTIONS
1892
+ Access-Control-Allow-Origin:
1893
+ - "*"
1894
+ Content-Type:
1895
+ - application/json; charset=UTF-8
1896
+ Date:
1897
+ - Thu, 16 Apr 2015 03:07:49 GMT
1898
+ Server:
1899
+ - nginx/1.5.11
1900
+ X-App-Box:
1901
+ - prod.v3.1a.api.musicgraph.com
1902
+ X-Branch:
1903
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
1904
+ X-Environment:
1905
+ - prod
1906
+ Content-Length:
1907
+ - '6319'
1908
+ Connection:
1909
+ - keep-alive
1910
+ body:
1911
+ encoding: UTF-8
1912
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
1913
+ {"count": 10, "total": 10, "offset": 1}, "data": [{"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
1914
+ "primary_tempo": 69.837, "label_name": "Capitol", "track_index": "9", "duration":
1915
+ 254, "id": "6d1252b1-40d8-a029-5a67-773ef8ae92bb", "title": "She''s So Cold",
1916
+ "track_ref_id": "32202867", "main_genre": "rock", "original_release_year":
1917
+ 1980, "entity_type": "track", "performer_name": "The Rolling Stones", "artist_name":
1918
+ "The Rolling Stones", "isrc": "GBUM70909392", "track_artist_ref_id": "33474",
1919
+ "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1920
+ "popularity": 0.41, "track_album_ref_id": "32202849", "album_title": "Emotional
1921
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "release_year":
1922
+ 2009, "primary_tempo": 61.81, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1923
+ "id": "fc13444d-2d36-a278-283a-4714c9dc4ff5", "popularity": 0.3, "original_release_year":
1924
+ 1980, "artist_name": "The Rolling Stones", "isrc": "GBCJN8000007", "performer_name":
1925
+ "The Rolling Stones", "album_title": "Emotional Rescue", "duration": 238,
1926
+ "title": "Down in the Hole", "track_index": "7", "entity_type": "track"},
1927
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1928
+ 97.97, "label_name": "Capitol", "track_index": "5", "duration": 263, "id":
1929
+ "3d562866-5bdf-3a36-0ec5-9acf53386ec2", "title": "Indian Girl", "track_ref_id":
1930
+ "32202859", "main_genre": "rock", "original_release_year": 1980, "entity_type":
1931
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
1932
+ Stones", "isrc": "GBUM70909388", "track_artist_ref_id": "33474", "release_year":
1933
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1934
+ 0.32, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1935
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1936
+ 83.354, "label_name": "Capitol", "track_index": "2", "duration": 196, "id":
1937
+ "744de873-7235-1969-cedf-c6801dfdada3", "title": "Summer Romance", "track_ref_id":
1938
+ "32202853", "main_genre": "rock", "performer_name": "The Rolling Stones",
1939
+ "original_release_year": 1980, "entity_type": "track", "artist_name": "The
1940
+ Rolling Stones", "isrc": "GBUM70909385", "track_artist_ref_id": "33474", "release_year":
1941
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1942
+ 0.31, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1943
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1944
+ 80.124, "label_name": "Capitol", "track_index": "6", "duration": 209, "id":
1945
+ "2362e93c-1476-db02-bd1b-647593a64efe", "title": "Where the Boys Go", "track_ref_id":
1946
+ "32202861", "main_genre": "rock", "original_release_year": 1980, "entity_type":
1947
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
1948
+ Stones", "isrc": "GBUM70909389", "track_artist_ref_id": "33474", "release_year":
1949
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1950
+ 0.29, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1951
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1952
+ 86.857, "label_name": "Capitol", "track_index": "10", "duration": 258, "id":
1953
+ "1da77c83-ab33-36fd-3af4-85f5ea71972c", "title": "All About You", "track_ref_id":
1954
+ "32202869", "main_genre": "rock", "performer_name": "The Rolling Stones",
1955
+ "original_release_year": 1980, "entity_type": "track", "artist_name": "The
1956
+ Rolling Stones", "isrc": "GBUM70909393", "track_artist_ref_id": "33474", "release_year":
1957
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1958
+ 0.3, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1959
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1960
+ 107.666, "label_name": "Capitol", "track_index": "1", "duration": 263, "id":
1961
+ "4b091198-0448-9494-cb1c-cc7dd1356455", "title": "Dance (Pt. 1)", "track_ref_id":
1962
+ "32202851", "main_genre": "rock", "performer_name": "The Rolling Stones",
1963
+ "original_release_year": 2009, "entity_type": "track", "artist_name": "The
1964
+ Rolling Stones", "isrc": "GBUM70909384", "track_artist_ref_id": "33474", "release_year":
1965
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1966
+ 0.37, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1967
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1968
+ 93.963, "label_name": "Capitol", "track_index": "3", "duration": 223, "id":
1969
+ "99f024c5-a02f-3a06-a232-9cc1f14de80e", "title": "Send It to Me", "track_ref_id":
1970
+ "32202855", "main_genre": "rock", "original_release_year": 1980, "entity_type":
1971
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
1972
+ Stones", "isrc": "GBUM70909386", "track_artist_ref_id": "33474", "release_year":
1973
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1974
+ 0.33, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1975
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1976
+ 114.84, "label_name": "Capitol", "track_index": "8", "duration": 339, "id":
1977
+ "6bafa653-0c6d-6df3-41db-8412f7c00a84", "title": "Emotional Rescue", "track_ref_id":
1978
+ "32202865", "main_genre": "rock", "original_release_year": 1980, "entity_type":
1979
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
1980
+ Stones", "isrc": "GBUM70909391", "track_artist_ref_id": "33474", "release_year":
1981
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
1982
+ 0.44, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
1983
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
1984
+ 74.359, "label_name": "Capitol", "track_index": "4", "duration": 232, "id":
1985
+ "02b2263b-3f44-876b-595b-658340e4e6a6", "title": "Let Me Go", "track_ref_id":
1986
+ "32202857", "main_genre": "rock", "original_release_year": 2009, "entity_type":
1987
+ "track", "performer_name": "The Rolling Stones", "track_musicbrainz_id": "2276d4a3-370b-46f4-84a2-98d886577c0f",
1988
+ "artist_name": "The Rolling Stones", "isrc": "GBUM70909387", "track_artist_ref_id":
1989
+ "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
1990
+ "popularity": 0.31, "track_album_ref_id": "32202849", "album_title": "Emotional
1991
+ Rescue"}]}'
1992
+ http_version:
1993
+ recorded_at: Thu, 16 Apr 2015 03:07:54 GMT
1994
+ - request:
1995
+ method: get
1996
+ uri: http://api.musicgraph.com/api/v2/album/7cfb88ac-1d50-f210-42d6-57a718fa141c/tracks?api_key=<API_KEY>
1997
+ body:
1998
+ encoding: US-ASCII
1999
+ string: ''
2000
+ headers:
2001
+ User-Agent:
2002
+ - Faraday v0.9.1
2003
+ Accept-Encoding:
2004
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2005
+ Accept:
2006
+ - "*/*"
2007
+ response:
2008
+ status:
2009
+ code: 200
2010
+ message: OK
2011
+ headers:
2012
+ Access-Control-Allow-Headers:
2013
+ - accept, origin, content-type, x-requested-with, x-requested-by
2014
+ Access-Control-Allow-Methods:
2015
+ - GET, POST, PUT, DELETE, OPTIONS
2016
+ Access-Control-Allow-Origin:
2017
+ - "*"
2018
+ Content-Type:
2019
+ - application/json; charset=UTF-8
2020
+ Date:
2021
+ - Thu, 16 Apr 2015 03:08:09 GMT
2022
+ Server:
2023
+ - nginx/1.5.11
2024
+ X-App-Box:
2025
+ - prod.v3.1a.api.musicgraph.com
2026
+ X-Branch:
2027
+ - 0bb18cbb3d226d8f0d560fb2ca551a5fe504e506
2028
+ X-Environment:
2029
+ - prod
2030
+ Content-Length:
2031
+ - '6319'
2032
+ Connection:
2033
+ - keep-alive
2034
+ body:
2035
+ encoding: UTF-8
2036
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
2037
+ {"count": 10, "total": 10, "offset": 1}, "data": [{"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
2038
+ "primary_tempo": 69.837, "label_name": "Capitol", "track_index": "9", "duration":
2039
+ 254, "id": "6d1252b1-40d8-a029-5a67-773ef8ae92bb", "title": "She''s So Cold",
2040
+ "track_ref_id": "32202867", "main_genre": "rock", "original_release_year":
2041
+ 1980, "entity_type": "track", "performer_name": "The Rolling Stones", "artist_name":
2042
+ "The Rolling Stones", "isrc": "GBUM70909392", "track_artist_ref_id": "33474",
2043
+ "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
2044
+ "popularity": 0.41, "track_album_ref_id": "32202849", "album_title": "Emotional
2045
+ Rescue"}, {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "release_year":
2046
+ 2009, "primary_tempo": 61.81, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
2047
+ "id": "fc13444d-2d36-a278-283a-4714c9dc4ff5", "popularity": 0.3, "original_release_year":
2048
+ 1980, "artist_name": "The Rolling Stones", "isrc": "GBCJN8000007", "performer_name":
2049
+ "The Rolling Stones", "album_title": "Emotional Rescue", "duration": 238,
2050
+ "title": "Down in the Hole", "track_index": "7", "entity_type": "track"},
2051
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2052
+ 97.97, "label_name": "Capitol", "track_index": "5", "duration": 263, "id":
2053
+ "3d562866-5bdf-3a36-0ec5-9acf53386ec2", "title": "Indian Girl", "track_ref_id":
2054
+ "32202859", "main_genre": "rock", "original_release_year": 1980, "entity_type":
2055
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
2056
+ Stones", "isrc": "GBUM70909388", "track_artist_ref_id": "33474", "release_year":
2057
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2058
+ 0.32, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2059
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2060
+ 83.354, "label_name": "Capitol", "track_index": "2", "duration": 196, "id":
2061
+ "744de873-7235-1969-cedf-c6801dfdada3", "title": "Summer Romance", "track_ref_id":
2062
+ "32202853", "main_genre": "rock", "performer_name": "The Rolling Stones",
2063
+ "original_release_year": 1980, "entity_type": "track", "artist_name": "The
2064
+ Rolling Stones", "isrc": "GBUM70909385", "track_artist_ref_id": "33474", "release_year":
2065
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2066
+ 0.31, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2067
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2068
+ 80.124, "label_name": "Capitol", "track_index": "6", "duration": 209, "id":
2069
+ "2362e93c-1476-db02-bd1b-647593a64efe", "title": "Where the Boys Go", "track_ref_id":
2070
+ "32202861", "main_genre": "rock", "original_release_year": 1980, "entity_type":
2071
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
2072
+ Stones", "isrc": "GBUM70909389", "track_artist_ref_id": "33474", "release_year":
2073
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2074
+ 0.29, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2075
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2076
+ 86.857, "label_name": "Capitol", "track_index": "10", "duration": 258, "id":
2077
+ "1da77c83-ab33-36fd-3af4-85f5ea71972c", "title": "All About You", "track_ref_id":
2078
+ "32202869", "main_genre": "rock", "performer_name": "The Rolling Stones",
2079
+ "original_release_year": 1980, "entity_type": "track", "artist_name": "The
2080
+ Rolling Stones", "isrc": "GBUM70909393", "track_artist_ref_id": "33474", "release_year":
2081
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2082
+ 0.3, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2083
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2084
+ 107.666, "label_name": "Capitol", "track_index": "1", "duration": 263, "id":
2085
+ "4b091198-0448-9494-cb1c-cc7dd1356455", "title": "Dance (Pt. 1)", "track_ref_id":
2086
+ "32202851", "main_genre": "rock", "performer_name": "The Rolling Stones",
2087
+ "original_release_year": 2009, "entity_type": "track", "artist_name": "The
2088
+ Rolling Stones", "isrc": "GBUM70909384", "track_artist_ref_id": "33474", "release_year":
2089
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2090
+ 0.37, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2091
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2092
+ 93.963, "label_name": "Capitol", "track_index": "3", "duration": 223, "id":
2093
+ "99f024c5-a02f-3a06-a232-9cc1f14de80e", "title": "Send It to Me", "track_ref_id":
2094
+ "32202855", "main_genre": "rock", "original_release_year": 1980, "entity_type":
2095
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
2096
+ Stones", "isrc": "GBUM70909386", "track_artist_ref_id": "33474", "release_year":
2097
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2098
+ 0.33, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2099
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2100
+ 114.84, "label_name": "Capitol", "track_index": "8", "duration": 339, "id":
2101
+ "6bafa653-0c6d-6df3-41db-8412f7c00a84", "title": "Emotional Rescue", "track_ref_id":
2102
+ "32202865", "main_genre": "rock", "original_release_year": 1980, "entity_type":
2103
+ "track", "performer_name": "The Rolling Stones", "artist_name": "The Rolling
2104
+ Stones", "isrc": "GBUM70909391", "track_artist_ref_id": "33474", "release_year":
2105
+ 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c", "popularity":
2106
+ 0.44, "track_album_ref_id": "32202849", "album_title": "Emotional Rescue"},
2107
+ {"track_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67", "primary_tempo":
2108
+ 74.359, "label_name": "Capitol", "track_index": "4", "duration": 232, "id":
2109
+ "02b2263b-3f44-876b-595b-658340e4e6a6", "title": "Let Me Go", "track_ref_id":
2110
+ "32202857", "main_genre": "rock", "original_release_year": 2009, "entity_type":
2111
+ "track", "performer_name": "The Rolling Stones", "track_musicbrainz_id": "2276d4a3-370b-46f4-84a2-98d886577c0f",
2112
+ "artist_name": "The Rolling Stones", "isrc": "GBUM70909387", "track_artist_ref_id":
2113
+ "33474", "release_year": 2009, "track_album_id": "7cfb88ac-1d50-f210-42d6-57a718fa141c",
2114
+ "popularity": 0.31, "track_album_ref_id": "32202849", "album_title": "Emotional
2115
+ Rescue"}]}'
2116
+ http_version:
2117
+ recorded_at: Thu, 16 Apr 2015 03:08:14 GMT
2118
+ - request:
2119
+ method: get
2120
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&limit=5&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2121
+ body:
2122
+ encoding: US-ASCII
2123
+ string: ''
2124
+ headers:
2125
+ User-Agent:
2126
+ - Faraday v0.9.1
2127
+ Accept-Encoding:
2128
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2129
+ Accept:
2130
+ - "*/*"
2131
+ response:
2132
+ status:
2133
+ code: 200
2134
+ message: OK
2135
+ headers:
2136
+ Access-Control-Allow-Headers:
2137
+ - accept, origin, content-type, x-requested-with, x-requested-by
2138
+ Access-Control-Allow-Methods:
2139
+ - GET, POST, PUT, DELETE, OPTIONS
2140
+ Access-Control-Allow-Origin:
2141
+ - "*"
2142
+ Content-Type:
2143
+ - application/json; charset=UTF-8
2144
+ Date:
2145
+ - Sun, 07 Jun 2015 20:42:22 GMT
2146
+ Server:
2147
+ - nginx/1.5.11
2148
+ X-App-Box:
2149
+ - prod.v3.1d.api.musicgraph.com
2150
+ X-Branch:
2151
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2152
+ X-Environment:
2153
+ - prod
2154
+ Content-Length:
2155
+ - '1817'
2156
+ Connection:
2157
+ - keep-alive
2158
+ body:
2159
+ encoding: UTF-8
2160
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2161
+ {"count": 5, "offset": 1}, "data": [{"release_year": 1967, "title": "Doors",
2162
+ "similarity": 0.8, "album_artist_id": "e462f24f-a6b5-11e0-b446-00251188dd67",
2163
+ "id": "44354016-526d-7db7-982a-976e8337dd70", "number_of_tracks": "11", "entity_type":
2164
+ "album", "album_ref_id": "7679753", "performer_name": "The Doors", "main_genre":
2165
+ "rock", "product_form": "Album"}, {"release_year": 1967, "title": "Surrealistic
2166
+ Pillow", "similarity": 0.8, "album_artist_id": "ae24a6a5-02d3-4c57-a8c3-2a6734143c5f",
2167
+ "id": "3b49d77c-4885-ab51-e54a-5da7fb467bb1", "number_of_tracks": "11", "entity_type":
2168
+ "album", "album_ref_id": "31006189", "performer_name": "Jefferson Airplane",
2169
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2170
+ "Their Satanic Majesties Request", "similarity": 0.8, "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
2171
+ "id": "7fa4a465-2be1-1531-7fee-376f22810732", "number_of_tracks": "10", "entity_type":
2172
+ "album", "album_ref_id": "6459063", "performer_name": "The Rolling Stones",
2173
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2174
+ "Piper at the Gates of Dawn", "similarity": 0.8, "album_artist_id": "e2661344-a6b5-11e0-b446-00251188dd67",
2175
+ "id": "0ce62699-8c96-ecc0-d080-9bb3f24cd783", "number_of_tracks": "11", "entity_type":
2176
+ "album", "album_ref_id": "4994353", "performer_name": "Pink Floyd", "main_genre":
2177
+ "rock", "product_form": "Album"}, {"release_year": 1967, "title": "Days of
2178
+ Future Passed", "similarity": 0.8, "album_artist_id": "93e1cc57-93ab-2cd4-c281-942b5836082f",
2179
+ "id": "0d96e3aa-1882-177d-8119-b38c0c55fc50", "number_of_tracks": "7", "entity_type":
2180
+ "album", "album_ref_id": "15223705", "performer_name": "The Moody Blues",
2181
+ "main_genre": "rock", "product_form": "Album"}]}'
2182
+ http_version:
2183
+ recorded_at: Sun, 07 Jun 2015 20:41:49 GMT
2184
+ - request:
2185
+ method: get
2186
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=5&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2187
+ body:
2188
+ encoding: US-ASCII
2189
+ string: ''
2190
+ headers:
2191
+ User-Agent:
2192
+ - Faraday v0.9.1
2193
+ Accept-Encoding:
2194
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2195
+ Accept:
2196
+ - "*/*"
2197
+ response:
2198
+ status:
2199
+ code: 200
2200
+ message: OK
2201
+ headers:
2202
+ Access-Control-Allow-Headers:
2203
+ - accept, origin, content-type, x-requested-with, x-requested-by
2204
+ Access-Control-Allow-Methods:
2205
+ - GET, POST, PUT, DELETE, OPTIONS
2206
+ Access-Control-Allow-Origin:
2207
+ - "*"
2208
+ Content-Type:
2209
+ - application/json; charset=UTF-8
2210
+ Date:
2211
+ - Sun, 07 Jun 2015 20:42:12 GMT
2212
+ Server:
2213
+ - nginx/1.5.11
2214
+ X-App-Box:
2215
+ - prod.v3.1c.api.musicgraph.com
2216
+ X-Branch:
2217
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2218
+ X-Environment:
2219
+ - prod
2220
+ Content-Length:
2221
+ - '111'
2222
+ Connection:
2223
+ - keep-alive
2224
+ body:
2225
+ encoding: UTF-8
2226
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2227
+ {"count": 0, "offset": 5}, "data": []}'
2228
+ http_version:
2229
+ recorded_at: Sun, 07 Jun 2015 20:41:50 GMT
2230
+ - request:
2231
+ method: get
2232
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2233
+ body:
2234
+ encoding: US-ASCII
2235
+ string: ''
2236
+ headers:
2237
+ User-Agent:
2238
+ - Faraday v0.9.1
2239
+ Accept-Encoding:
2240
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2241
+ Accept:
2242
+ - "*/*"
2243
+ response:
2244
+ status:
2245
+ code: 200
2246
+ message: OK
2247
+ headers:
2248
+ Access-Control-Allow-Headers:
2249
+ - accept, origin, content-type, x-requested-with, x-requested-by
2250
+ Access-Control-Allow-Methods:
2251
+ - GET, POST, PUT, DELETE, OPTIONS
2252
+ Access-Control-Allow-Origin:
2253
+ - "*"
2254
+ Content-Type:
2255
+ - application/json; charset=UTF-8
2256
+ Date:
2257
+ - Sun, 07 Jun 2015 20:44:28 GMT
2258
+ Server:
2259
+ - nginx/1.5.11
2260
+ X-App-Box:
2261
+ - prod.v3.1a.api.musicgraph.com
2262
+ X-Branch:
2263
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2264
+ X-Environment:
2265
+ - prod
2266
+ Content-Length:
2267
+ - '4198'
2268
+ Connection:
2269
+ - keep-alive
2270
+ body:
2271
+ encoding: UTF-8
2272
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2273
+ {"count": 12, "offset": 1}, "data": [{"release_year": 1967, "title": "Doors",
2274
+ "similarity": 0.8, "album_artist_id": "e462f24f-a6b5-11e0-b446-00251188dd67",
2275
+ "id": "44354016-526d-7db7-982a-976e8337dd70", "number_of_tracks": "11", "entity_type":
2276
+ "album", "album_ref_id": "7679753", "performer_name": "The Doors", "main_genre":
2277
+ "rock", "product_form": "Album"}, {"release_year": 1967, "title": "Surrealistic
2278
+ Pillow", "similarity": 0.8, "album_artist_id": "ae24a6a5-02d3-4c57-a8c3-2a6734143c5f",
2279
+ "id": "3b49d77c-4885-ab51-e54a-5da7fb467bb1", "number_of_tracks": "11", "entity_type":
2280
+ "album", "album_ref_id": "31006189", "performer_name": "Jefferson Airplane",
2281
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2282
+ "Their Satanic Majesties Request", "similarity": 0.8, "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
2283
+ "id": "7fa4a465-2be1-1531-7fee-376f22810732", "number_of_tracks": "10", "entity_type":
2284
+ "album", "album_ref_id": "6459063", "performer_name": "The Rolling Stones",
2285
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2286
+ "Piper at the Gates of Dawn", "similarity": 0.8, "album_artist_id": "e2661344-a6b5-11e0-b446-00251188dd67",
2287
+ "id": "0ce62699-8c96-ecc0-d080-9bb3f24cd783", "number_of_tracks": "11", "entity_type":
2288
+ "album", "album_ref_id": "4994353", "performer_name": "Pink Floyd", "main_genre":
2289
+ "rock", "product_form": "Album"}, {"release_year": 1967, "title": "Days of
2290
+ Future Passed", "similarity": 0.8, "album_artist_id": "93e1cc57-93ab-2cd4-c281-942b5836082f",
2291
+ "id": "0d96e3aa-1882-177d-8119-b38c0c55fc50", "number_of_tracks": "7", "entity_type":
2292
+ "album", "album_ref_id": "15223705", "performer_name": "The Moody Blues",
2293
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2294
+ "SMiLE [Not Released]", "similarity": 0.8, "album_artist_id": "a49320cc-c917-4b1b-bcef-ae21ce4dfe86",
2295
+ "id": "6042f35b-010b-b945-ce5a-64bba6b9c488", "number_of_tracks": "14", "entity_type":
2296
+ "album", "album_ref_id": "59665381", "performer_name": "The Beach Boys", "main_genre":
2297
+ "pop", "product_form": "Album"}, {"release_year": 1967, "title": "Magic Garden",
2298
+ "similarity": 0.7, "album_artist_id": "e7cee8bd-a6b5-11e0-b446-00251188dd67",
2299
+ "id": "da181ad6-54de-2fa6-c954-b5aa9e149def", "number_of_tracks": "12", "entity_type":
2300
+ "album", "album_ref_id": "11402595", "performer_name": "The 5th Dimension",
2301
+ "main_genre": "pop", "product_form": "Album"}, {"release_year": 1967, "title":
2302
+ "Of Cabbages and Kings", "similarity": 0.7, "album_artist_id": "e808751e-a6b5-11e0-b446-00251188dd67",
2303
+ "id": "563f0014-4706-c10a-a285-49ac92620315", "number_of_tracks": "17", "entity_type":
2304
+ "album", "album_ref_id": "38700231", "performer_name": "Chad & Jeremy", "main_genre":
2305
+ "pop", "product_form": "Album"}, {"release_year": 1967, "title": "Are You
2306
+ Experienced?", "similarity": 0.5, "album_artist_id": "333caa00-4211-ce3d-e60c-d07dd0d954c8",
2307
+ "id": "3be84976-a930-1ebd-41bd-f318553f882e", "number_of_tracks": "17", "entity_type":
2308
+ "album", "album_ref_id": "35619375", "performer_name": "The Jimi Hendrix Experience",
2309
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1968, "title":
2310
+ "S.F. Sorrow", "similarity": 0.5, "album_artist_id": "b7f94cee-f887-4768-fb8d-370492e38579",
2311
+ "id": "ca991371-a131-71fb-4aa0-43c033e6aa2e", "number_of_tracks": "17", "entity_type":
2312
+ "album", "album_ref_id": "80159857", "performer_name": "The Pretty Things",
2313
+ "main_genre": "pop", "product_form": "Album"}, {"release_year": 1968, "title":
2314
+ "Village Green Preservation Society", "similarity": 0.5, "album_artist_id":
2315
+ "e6f1b8c1-a6b5-11e0-b446-00251188dd67", "id": "736ec1d2-f201-10a4-ae3a-f1ef3559381e",
2316
+ "number_of_tracks": "15", "entity_type": "album", "album_ref_id": "19683453",
2317
+ "performer_name": "The Kinks", "main_genre": "rock", "product_form": "Album"},
2318
+ {"release_year": 1969, "title": "Odessa", "similarity": 0.5, "album_artist_id":
2319
+ "28614844-cbf7-fb1a-fd5e-fb36223df5a3", "id": "8f0eca9a-6b10-15fd-7b2e-32e57acb70de",
2320
+ "number_of_tracks": "17", "entity_type": "album", "album_ref_id": "12534915",
2321
+ "performer_name": "Bee Gees", "main_genre": "pop", "product_form": "Album"}]}'
2322
+ http_version:
2323
+ recorded_at: Sun, 07 Jun 2015 20:45:10 GMT
2324
+ - request:
2325
+ method: get
2326
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=5&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2327
+ body:
2328
+ encoding: US-ASCII
2329
+ string: ''
2330
+ headers:
2331
+ User-Agent:
2332
+ - Faraday v0.9.1
2333
+ Accept-Encoding:
2334
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2335
+ Accept:
2336
+ - "*/*"
2337
+ response:
2338
+ status:
2339
+ code: 200
2340
+ message: OK
2341
+ headers:
2342
+ Access-Control-Allow-Headers:
2343
+ - accept, origin, content-type, x-requested-with, x-requested-by
2344
+ Access-Control-Allow-Methods:
2345
+ - GET, POST, PUT, DELETE, OPTIONS
2346
+ Access-Control-Allow-Origin:
2347
+ - "*"
2348
+ Content-Type:
2349
+ - application/json; charset=UTF-8
2350
+ Date:
2351
+ - Sun, 07 Jun 2015 20:46:35 GMT
2352
+ Server:
2353
+ - nginx/1.5.11
2354
+ X-App-Box:
2355
+ - prod.v3.1d.api.musicgraph.com
2356
+ X-Branch:
2357
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2358
+ X-Environment:
2359
+ - prod
2360
+ Content-Length:
2361
+ - '111'
2362
+ Connection:
2363
+ - keep-alive
2364
+ body:
2365
+ encoding: UTF-8
2366
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
2367
+ {"count": 0, "offset": 5}, "data": []}'
2368
+ http_version:
2369
+ recorded_at: Sun, 07 Jun 2015 20:46:02 GMT
2370
+ - request:
2371
+ method: get
2372
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=5&similar_to=Sgt%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2373
+ body:
2374
+ encoding: US-ASCII
2375
+ string: ''
2376
+ headers:
2377
+ User-Agent:
2378
+ - Faraday v0.9.1
2379
+ Accept-Encoding:
2380
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2381
+ Accept:
2382
+ - "*/*"
2383
+ response:
2384
+ status:
2385
+ code: 200
2386
+ message: OK
2387
+ headers:
2388
+ Access-Control-Allow-Headers:
2389
+ - accept, origin, content-type, x-requested-with, x-requested-by
2390
+ Access-Control-Allow-Methods:
2391
+ - GET, POST, PUT, DELETE, OPTIONS
2392
+ Access-Control-Allow-Origin:
2393
+ - "*"
2394
+ Content-Type:
2395
+ - application/json; charset=UTF-8
2396
+ Date:
2397
+ - Sun, 07 Jun 2015 20:55:38 GMT
2398
+ Server:
2399
+ - nginx/1.5.11
2400
+ X-App-Box:
2401
+ - prod.v3.1c.api.musicgraph.com
2402
+ X-Branch:
2403
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2404
+ X-Environment:
2405
+ - prod
2406
+ Content-Length:
2407
+ - '111'
2408
+ Connection:
2409
+ - keep-alive
2410
+ body:
2411
+ encoding: UTF-8
2412
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2413
+ {"count": 0, "offset": 5}, "data": []}'
2414
+ http_version:
2415
+ recorded_at: Sun, 07 Jun 2015 20:55:15 GMT
2416
+ - request:
2417
+ method: get
2418
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=1&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2419
+ body:
2420
+ encoding: US-ASCII
2421
+ string: ''
2422
+ headers:
2423
+ User-Agent:
2424
+ - Faraday v0.9.1
2425
+ Accept-Encoding:
2426
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2427
+ Accept:
2428
+ - "*/*"
2429
+ response:
2430
+ status:
2431
+ code: 200
2432
+ message: OK
2433
+ headers:
2434
+ Access-Control-Allow-Headers:
2435
+ - accept, origin, content-type, x-requested-with, x-requested-by
2436
+ Access-Control-Allow-Methods:
2437
+ - GET, POST, PUT, DELETE, OPTIONS
2438
+ Access-Control-Allow-Origin:
2439
+ - "*"
2440
+ Content-Type:
2441
+ - application/json; charset=UTF-8
2442
+ Date:
2443
+ - Sun, 07 Jun 2015 20:57:47 GMT
2444
+ Server:
2445
+ - nginx/1.5.11
2446
+ X-App-Box:
2447
+ - prod.v3.1d.api.musicgraph.com
2448
+ X-Branch:
2449
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2450
+ X-Environment:
2451
+ - prod
2452
+ Content-Length:
2453
+ - '4198'
2454
+ Connection:
2455
+ - keep-alive
2456
+ body:
2457
+ encoding: UTF-8
2458
+ string: '{"status": {"api": "v2", "message": "Success", "code": 0}, "pagination":
2459
+ {"count": 12, "offset": 1}, "data": [{"release_year": 1967, "similarity":
2460
+ 0.8, "title": "Doors", "album_artist_id": "e462f24f-a6b5-11e0-b446-00251188dd67",
2461
+ "main_genre": "rock", "number_of_tracks": "11", "entity_type": "album", "album_ref_id":
2462
+ "7679753", "performer_name": "The Doors", "id": "44354016-526d-7db7-982a-976e8337dd70",
2463
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.8, "title":
2464
+ "Surrealistic Pillow", "album_artist_id": "ae24a6a5-02d3-4c57-a8c3-2a6734143c5f",
2465
+ "main_genre": "rock", "number_of_tracks": "11", "entity_type": "album", "album_ref_id":
2466
+ "31006189", "performer_name": "Jefferson Airplane", "id": "3b49d77c-4885-ab51-e54a-5da7fb467bb1",
2467
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.8, "title":
2468
+ "Their Satanic Majesties Request", "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
2469
+ "main_genre": "rock", "number_of_tracks": "10", "entity_type": "album", "album_ref_id":
2470
+ "6459063", "performer_name": "The Rolling Stones", "id": "7fa4a465-2be1-1531-7fee-376f22810732",
2471
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.8, "title":
2472
+ "Piper at the Gates of Dawn", "album_artist_id": "e2661344-a6b5-11e0-b446-00251188dd67",
2473
+ "main_genre": "rock", "number_of_tracks": "11", "entity_type": "album", "album_ref_id":
2474
+ "4994353", "performer_name": "Pink Floyd", "id": "0ce62699-8c96-ecc0-d080-9bb3f24cd783",
2475
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.8, "title":
2476
+ "Days of Future Passed", "album_artist_id": "93e1cc57-93ab-2cd4-c281-942b5836082f",
2477
+ "main_genre": "rock", "number_of_tracks": "7", "entity_type": "album", "album_ref_id":
2478
+ "15223705", "performer_name": "The Moody Blues", "id": "0d96e3aa-1882-177d-8119-b38c0c55fc50",
2479
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.8, "title":
2480
+ "SMiLE [Not Released]", "album_artist_id": "a49320cc-c917-4b1b-bcef-ae21ce4dfe86",
2481
+ "main_genre": "pop", "number_of_tracks": "14", "entity_type": "album", "album_ref_id":
2482
+ "59665381", "performer_name": "The Beach Boys", "id": "6042f35b-010b-b945-ce5a-64bba6b9c488",
2483
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.7, "title":
2484
+ "Magic Garden", "album_artist_id": "e7cee8bd-a6b5-11e0-b446-00251188dd67",
2485
+ "main_genre": "pop", "number_of_tracks": "12", "entity_type": "album", "album_ref_id":
2486
+ "11402595", "performer_name": "The 5th Dimension", "id": "da181ad6-54de-2fa6-c954-b5aa9e149def",
2487
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.7, "title":
2488
+ "Of Cabbages and Kings", "album_artist_id": "e808751e-a6b5-11e0-b446-00251188dd67",
2489
+ "main_genre": "pop", "number_of_tracks": "17", "entity_type": "album", "album_ref_id":
2490
+ "38700231", "performer_name": "Chad & Jeremy", "id": "563f0014-4706-c10a-a285-49ac92620315",
2491
+ "product_form": "Album"}, {"release_year": 1967, "similarity": 0.5, "title":
2492
+ "Are You Experienced?", "album_artist_id": "333caa00-4211-ce3d-e60c-d07dd0d954c8",
2493
+ "main_genre": "rock", "number_of_tracks": "17", "entity_type": "album", "album_ref_id":
2494
+ "35619375", "performer_name": "The Jimi Hendrix Experience", "id": "3be84976-a930-1ebd-41bd-f318553f882e",
2495
+ "product_form": "Album"}, {"release_year": 1968, "similarity": 0.5, "title":
2496
+ "S.F. Sorrow", "album_artist_id": "b7f94cee-f887-4768-fb8d-370492e38579",
2497
+ "main_genre": "pop", "number_of_tracks": "17", "entity_type": "album", "album_ref_id":
2498
+ "80159857", "performer_name": "The Pretty Things", "id": "ca991371-a131-71fb-4aa0-43c033e6aa2e",
2499
+ "product_form": "Album"}, {"release_year": 1968, "similarity": 0.5, "title":
2500
+ "Village Green Preservation Society", "album_artist_id": "e6f1b8c1-a6b5-11e0-b446-00251188dd67",
2501
+ "main_genre": "rock", "number_of_tracks": "15", "entity_type": "album", "album_ref_id":
2502
+ "19683453", "performer_name": "The Kinks", "id": "736ec1d2-f201-10a4-ae3a-f1ef3559381e",
2503
+ "product_form": "Album"}, {"release_year": 1969, "similarity": 0.5, "title":
2504
+ "Odessa", "album_artist_id": "28614844-cbf7-fb1a-fd5e-fb36223df5a3", "main_genre":
2505
+ "pop", "number_of_tracks": "17", "entity_type": "album", "album_ref_id": "12534915",
2506
+ "performer_name": "Bee Gees", "id": "8f0eca9a-6b10-15fd-7b2e-32e57acb70de",
2507
+ "product_form": "Album"}]}'
2508
+ http_version:
2509
+ recorded_at: Sun, 07 Jun 2015 20:57:14 GMT
2510
+ - request:
2511
+ method: get
2512
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=4&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2513
+ body:
2514
+ encoding: US-ASCII
2515
+ string: ''
2516
+ headers:
2517
+ User-Agent:
2518
+ - Faraday v0.9.1
2519
+ Accept-Encoding:
2520
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2521
+ Accept:
2522
+ - "*/*"
2523
+ response:
2524
+ status:
2525
+ code: 200
2526
+ message: OK
2527
+ headers:
2528
+ Access-Control-Allow-Headers:
2529
+ - accept, origin, content-type, x-requested-with, x-requested-by
2530
+ Access-Control-Allow-Methods:
2531
+ - GET, POST, PUT, DELETE, OPTIONS
2532
+ Access-Control-Allow-Origin:
2533
+ - "*"
2534
+ Content-Type:
2535
+ - application/json; charset=UTF-8
2536
+ Date:
2537
+ - Sun, 07 Jun 2015 20:58:28 GMT
2538
+ Server:
2539
+ - nginx/1.5.11
2540
+ X-App-Box:
2541
+ - prod.v3.1c.api.musicgraph.com
2542
+ X-Branch:
2543
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2544
+ X-Environment:
2545
+ - prod
2546
+ Content-Length:
2547
+ - '111'
2548
+ Connection:
2549
+ - keep-alive
2550
+ body:
2551
+ encoding: UTF-8
2552
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2553
+ {"count": 0, "offset": 4}, "data": []}'
2554
+ http_version:
2555
+ recorded_at: Sun, 07 Jun 2015 20:58:06 GMT
2556
+ - request:
2557
+ method: get
2558
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=3&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2559
+ body:
2560
+ encoding: US-ASCII
2561
+ string: ''
2562
+ headers:
2563
+ User-Agent:
2564
+ - Faraday v0.9.1
2565
+ Accept-Encoding:
2566
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2567
+ Accept:
2568
+ - "*/*"
2569
+ response:
2570
+ status:
2571
+ code: 200
2572
+ message: OK
2573
+ headers:
2574
+ Access-Control-Allow-Headers:
2575
+ - accept, origin, content-type, x-requested-with, x-requested-by
2576
+ Access-Control-Allow-Methods:
2577
+ - GET, POST, PUT, DELETE, OPTIONS
2578
+ Access-Control-Allow-Origin:
2579
+ - "*"
2580
+ Content-Type:
2581
+ - application/json; charset=UTF-8
2582
+ Date:
2583
+ - Sun, 07 Jun 2015 20:58:35 GMT
2584
+ Server:
2585
+ - nginx/1.5.11
2586
+ X-App-Box:
2587
+ - prod.v3.1c.api.musicgraph.com
2588
+ X-Branch:
2589
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2590
+ X-Environment:
2591
+ - prod
2592
+ Content-Length:
2593
+ - '111'
2594
+ Connection:
2595
+ - keep-alive
2596
+ body:
2597
+ encoding: UTF-8
2598
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2599
+ {"count": 0, "offset": 3}, "data": []}'
2600
+ http_version:
2601
+ recorded_at: Sun, 07 Jun 2015 20:58:12 GMT
2602
+ - request:
2603
+ method: get
2604
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=6&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2605
+ body:
2606
+ encoding: US-ASCII
2607
+ string: ''
2608
+ headers:
2609
+ User-Agent:
2610
+ - Faraday v0.9.1
2611
+ Accept-Encoding:
2612
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2613
+ Accept:
2614
+ - "*/*"
2615
+ response:
2616
+ status:
2617
+ code: 200
2618
+ message: OK
2619
+ headers:
2620
+ Access-Control-Allow-Headers:
2621
+ - accept, origin, content-type, x-requested-with, x-requested-by
2622
+ Access-Control-Allow-Methods:
2623
+ - GET, POST, PUT, DELETE, OPTIONS
2624
+ Access-Control-Allow-Origin:
2625
+ - "*"
2626
+ Content-Type:
2627
+ - application/json; charset=UTF-8
2628
+ Date:
2629
+ - Sun, 07 Jun 2015 20:58:41 GMT
2630
+ Server:
2631
+ - nginx/1.5.11
2632
+ X-App-Box:
2633
+ - prod.v3.1c.api.musicgraph.com
2634
+ X-Branch:
2635
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2636
+ X-Environment:
2637
+ - prod
2638
+ Content-Length:
2639
+ - '111'
2640
+ Connection:
2641
+ - keep-alive
2642
+ body:
2643
+ encoding: UTF-8
2644
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2645
+ {"count": 0, "offset": 6}, "data": []}'
2646
+ http_version:
2647
+ recorded_at: Sun, 07 Jun 2015 20:58:18 GMT
2648
+ - request:
2649
+ method: get
2650
+ uri: http://api.musicgraph.com/api/v2/album/search?api_key=<API_KEY>&offset=2&similar_to=Sgt.%20Pepper%27s%20Lonely%20Hearts%20Club%20Band
2651
+ body:
2652
+ encoding: US-ASCII
2653
+ string: ''
2654
+ headers:
2655
+ User-Agent:
2656
+ - Faraday v0.9.1
2657
+ Accept-Encoding:
2658
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
2659
+ Accept:
2660
+ - "*/*"
2661
+ response:
2662
+ status:
2663
+ code: 200
2664
+ message: OK
2665
+ headers:
2666
+ Access-Control-Allow-Headers:
2667
+ - accept, origin, content-type, x-requested-with, x-requested-by
2668
+ Access-Control-Allow-Methods:
2669
+ - GET, POST, PUT, DELETE, OPTIONS
2670
+ Access-Control-Allow-Origin:
2671
+ - "*"
2672
+ Content-Type:
2673
+ - application/json; charset=UTF-8
2674
+ Date:
2675
+ - Sun, 07 Jun 2015 20:57:42 GMT
2676
+ Server:
2677
+ - nginx/1.5.11
2678
+ X-App-Box:
2679
+ - prod.v3.1a.api.musicgraph.com
2680
+ X-Branch:
2681
+ - 21158ac83e0251e2849e5bb01ae582af0d6839d9
2682
+ X-Environment:
2683
+ - prod
2684
+ Content-Length:
2685
+ - '3877'
2686
+ Connection:
2687
+ - keep-alive
2688
+ body:
2689
+ encoding: UTF-8
2690
+ string: '{"status": {"code": 0, "message": "Success", "api": "v2"}, "pagination":
2691
+ {"count": 11, "offset": 2}, "data": [{"release_year": 1967, "title": "Surrealistic
2692
+ Pillow", "similarity": 0.8, "album_artist_id": "ae24a6a5-02d3-4c57-a8c3-2a6734143c5f",
2693
+ "id": "3b49d77c-4885-ab51-e54a-5da7fb467bb1", "number_of_tracks": "11", "entity_type":
2694
+ "album", "album_ref_id": "31006189", "performer_name": "Jefferson Airplane",
2695
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2696
+ "Their Satanic Majesties Request", "similarity": 0.8, "album_artist_id": "e88b6841-a6b5-11e0-b446-00251188dd67",
2697
+ "id": "7fa4a465-2be1-1531-7fee-376f22810732", "number_of_tracks": "10", "entity_type":
2698
+ "album", "album_ref_id": "6459063", "performer_name": "The Rolling Stones",
2699
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2700
+ "Piper at the Gates of Dawn", "similarity": 0.8, "album_artist_id": "e2661344-a6b5-11e0-b446-00251188dd67",
2701
+ "id": "0ce62699-8c96-ecc0-d080-9bb3f24cd783", "number_of_tracks": "11", "entity_type":
2702
+ "album", "album_ref_id": "4994353", "performer_name": "Pink Floyd", "main_genre":
2703
+ "rock", "product_form": "Album"}, {"release_year": 1967, "title": "Days of
2704
+ Future Passed", "similarity": 0.8, "album_artist_id": "93e1cc57-93ab-2cd4-c281-942b5836082f",
2705
+ "id": "0d96e3aa-1882-177d-8119-b38c0c55fc50", "number_of_tracks": "7", "entity_type":
2706
+ "album", "album_ref_id": "15223705", "performer_name": "The Moody Blues",
2707
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1967, "title":
2708
+ "SMiLE [Not Released]", "similarity": 0.8, "album_artist_id": "a49320cc-c917-4b1b-bcef-ae21ce4dfe86",
2709
+ "id": "6042f35b-010b-b945-ce5a-64bba6b9c488", "number_of_tracks": "14", "entity_type":
2710
+ "album", "album_ref_id": "59665381", "performer_name": "The Beach Boys", "main_genre":
2711
+ "pop", "product_form": "Album"}, {"release_year": 1967, "title": "Magic Garden",
2712
+ "similarity": 0.7, "album_artist_id": "e7cee8bd-a6b5-11e0-b446-00251188dd67",
2713
+ "id": "da181ad6-54de-2fa6-c954-b5aa9e149def", "number_of_tracks": "12", "entity_type":
2714
+ "album", "album_ref_id": "11402595", "performer_name": "The 5th Dimension",
2715
+ "main_genre": "pop", "product_form": "Album"}, {"release_year": 1967, "title":
2716
+ "Of Cabbages and Kings", "similarity": 0.7, "album_artist_id": "e808751e-a6b5-11e0-b446-00251188dd67",
2717
+ "id": "563f0014-4706-c10a-a285-49ac92620315", "number_of_tracks": "17", "entity_type":
2718
+ "album", "album_ref_id": "38700231", "performer_name": "Chad & Jeremy", "main_genre":
2719
+ "pop", "product_form": "Album"}, {"release_year": 1967, "title": "Are You
2720
+ Experienced?", "similarity": 0.5, "album_artist_id": "333caa00-4211-ce3d-e60c-d07dd0d954c8",
2721
+ "id": "3be84976-a930-1ebd-41bd-f318553f882e", "number_of_tracks": "17", "entity_type":
2722
+ "album", "album_ref_id": "35619375", "performer_name": "The Jimi Hendrix Experience",
2723
+ "main_genre": "rock", "product_form": "Album"}, {"release_year": 1968, "title":
2724
+ "S.F. Sorrow", "similarity": 0.5, "album_artist_id": "b7f94cee-f887-4768-fb8d-370492e38579",
2725
+ "id": "ca991371-a131-71fb-4aa0-43c033e6aa2e", "number_of_tracks": "17", "entity_type":
2726
+ "album", "album_ref_id": "80159857", "performer_name": "The Pretty Things",
2727
+ "main_genre": "pop", "product_form": "Album"}, {"release_year": 1968, "title":
2728
+ "Village Green Preservation Society", "similarity": 0.5, "album_artist_id":
2729
+ "e6f1b8c1-a6b5-11e0-b446-00251188dd67", "id": "736ec1d2-f201-10a4-ae3a-f1ef3559381e",
2730
+ "number_of_tracks": "15", "entity_type": "album", "album_ref_id": "19683453",
2731
+ "performer_name": "The Kinks", "main_genre": "rock", "product_form": "Album"},
2732
+ {"release_year": 1969, "title": "Odessa", "similarity": 0.5, "album_artist_id":
2733
+ "28614844-cbf7-fb1a-fd5e-fb36223df5a3", "id": "8f0eca9a-6b10-15fd-7b2e-32e57acb70de",
2734
+ "number_of_tracks": "17", "entity_type": "album", "album_ref_id": "12534915",
2735
+ "performer_name": "Bee Gees", "main_genre": "pop", "product_form": "Album"}]}'
2736
+ http_version:
2737
+ recorded_at: Sun, 07 Jun 2015 20:58:24 GMT
2738
+ recorded_with: VCR 2.9.3