songkickr 0.3.3 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +7 -0
  2. data/.bundle/config +2 -0
  3. data/.gitignore +1 -0
  4. data/.travis.yml +8 -0
  5. data/Gemfile.lock +42 -22
  6. data/LICENSE +1 -1
  7. data/README.rdoc +14 -9
  8. data/Rakefile +3 -4
  9. data/lib/songkickr/artist.rb +2 -2
  10. data/lib/songkickr/artist_result.rb +4 -24
  11. data/lib/songkickr/calendar_entry.rb +23 -0
  12. data/lib/songkickr/calendar_result.rb +10 -0
  13. data/lib/songkickr/concert_setlist_result.rb +5 -27
  14. data/lib/songkickr/event.rb +8 -14
  15. data/lib/songkickr/event_result.rb +5 -23
  16. data/lib/songkickr/location.rb +4 -4
  17. data/lib/songkickr/location_result.rb +5 -30
  18. data/lib/songkickr/metro_area.rb +28 -0
  19. data/lib/songkickr/metro_area_result.rb +12 -0
  20. data/lib/songkickr/performance.rb +17 -12
  21. data/lib/songkickr/remote.rb +18 -198
  22. data/lib/songkickr/remote_api/artist_details.rb +17 -0
  23. data/lib/songkickr/remote_api/event_details.rb +17 -0
  24. data/lib/songkickr/remote_api/past_events.rb +48 -0
  25. data/lib/songkickr/remote_api/similar_artists.rb +14 -0
  26. data/lib/songkickr/remote_api/upcoming_events.rb +125 -0
  27. data/lib/songkickr/remote_api/user_events_and_trackings.rb +143 -0
  28. data/lib/songkickr/remote_api/venue_details.rb +16 -0
  29. data/lib/songkickr/result_set.rb +27 -0
  30. data/lib/songkickr/setlist.rb +7 -12
  31. data/lib/songkickr/setlist_item.rb +1 -1
  32. data/lib/songkickr/tracking.rb +18 -0
  33. data/lib/songkickr/tracking_result.rb +24 -0
  34. data/lib/songkickr/venue.rb +10 -2
  35. data/lib/songkickr/venue_result.rb +32 -0
  36. data/lib/songkickr/version.rb +1 -1
  37. data/lib/songkickr.rb +24 -17
  38. data/songkickr.gemspec +17 -44
  39. data/test/fixtures/event_7391451.json +732 -1
  40. data/test/fixtures/location_search.json +38 -0
  41. data/test/fixtures/metro_area.json +11 -0
  42. data/test/fixtures/users_attendance_calendar.json +243 -0
  43. data/test/fixtures/vcr/artist_events.yml +1394 -0
  44. data/test/fixtures/vcr/artist_search.yml +38 -0
  45. data/test/fixtures/vcr/artists_gigography.yml +187 -0
  46. data/test/fixtures/vcr/concert_setlists.yml +47 -0
  47. data/test/fixtures/vcr/event_search.yml +110 -0
  48. data/test/fixtures/vcr/invalid_api_key.yml +6 -36
  49. data/test/fixtures/vcr/invalid_artist_id.yml +6 -6
  50. data/test/fixtures/vcr/invalid_event_id.yml +6 -6
  51. data/test/fixtures/vcr/invalid_user.yml +6 -6
  52. data/test/fixtures/vcr/invalid_venue_id.yml +6 -6
  53. data/test/fixtures/vcr/location_search.yml +42 -0
  54. data/test/fixtures/vcr/metro_areas_events.yml +1535 -0
  55. data/test/fixtures/vcr/similar_artists.yml +64 -0
  56. data/test/fixtures/vcr/users_artist_tracking.yml +99 -0
  57. data/test/fixtures/vcr/users_attendance.yml +66 -0
  58. data/test/fixtures/vcr/users_attendance_calendar.yml +51 -0
  59. data/test/fixtures/vcr/users_events.yml +809 -0
  60. data/test/fixtures/vcr/users_gigography.yml +2782 -0
  61. data/test/fixtures/vcr/users_metro_area_tracking.yml +66 -0
  62. data/test/fixtures/vcr/users_muted_artists.yml +66 -0
  63. data/test/fixtures/vcr/users_tracked_artists.yml +75 -0
  64. data/test/fixtures/vcr/users_tracked_events_calendar.yml +1901 -0
  65. data/test/fixtures/vcr/users_tracked_metro_areas.yml +37 -0
  66. data/test/fixtures/vcr/valid_artist.yml +9 -9
  67. data/test/fixtures/vcr/valid_event.yml +103 -38
  68. data/test/fixtures/vcr/valid_user.yml +634 -44
  69. data/test/fixtures/vcr/valid_venue.yml +25 -26
  70. data/test/fixtures/vcr/venue_calendar.yml +500 -0
  71. data/test/fixtures/vcr/venue_search.yml +42 -0
  72. data/test/helper.rb +1 -27
  73. data/test/songkickr/test_calendar_entry.rb +15 -0
  74. data/test/songkickr/test_event.rb +8 -9
  75. data/test/songkickr/test_location.rb +11 -11
  76. data/test/songkickr/test_metro_area.rb +17 -0
  77. data/test/songkickr/test_remote.rb +149 -3
  78. data/test/songkickr/test_setlist_item.rb +20 -0
  79. data/test/songkickr/test_venue.rb +1 -2
  80. data/test.rb +3 -5
  81. metadata +120 -152
  82. data/bin/autospec +0 -16
  83. data/bin/convert_to_should_syntax +0 -16
  84. data/bin/guard +0 -16
  85. data/bin/htmldiff +0 -16
  86. data/bin/httparty +0 -16
  87. data/bin/jeweler +0 -16
  88. data/bin/ldiff +0 -16
  89. data/bin/rake +0 -16
  90. data/bin/rake2thor +0 -16
  91. data/bin/rg +0 -16
  92. data/bin/ri +0 -16
  93. data/bin/rspec +0 -16
  94. data/bin/thor +0 -16
  95. data/doc/APIError.html +0 -241
  96. data/doc/APIKeyNotSet.html +0 -203
  97. data/doc/LICENSE.html +0 -133
  98. data/doc/README_rdoc.html +0 -173
  99. data/doc/ResourceNotFound.html +0 -203
  100. data/doc/Songkickr/Artist.html +0 -278
  101. data/doc/Songkickr/ArtistResult.html +0 -308
  102. data/doc/Songkickr/ConcertSetlistResult.html +0 -283
  103. data/doc/Songkickr/Event.html +0 -491
  104. data/doc/Songkickr/EventResult.html +0 -306
  105. data/doc/Songkickr/Location.html +0 -299
  106. data/doc/Songkickr/LocationResult.html +0 -309
  107. data/doc/Songkickr/Performance.html +0 -295
  108. data/doc/Songkickr/Remote.html +0 -864
  109. data/doc/Songkickr/Setlist.html +0 -360
  110. data/doc/Songkickr/SetlistItem.html +0 -244
  111. data/doc/Songkickr/Venue.html +0 -265
  112. data/doc/Songkickr.html +0 -261
  113. data/doc/created.rid +0 -16
  114. data/doc/images/add.png +0 -0
  115. data/doc/images/brick.png +0 -0
  116. data/doc/images/brick_link.png +0 -0
  117. data/doc/images/bug.png +0 -0
  118. data/doc/images/bullet_black.png +0 -0
  119. data/doc/images/bullet_toggle_minus.png +0 -0
  120. data/doc/images/bullet_toggle_plus.png +0 -0
  121. data/doc/images/date.png +0 -0
  122. data/doc/images/delete.png +0 -0
  123. data/doc/images/find.png +0 -0
  124. data/doc/images/loadingAnimation.gif +0 -0
  125. data/doc/images/macFFBgHack.png +0 -0
  126. data/doc/images/package.png +0 -0
  127. data/doc/images/page_green.png +0 -0
  128. data/doc/images/page_white_text.png +0 -0
  129. data/doc/images/page_white_width.png +0 -0
  130. data/doc/images/plugin.png +0 -0
  131. data/doc/images/ruby.png +0 -0
  132. data/doc/images/tag_blue.png +0 -0
  133. data/doc/images/tag_green.png +0 -0
  134. data/doc/images/transparent.png +0 -0
  135. data/doc/images/wrench.png +0 -0
  136. data/doc/images/wrench_orange.png +0 -0
  137. data/doc/images/zoom.png +0 -0
  138. data/doc/index.html +0 -110
  139. data/doc/js/darkfish.js +0 -153
  140. data/doc/js/jquery.js +0 -18
  141. data/doc/js/navigation.js +0 -142
  142. data/doc/js/quicksearch.js +0 -114
  143. data/doc/js/search.js +0 -94
  144. data/doc/js/search_index.js +0 -1
  145. data/doc/js/searcher.js +0 -228
  146. data/doc/js/thickbox-compressed.js +0 -10
  147. data/doc/lib/songkickr/artist_rb.html +0 -52
  148. data/doc/lib/songkickr/artist_result_rb.html +0 -52
  149. data/doc/lib/songkickr/concert_setlist_result_rb.html +0 -52
  150. data/doc/lib/songkickr/event_rb.html +0 -52
  151. data/doc/lib/songkickr/event_result_rb.html +0 -52
  152. data/doc/lib/songkickr/location_rb.html +0 -52
  153. data/doc/lib/songkickr/location_result_rb.html +0 -52
  154. data/doc/lib/songkickr/performance_rb.html +0 -52
  155. data/doc/lib/songkickr/remote_rb.html +0 -52
  156. data/doc/lib/songkickr/setlist_item_rb.html +0 -52
  157. data/doc/lib/songkickr/setlist_rb.html +0 -52
  158. data/doc/lib/songkickr/venue_rb.html +0 -52
  159. data/doc/lib/songkickr_rb.html +0 -56
  160. data/doc/rdoc.css +0 -543
  161. data/doc/table_of_contents.html +0 -185
  162. data/test/fixtures/locations_bar.json +0 -1
@@ -0,0 +1,66 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.songkick.com/api/3.0users/jrmehle/trackings/metro_area:35130.json?apikey=hFYxiInE4DBpH5KL
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 404
13
+ message: Not Found
14
+ headers:
15
+ date:
16
+ - Sun, 28 Jul 2013 05:55:31 GMT
17
+ status:
18
+ - 404 Not Found
19
+ content-type:
20
+ - application/json; charset=utf-8
21
+ x-cascade:
22
+ - pass
23
+ connection:
24
+ - close
25
+ transfer-encoding:
26
+ - chunked
27
+ body:
28
+ encoding: US-ASCII
29
+ string: ! '{"resultsPage":{"status":"error","error":{"message":"Resource not
30
+ found"}}}'
31
+ http_version: '1.1'
32
+ recorded_at: Sun, 28 Jul 2013 05:55:32 GMT
33
+ - request:
34
+ method: get
35
+ uri: http://api.songkick.com/api/3.0/users/jrmehle/trackings/metro_area:35130.json?apikey=hFYxiInE4DBpH5KL
36
+ body:
37
+ encoding: US-ASCII
38
+ string: ''
39
+ headers: {}
40
+ response:
41
+ status:
42
+ code: 200
43
+ message: OK
44
+ headers:
45
+ date:
46
+ - Sun, 28 Jul 2013 05:58:41 GMT
47
+ status:
48
+ - 200 OK
49
+ content-type:
50
+ - application/json; charset=utf-8
51
+ cache-control:
52
+ - private, max-age=600
53
+ expires:
54
+ - Sun, 28 Jul 2013 06:08:41 GMT
55
+ vary:
56
+ - Accept-Encoding
57
+ connection:
58
+ - close
59
+ transfer-encoding:
60
+ - chunked
61
+ body:
62
+ encoding: US-ASCII
63
+ string: ! '{"resultsPage":{"status":"ok","results":{"tracking":{"username":"jrmehle","id":"metro_area:35130","createdAt":"2009-06-11T17:17:52Z"}}}}'
64
+ http_version: '1.1'
65
+ recorded_at: Sun, 28 Jul 2013 05:58:41 GMT
66
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,66 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.songkick.com/api/3.0/users/jrmehle/artists/muted.json?apikey=hFYxiInE4DBpH5KL
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ date:
16
+ - Sun, 28 Jul 2013 06:04:08 GMT
17
+ status:
18
+ - 200 OK
19
+ content-type:
20
+ - application/json; charset=utf-8
21
+ cache-control:
22
+ - private, max-age=600
23
+ expires:
24
+ - Sun, 28 Jul 2013 06:14:08 GMT
25
+ vary:
26
+ - Accept-Encoding
27
+ connection:
28
+ - close
29
+ transfer-encoding:
30
+ - chunked
31
+ body:
32
+ encoding: US-ASCII
33
+ string: ! '{"resultsPage":{"status":"ok","results":{"artist":[{"onTourUntil":"2013-08-04","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:bf600e2b-dc2d-4839-a1be-6ebef4087cd0/setlists.json","mbid":"bf600e2b-dc2d-4839-a1be-6ebef4087cd0","href":"http://api.songkick.com/api/3.0/artists/mbid:bf600e2b-dc2d-4839-a1be-6ebef4087cd0.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:bf600e2b-dc2d-4839-a1be-6ebef4087cd0/calendar.json"}],"uri":"http://www.songkick.com/artists/486064-311?utm_source=4791&utm_medium=partner","displayName":"311","id":486064},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:18c7e22d-6831-4746-b389-6ec11132409c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:18c7e22d-6831-4746-b389-6ec11132409c/setlists.json","mbid":"18c7e22d-6831-4746-b389-6ec11132409c","href":"http://api.songkick.com/api/3.0/artists/mbid:18c7e22d-6831-4746-b389-6ec11132409c.json"}],"uri":"http://www.songkick.com/artists/1728952-a-bitter-farewell?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A BITTER
34
+ FAREWELL","id":1728952},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b9b3b00c-e8c4-4fc8-9fc7-8bfca768ad6e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b9b3b00c-e8c4-4fc8-9fc7-8bfca768ad6e/setlists.json","mbid":"b9b3b00c-e8c4-4fc8-9fc7-8bfca768ad6e","href":"http://api.songkick.com/api/3.0/artists/mbid:b9b3b00c-e8c4-4fc8-9fc7-8bfca768ad6e.json"}],"uri":"http://www.songkick.com/artists/2172129-a-girl-a-gun-a-ghost?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
35
+ Girl A Gun A Ghost","id":2172129},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8636c3d6-ff5c-4b14-b47d-135981329dfb/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8636c3d6-ff5c-4b14-b47d-135981329dfb/setlists.json","mbid":"8636c3d6-ff5c-4b14-b47d-135981329dfb","href":"http://api.songkick.com/api/3.0/artists/mbid:8636c3d6-ff5c-4b14-b47d-135981329dfb.json"}],"uri":"http://www.songkick.com/artists/9646-a-stained-glass-romance?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
36
+ Stained Glass Romance","id":9646},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8c0243e-cc65-4573-9b03-f695edbcfe23/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8c0243e-cc65-4573-9b03-f695edbcfe23/setlists.json","mbid":"e8c0243e-cc65-4573-9b03-f695edbcfe23","href":"http://api.songkick.com/api/3.0/artists/mbid:e8c0243e-cc65-4573-9b03-f695edbcfe23.json"}],"uri":"http://www.songkick.com/artists/649473-akissforjersey?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Akissforjersey","id":649473},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3f20aae7-694e-4a37-9b82-02029cf8cd4c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3f20aae7-694e-4a37-9b82-02029cf8cd4c/setlists.json","mbid":"3f20aae7-694e-4a37-9b82-02029cf8cd4c","href":"http://api.songkick.com/api/3.0/artists/mbid:3f20aae7-694e-4a37-9b82-02029cf8cd4c.json"}],"uri":"http://www.songkick.com/artists/556409-all-ends?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"All
37
+ Ends","id":556409},{"onTourUntil":null,"identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ed426a89-d522-4ca5-8c6b-d7910e084446/setlists.json","mbid":"ed426a89-d522-4ca5-8c6b-d7910e084446","href":"http://api.songkick.com/api/3.0/artists/mbid:ed426a89-d522-4ca5-8c6b-d7910e084446.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ed426a89-d522-4ca5-8c6b-d7910e084446/calendar.json"}],"uri":"http://www.songkick.com/artists/2326762-artist-vs-poet?utm_source=4791&utm_medium=partner","displayName":"Artist
38
+ vs. Poet","id":2326762},{"onTourUntil":"2013-12-05","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:24e1b53c-3085-4581-8472-0b0088d2508c/setlists.json","mbid":"24e1b53c-3085-4581-8472-0b0088d2508c","href":"http://api.songkick.com/api/3.0/artists/mbid:24e1b53c-3085-4581-8472-0b0088d2508c.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:24e1b53c-3085-4581-8472-0b0088d2508c/calendar.json"}],"uri":"http://www.songkick.com/artists/425252-avenged-sevenfold?utm_source=4791&utm_medium=partner","displayName":"Avenged
39
+ Sevenfold","id":425252},{"displayName":"Better Than Ezra","identifier":[{"mbid":"7986c185-d91d-4204-8ee2-eac5d503fe39","href":"http://api.songkick.com/api/3.0/artists/mbid:7986c185-d91d-4204-8ee2-eac5d503fe39.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:7986c185-d91d-4204-8ee2-eac5d503fe39/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:7986c185-d91d-4204-8ee2-eac5d503fe39/setlists.json"}],"uri":"http://www.songkick.com/artists/428436-better-than-ezra?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-30","id":428436},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:091547f6-bf0d-47e3-bb4d-e3b5c5f4caab/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:091547f6-bf0d-47e3-bb4d-e3b5c5f4caab/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:091547f6-bf0d-47e3-bb4d-e3b5c5f4caab.json","mbid":"091547f6-bf0d-47e3-bb4d-e3b5c5f4caab"}],"onTourUntil":null,"displayName":"Black
40
+ Tide","uri":"http://www.songkick.com/artists/584610-black-tide?utm_source=4791&utm_medium=partner","id":584610},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3dd5e428-5770-4cfe-bc65-5972f00fbfe1/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3dd5e428-5770-4cfe-bc65-5972f00fbfe1/setlists.json","mbid":"3dd5e428-5770-4cfe-bc65-5972f00fbfe1","href":"http://api.songkick.com/api/3.0/artists/mbid:3dd5e428-5770-4cfe-bc65-5972f00fbfe1.json"}],"uri":"http://www.songkick.com/artists/421159-bleed-the-sky?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Bleed
41
+ The Sky","id":421159},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f493d7f9-2961-4b21-9693-c902375bfc1d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f493d7f9-2961-4b21-9693-c902375bfc1d/setlists.json","mbid":"f493d7f9-2961-4b21-9693-c902375bfc1d","href":"http://api.songkick.com/api/3.0/artists/mbid:f493d7f9-2961-4b21-9693-c902375bfc1d.json"}],"uri":"http://www.songkick.com/artists/456680-blinded-colony?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Blinded
42
+ Colony","id":456680},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:66fe70e3-295b-47f0-81a8-9d06bd77cd44/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:66fe70e3-295b-47f0-81a8-9d06bd77cd44/setlists.json","mbid":"66fe70e3-295b-47f0-81a8-9d06bd77cd44","href":"http://api.songkick.com/api/3.0/artists/mbid:66fe70e3-295b-47f0-81a8-9d06bd77cd44.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a32a5ed0-bc05-493c-a619-4a5e44802c25/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a32a5ed0-bc05-493c-a619-4a5e44802c25/setlists.json","mbid":"a32a5ed0-bc05-493c-a619-4a5e44802c25","href":"http://api.songkick.com/api/3.0/artists/mbid:a32a5ed0-bc05-493c-a619-4a5e44802c25.json"}],"uri":"http://www.songkick.com/artists/113676-bloodsimple?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Bloodsimple","id":113676},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:0509d076-7e31-4f53-bad3-80ee246e23b7/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:0509d076-7e31-4f53-bad3-80ee246e23b7/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:0509d076-7e31-4f53-bad3-80ee246e23b7.json","mbid":"0509d076-7e31-4f53-bad3-80ee246e23b7"}],"displayName":"Breathe
43
+ Carolina","onTourUntil":"2013-09-21","uri":"http://www.songkick.com/artists/861530-breathe-carolina?utm_source=4791&utm_medium=partner","id":861530},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:6d6d62b2-cff7-447b-ab26-72910aa15c31/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:6d6d62b2-cff7-447b-ab26-72910aa15c31/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:6d6d62b2-cff7-447b-ab26-72910aa15c31.json","mbid":"6d6d62b2-cff7-447b-ab26-72910aa15c31"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:19f8ae2a-39bd-4d9f-9286-0fa35d47fa33/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:19f8ae2a-39bd-4d9f-9286-0fa35d47fa33/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:19f8ae2a-39bd-4d9f-9286-0fa35d47fa33.json","mbid":"19f8ae2a-39bd-4d9f-9286-0fa35d47fa33"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d5319d7c-7c20-430e-acef-2718aaa90554/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d5319d7c-7c20-430e-acef-2718aaa90554/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:d5319d7c-7c20-430e-acef-2718aaa90554.json","mbid":"d5319d7c-7c20-430e-acef-2718aaa90554"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:93ccd76c-3790-4435-a8bf-02bc26294b93/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:93ccd76c-3790-4435-a8bf-02bc26294b93/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:93ccd76c-3790-4435-a8bf-02bc26294b93.json","mbid":"93ccd76c-3790-4435-a8bf-02bc26294b93"}],"displayName":"Bush","onTourUntil":null,"uri":"http://www.songkick.com/artists/478333-bush?utm_source=4791&utm_medium=partner","id":478333},{"identifier":[{"mbid":"c7c34822-0676-41a3-a6ed-85da8c778f55","href":"http://api.songkick.com/api/3.0/artists/mbid:c7c34822-0676-41a3-a6ed-85da8c778f55.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:c7c34822-0676-41a3-a6ed-85da8c778f55/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:c7c34822-0676-41a3-a6ed-85da8c778f55/setlists.json"}],"displayName":"Byzantine","uri":"http://www.songkick.com/artists/9331-byzantine?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-20","id":9331},{"identifier":[{"mbid":"00b952be-6c97-4880-84f9-06de584b491b","href":"http://api.songkick.com/api/3.0/artists/mbid:00b952be-6c97-4880-84f9-06de584b491b.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:00b952be-6c97-4880-84f9-06de584b491b/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:00b952be-6c97-4880-84f9-06de584b491b/setlists.json"}],"displayName":"Cancer
44
+ Bats","uri":"http://www.songkick.com/artists/530369-cancer-bats?utm_source=4791&utm_medium=partner","onTourUntil":"2013-10-19","id":530369},{"onTourUntil":null,"displayName":"Chasing
45
+ Victory","uri":"http://www.songkick.com/artists/260365-chasing-victory?utm_source=4791&utm_medium=partner","id":260365,"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9201609b-ff52-4a50-ba53-98b7b4b14cb8/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9201609b-ff52-4a50-ba53-98b7b4b14cb8/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:9201609b-ff52-4a50-ba53-98b7b4b14cb8.json","mbid":"9201609b-ff52-4a50-ba53-98b7b4b14cb8"}]},{"onTourUntil":"2013-10-04","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8456e9f7-debf-4579-a86c-33a325a35d2d/setlists.json","mbid":"8456e9f7-debf-4579-a86c-33a325a35d2d","href":"http://api.songkick.com/api/3.0/artists/mbid:8456e9f7-debf-4579-a86c-33a325a35d2d.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8456e9f7-debf-4579-a86c-33a325a35d2d/calendar.json"}],"uri":"http://www.songkick.com/artists/480448-chevelle?utm_source=4791&utm_medium=partner","displayName":"Chevelle","id":480448},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a53019c2-d008-4810-bc6c-421d5eab3727/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a53019c2-d008-4810-bc6c-421d5eab3727/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:a53019c2-d008-4810-bc6c-421d5eab3727.json","mbid":"a53019c2-d008-4810-bc6c-421d5eab3727"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:dc4ee3bc-f75d-40a8-9882-0c00c728d811/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:dc4ee3bc-f75d-40a8-9882-0c00c728d811/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:dc4ee3bc-f75d-40a8-9882-0c00c728d811.json","mbid":"dc4ee3bc-f75d-40a8-9882-0c00c728d811"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8c551ae-bbe0-4143-b30b-b0baf8a0390d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8c551ae-bbe0-4143-b30b-b0baf8a0390d/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:e8c551ae-bbe0-4143-b30b-b0baf8a0390d.json","mbid":"e8c551ae-bbe0-4143-b30b-b0baf8a0390d"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ab5cbf2d-412c-4f84-ab1d-632f371fd45b/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ab5cbf2d-412c-4f84-ab1d-632f371fd45b/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:ab5cbf2d-412c-4f84-ab1d-632f371fd45b.json","mbid":"ab5cbf2d-412c-4f84-ab1d-632f371fd45b"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d9a2f1e6-6429-41ce-9d32-9a66188fb39c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d9a2f1e6-6429-41ce-9d32-9a66188fb39c/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:d9a2f1e6-6429-41ce-9d32-9a66188fb39c.json","mbid":"d9a2f1e6-6429-41ce-9d32-9a66188fb39c"}],"displayName":"Cold","onTourUntil":"2013-09-18","uri":"http://www.songkick.com/artists/48178-cold?utm_source=4791&utm_medium=partner","id":48178},{"identifier":[{"mbid":"40a5a225-3279-4d48-bca2-6059ed11b4fc","href":"http://api.songkick.com/api/3.0/artists/mbid:40a5a225-3279-4d48-bca2-6059ed11b4fc.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:40a5a225-3279-4d48-bca2-6059ed11b4fc/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:40a5a225-3279-4d48-bca2-6059ed11b4fc/setlists.json"}],"displayName":"Cute
46
+ Is What We Aim For","uri":"http://www.songkick.com/artists/17607-cute-is-what-we-aim-for?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":17607},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f99802ec-dbea-4eba-a640-3f8e24fbed9a/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f99802ec-dbea-4eba-a640-3f8e24fbed9a/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:f99802ec-dbea-4eba-a640-3f8e24fbed9a.json","mbid":"f99802ec-dbea-4eba-a640-3f8e24fbed9a"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:777294b6-9783-4ee9-9a57-c8e0624a0253/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:777294b6-9783-4ee9-9a57-c8e0624a0253/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:777294b6-9783-4ee9-9a57-c8e0624a0253.json","mbid":"777294b6-9783-4ee9-9a57-c8e0624a0253"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:fdf72050-3d59-4cdd-8c43-d4ca0abea971/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:fdf72050-3d59-4cdd-8c43-d4ca0abea971/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:fdf72050-3d59-4cdd-8c43-d4ca0abea971.json","mbid":"fdf72050-3d59-4cdd-8c43-d4ca0abea971"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:99036512-7fcc-4ff3-803c-07e18062be55/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:99036512-7fcc-4ff3-803c-07e18062be55/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:99036512-7fcc-4ff3-803c-07e18062be55.json","mbid":"99036512-7fcc-4ff3-803c-07e18062be55"}],"displayName":"Destro","onTourUntil":"2013-09-12","uri":"http://www.songkick.com/artists/543574-destro?utm_source=4791&utm_medium=partner","id":543574},{"identifier":[{"mbid":"7e07ffb5-c0f6-4891-a74d-a5e12a247785","href":"http://api.songkick.com/api/3.0/artists/mbid:7e07ffb5-c0f6-4891-a74d-a5e12a247785.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:7e07ffb5-c0f6-4891-a74d-a5e12a247785/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:7e07ffb5-c0f6-4891-a74d-a5e12a247785/setlists.json"}],"displayName":"Die
47
+ Antwoord","uri":"http://www.songkick.com/artists/2839231-die-antwoord?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":2839231},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d5480c73-1990-4cc5-9b06-a3bc0482e9de/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d5480c73-1990-4cc5-9b06-a3bc0482e9de/setlists.json","mbid":"d5480c73-1990-4cc5-9b06-a3bc0482e9de","href":"http://api.songkick.com/api/3.0/artists/mbid:d5480c73-1990-4cc5-9b06-a3bc0482e9de.json"}],"uri":"http://www.songkick.com/artists/206445-disfear?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Disfear","id":206445},{"identifier":[{"mbid":"28503ab7-8bf2-4666-a7bd-2644bfc7cb1d","href":"http://api.songkick.com/api/3.0/artists/mbid:28503ab7-8bf2-4666-a7bd-2644bfc7cb1d.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:28503ab7-8bf2-4666-a7bd-2644bfc7cb1d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:28503ab7-8bf2-4666-a7bd-2644bfc7cb1d/setlists.json"}],"displayName":"Dream
48
+ Theater","uri":"http://www.songkick.com/artists/8765-dream-theater?utm_source=4791&utm_medium=partner","onTourUntil":"2014-02-18","id":8765},{"identifier":[{"mbid":"e8374874-4178-4869-b92e-fef6bf30dc04","href":"http://api.songkick.com/api/3.0/artists/mbid:e8374874-4178-4869-b92e-fef6bf30dc04.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8374874-4178-4869-b92e-fef6bf30dc04/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8374874-4178-4869-b92e-fef6bf30dc04/setlists.json"}],"displayName":"Dropkick
49
+ Murphys","uri":"http://www.songkick.com/artists/211206-dropkick-murphys?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-15","id":211206},{"uri":"http://www.songkick.com/artists/35860-embrace-the-end?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:49029e98-1a51-420b-a3eb-0b45b84cdfd7/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:49029e98-1a51-420b-a3eb-0b45b84cdfd7.json","mbid":"49029e98-1a51-420b-a3eb-0b45b84cdfd7","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:49029e98-1a51-420b-a3eb-0b45b84cdfd7/setlists.json"}],"onTourUntil":null,"displayName":"Embrace
50
+ the End","id":35860},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a295bef8-7127-42d9-bbb7-3fdb40a79074/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a295bef8-7127-42d9-bbb7-3fdb40a79074/setlists.json","mbid":"a295bef8-7127-42d9-bbb7-3fdb40a79074","href":"http://api.songkick.com/api/3.0/artists/mbid:a295bef8-7127-42d9-bbb7-3fdb40a79074.json"}],"uri":"http://www.songkick.com/artists/674701-end-it-all?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"End
51
+ It All","id":674701},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ec508401-31ed-44ca-8c19-30312058c96f/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ec508401-31ed-44ca-8c19-30312058c96f/setlists.json","mbid":"ec508401-31ed-44ca-8c19-30312058c96f","href":"http://api.songkick.com/api/3.0/artists/mbid:ec508401-31ed-44ca-8c19-30312058c96f.json"}],"uri":"http://www.songkick.com/artists/289446-endthisday?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Endthisday","id":289446},{"identifier":[{"mbid":"ebd2ac91-6249-4e4b-bde1-353a424138c9","href":"http://api.songkick.com/api/3.0/artists/mbid:ebd2ac91-6249-4e4b-bde1-353a424138c9.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ebd2ac91-6249-4e4b-bde1-353a424138c9/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ebd2ac91-6249-4e4b-bde1-353a424138c9/setlists.json"}],"displayName":"Eve
52
+ 6","uri":"http://www.songkick.com/artists/182346-eve-6?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":182346},{"onTourUntil":"2013-09-20","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3604c99d-c146-4276-aa0c-9376d333aeb8/setlists.json","mbid":"3604c99d-c146-4276-aa0c-9376d333aeb8","href":"http://api.songkick.com/api/3.0/artists/mbid:3604c99d-c146-4276-aa0c-9376d333aeb8.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3604c99d-c146-4276-aa0c-9376d333aeb8/calendar.json"}],"uri":"http://www.songkick.com/artists/144584-everclear?utm_source=4791&utm_medium=partner","displayName":"Everclear","id":144584},{"identifier":[{"mbid":"e8d62bec-5c03-4c05-9282-5abcb39ad67e","href":"http://api.songkick.com/api/3.0/artists/mbid:e8d62bec-5c03-4c05-9282-5abcb39ad67e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8d62bec-5c03-4c05-9282-5abcb39ad67e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e8d62bec-5c03-4c05-9282-5abcb39ad67e/setlists.json"},{"mbid":"a6bcdfe2-e04d-4ad8-92a9-685de1b08c59","href":"http://api.songkick.com/api/3.0/artists/mbid:a6bcdfe2-e04d-4ad8-92a9-685de1b08c59.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a6bcdfe2-e04d-4ad8-92a9-685de1b08c59/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a6bcdfe2-e04d-4ad8-92a9-685de1b08c59/setlists.json"},{"mbid":"3514b888-077b-4ba1-a61b-8849cf1ac50a","href":"http://api.songkick.com/api/3.0/artists/mbid:3514b888-077b-4ba1-a61b-8849cf1ac50a.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3514b888-077b-4ba1-a61b-8849cf1ac50a/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3514b888-077b-4ba1-a61b-8849cf1ac50a/setlists.json"}],"displayName":"Everest","uri":"http://www.songkick.com/artists/216419-everest?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-31","id":216419},{"identifier":[{"mbid":"5c56a575-f1f4-4290-9f41-d7193c9657c4","href":"http://api.songkick.com/api/3.0/artists/mbid:5c56a575-f1f4-4290-9f41-d7193c9657c4.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5c56a575-f1f4-4290-9f41-d7193c9657c4/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5c56a575-f1f4-4290-9f41-d7193c9657c4/setlists.json"}],"displayName":"Eyes
53
+ Set to Kill","uri":"http://www.songkick.com/artists/203136-eyes-set-to-kill?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":203136},{"identifier":[],"uri":"http://www.songkick.com/artists/919820-fight-to-win?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"FIGHT
54
+ TO WIN","id":919820},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:1264dd50-d902-4b25-8331-836cdb0fb5f6/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:1264dd50-d902-4b25-8331-836cdb0fb5f6/setlists.json","mbid":"1264dd50-d902-4b25-8331-836cdb0fb5f6","href":"http://api.songkick.com/api/3.0/artists/mbid:1264dd50-d902-4b25-8331-836cdb0fb5f6.json"}],"uri":"http://www.songkick.com/artists/317774-factory-81?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Factory
55
+ 81","id":317774},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:64b58850-3d5d-48cb-82be-74921fb5ecdf/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:64b58850-3d5d-48cb-82be-74921fb5ecdf/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:64b58850-3d5d-48cb-82be-74921fb5ecdf.json","mbid":"64b58850-3d5d-48cb-82be-74921fb5ecdf"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:1d36ec7b-b763-4d2b-b111-7219c8179919/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:1d36ec7b-b763-4d2b-b111-7219c8179919/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:1d36ec7b-b763-4d2b-b111-7219c8179919.json","mbid":"1d36ec7b-b763-4d2b-b111-7219c8179919"}],"displayName":"Family
56
+ Force 5","onTourUntil":"2013-09-20","uri":"http://www.songkick.com/artists/337550-family-force-5?utm_source=4791&utm_medium=partner","id":337550},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:24bafddf-66ed-448c-92dd-398487b27f56/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:24bafddf-66ed-448c-92dd-398487b27f56/setlists.json","mbid":"24bafddf-66ed-448c-92dd-398487b27f56","href":"http://api.songkick.com/api/3.0/artists/mbid:24bafddf-66ed-448c-92dd-398487b27f56.json"}],"uri":"http://www.songkick.com/artists/40382-foreknown?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Foreknown","id":40382},{"onTourUntil":"2013-08-04","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5c6f8874-cb53-4f4d-9168-cc2af8c7ecf9/setlists.json","mbid":"5c6f8874-cb53-4f4d-9168-cc2af8c7ecf9","href":"http://api.songkick.com/api/3.0/artists/mbid:5c6f8874-cb53-4f4d-9168-cc2af8c7ecf9.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5c6f8874-cb53-4f4d-9168-cc2af8c7ecf9/calendar.json"}],"uri":"http://www.songkick.com/artists/177431-forever-the-sickest-kids?utm_source=4791&utm_medium=partner","displayName":"Forever
57
+ the Sickest Kids","id":177431},{"identifier":[{"mbid":"93c78478-438f-4291-be6d-9e82ef894b1a","href":"http://api.songkick.com/api/3.0/artists/mbid:93c78478-438f-4291-be6d-9e82ef894b1a.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:93c78478-438f-4291-be6d-9e82ef894b1a/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:93c78478-438f-4291-be6d-9e82ef894b1a/setlists.json"},{"mbid":"a2f46b01-f0cc-4615-96ad-e54213c60237","href":"http://api.songkick.com/api/3.0/artists/mbid:a2f46b01-f0cc-4615-96ad-e54213c60237.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a2f46b01-f0cc-4615-96ad-e54213c60237/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a2f46b01-f0cc-4615-96ad-e54213c60237/setlists.json"},{"mbid":"3a901353-fccd-4afd-ad01-9c03f451b490","href":"http://api.songkick.com/api/3.0/artists/mbid:3a901353-fccd-4afd-ad01-9c03f451b490.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3a901353-fccd-4afd-ad01-9c03f451b490/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3a901353-fccd-4afd-ad01-9c03f451b490/setlists.json"}],"displayName":"Frontside","uri":"http://www.songkick.com/artists/312884-frontside?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":312884},{"identifier":[{"mbid":"eeb1195b-f213-4ce1-b28c-8565211f8e43","href":"http://api.songkick.com/api/3.0/artists/mbid:eeb1195b-f213-4ce1-b28c-8565211f8e43.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:eeb1195b-f213-4ce1-b28c-8565211f8e43/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:eeb1195b-f213-4ce1-b28c-8565211f8e43/setlists.json"}],"displayName":"Guns
58
+ N'' Roses","uri":"http://www.songkick.com/artists/509644-guns-n-roses?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":509644},{"uri":"http://www.songkick.com/artists/540859-haste?utm_source=4791&utm_medium=partner","displayName":"Haste","onTourUntil":null,"identifier":[{"mbid":"86412135-c788-4eb0-9719-99fc44f3ef39","href":"http://api.songkick.com/api/3.0/artists/mbid:86412135-c788-4eb0-9719-99fc44f3ef39.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:86412135-c788-4eb0-9719-99fc44f3ef39/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:86412135-c788-4eb0-9719-99fc44f3ef39/setlists.json"}],"id":540859},{"displayName":"Hit
59
+ the Lights","identifier":[{"mbid":"b0442f82-6322-4096-8535-b3bb776019d3","href":"http://api.songkick.com/api/3.0/artists/mbid:b0442f82-6322-4096-8535-b3bb776019d3.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b0442f82-6322-4096-8535-b3bb776019d3/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b0442f82-6322-4096-8535-b3bb776019d3/setlists.json"}],"uri":"http://www.songkick.com/artists/231102-hit-the-lights?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":231102},{"identifier":[{"mbid":"c4301d28-9309-400a-9f2f-81628ef349ec","href":"http://api.songkick.com/api/3.0/artists/mbid:c4301d28-9309-400a-9f2f-81628ef349ec.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:c4301d28-9309-400a-9f2f-81628ef349ec/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:c4301d28-9309-400a-9f2f-81628ef349ec/setlists.json"},{"mbid":"f4bf5c16-8ce2-4ace-a6ea-c31f2fda5201","href":"http://api.songkick.com/api/3.0/artists/mbid:f4bf5c16-8ce2-4ace-a6ea-c31f2fda5201.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f4bf5c16-8ce2-4ace-a6ea-c31f2fda5201/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f4bf5c16-8ce2-4ace-a6ea-c31f2fda5201/setlists.json"}],"displayName":"Hopeless","uri":"http://www.songkick.com/artists/291799-hopeless?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":291799},{"identifier":[{"mbid":"c83907ee-8b5a-4547-8f68-96572243ea7f","href":"http://api.songkick.com/api/3.0/artists/mbid:c83907ee-8b5a-4547-8f68-96572243ea7f.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:c83907ee-8b5a-4547-8f68-96572243ea7f/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:c83907ee-8b5a-4547-8f68-96572243ea7f/setlists.json"}],"displayName":"Hot
60
+ Water Music","uri":"http://www.songkick.com/artists/340572-hot-water-music?utm_source=4791&utm_medium=partner","onTourUntil":"2013-10-10","id":340572},{"onTourUntil":null,"displayName":"Incubus","uri":"http://www.songkick.com/artists/141629-incubus?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:308aea66-5205-4344-b700-319a8dccaa43/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:308aea66-5205-4344-b700-319a8dccaa43/setlists.json","mbid":"308aea66-5205-4344-b700-319a8dccaa43","href":"http://api.songkick.com/api/3.0/artists/mbid:308aea66-5205-4344-b700-319a8dccaa43.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e3e0abcd-7671-4482-a9d8-462f5acc9be5/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e3e0abcd-7671-4482-a9d8-462f5acc9be5/setlists.json","mbid":"e3e0abcd-7671-4482-a9d8-462f5acc9be5","href":"http://api.songkick.com/api/3.0/artists/mbid:e3e0abcd-7671-4482-a9d8-462f5acc9be5.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d660f9ed-f11b-4698-8058-36a578bf54e0/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d660f9ed-f11b-4698-8058-36a578bf54e0/setlists.json","mbid":"d660f9ed-f11b-4698-8058-36a578bf54e0","href":"http://api.songkick.com/api/3.0/artists/mbid:d660f9ed-f11b-4698-8058-36a578bf54e0.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d2a39dc9-91d8-49f1-afa2-693a0e7b7e32/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d2a39dc9-91d8-49f1-afa2-693a0e7b7e32/setlists.json","mbid":"d2a39dc9-91d8-49f1-afa2-693a0e7b7e32","href":"http://api.songkick.com/api/3.0/artists/mbid:d2a39dc9-91d8-49f1-afa2-693a0e7b7e32.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9e58d1b4-317f-4ddb-a699-b92c4ee32d97/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9e58d1b4-317f-4ddb-a699-b92c4ee32d97/setlists.json","mbid":"9e58d1b4-317f-4ddb-a699-b92c4ee32d97","href":"http://api.songkick.com/api/3.0/artists/mbid:9e58d1b4-317f-4ddb-a699-b92c4ee32d97.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:55a327f7-811a-440e-a509-7350742b3dd6/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:55a327f7-811a-440e-a509-7350742b3dd6/setlists.json","mbid":"55a327f7-811a-440e-a509-7350742b3dd6","href":"http://api.songkick.com/api/3.0/artists/mbid:55a327f7-811a-440e-a509-7350742b3dd6.json"}],"id":141629},{"onTourUntil":null,"displayName":"Jettared","uri":"http://www.songkick.com/artists/11195-jettared?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b2533dd7-5c3b-4518-84e7-e91a19ff3728/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b2533dd7-5c3b-4518-84e7-e91a19ff3728/setlists.json","mbid":"b2533dd7-5c3b-4518-84e7-e91a19ff3728","href":"http://api.songkick.com/api/3.0/artists/mbid:b2533dd7-5c3b-4518-84e7-e91a19ff3728.json"}],"id":11195},{"displayName":"Jimmie''s
61
+ Chicken Shack","onTourUntil":"2013-09-14","uri":"http://www.songkick.com/artists/51493-jimmies-chicken-shack?utm_source=4791&utm_medium=partner","id":51493,"identifier":[{"mbid":"4b2374e3-1f73-4299-a036-19c6a7bd5368","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4b2374e3-1f73-4299-a036-19c6a7bd5368/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:4b2374e3-1f73-4299-a036-19c6a7bd5368.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4b2374e3-1f73-4299-a036-19c6a7bd5368/setlists.json"}]},{"displayName":"Just
62
+ Surrender","onTourUntil":null,"uri":"http://www.songkick.com/artists/291914-just-surrender?utm_source=4791&utm_medium=partner","id":291914,"identifier":[{"mbid":"a4d938f1-2315-4745-8775-24e91a719d78","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a4d938f1-2315-4745-8775-24e91a719d78/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:a4d938f1-2315-4745-8775-24e91a719d78.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a4d938f1-2315-4745-8775-24e91a719d78/setlists.json"}]},{"identifier":[],"uri":"http://www.songkick.com/artists/97794-kerrang?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Kerrang!","id":97794},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e3eb5f1d-f57e-4cc5-9821-e79bf2b4f0b6/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e3eb5f1d-f57e-4cc5-9821-e79bf2b4f0b6/setlists.json","mbid":"e3eb5f1d-f57e-4cc5-9821-e79bf2b4f0b6","href":"http://api.songkick.com/api/3.0/artists/mbid:e3eb5f1d-f57e-4cc5-9821-e79bf2b4f0b6.json"}],"uri":"http://www.songkick.com/artists/6835-letter-kills?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Letter
63
+ Kills","id":6835}]},"perPage":50,"page":1,"totalEntries":107}}'
64
+ http_version: '1.1'
65
+ recorded_at: Sun, 28 Jul 2013 06:04:08 GMT
66
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,75 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.songkick.com/api/3.0/users/jrmehle/artists/tracked.json?apikey=hFYxiInE4DBpH5KL
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers: {}
10
+ response:
11
+ status:
12
+ code: 200
13
+ message: OK
14
+ headers:
15
+ date:
16
+ - Sun, 28 Jul 2013 05:59:30 GMT
17
+ status:
18
+ - 200 OK
19
+ content-type:
20
+ - application/json; charset=utf-8
21
+ cache-control:
22
+ - private, max-age=600
23
+ expires:
24
+ - Sun, 28 Jul 2013 06:09:30 GMT
25
+ vary:
26
+ - Accept-Encoding
27
+ connection:
28
+ - close
29
+ transfer-encoding:
30
+ - chunked
31
+ body:
32
+ encoding: US-ASCII
33
+ string: ! '{"resultsPage":{"status":"ok","results":{"artist":[{"identifier":[{"mbid":"ba85753c-671a-409e-b813-1e3be41e2a2e","href":"http://api.songkick.com/api/3.0/artists/mbid:ba85753c-671a-409e-b813-1e3be41e2a2e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ba85753c-671a-409e-b813-1e3be41e2a2e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ba85753c-671a-409e-b813-1e3be41e2a2e/setlists.json"}],"displayName":"3
34
+ Inches of Blood","uri":"http://www.songkick.com/artists/185566-3-inches-of-blood?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-23","id":185566},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:781167d7-b9e5-48ea-9f66-67c4a6739562/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:781167d7-b9e5-48ea-9f66-67c4a6739562/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:781167d7-b9e5-48ea-9f66-67c4a6739562.json","mbid":"781167d7-b9e5-48ea-9f66-67c4a6739562"}],"displayName":"36
35
+ Crazyfists","onTourUntil":"2013-11-16","uri":"http://www.songkick.com/artists/114914-36-crazyfists?utm_source=4791&utm_medium=partner","id":114914},{"displayName":"A
36
+ Change of Pace","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:084d3624-52c1-40fe-8710-971c97fb742e/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:084d3624-52c1-40fe-8710-971c97fb742e.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:084d3624-52c1-40fe-8710-971c97fb742e/setlists.json","mbid":"084d3624-52c1-40fe-8710-971c97fb742e"}],"uri":"http://www.songkick.com/artists/552110-a-change-of-pace?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":552110},{"onTourUntil":"2014-02-14","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:db008806-16f6-48fc-8521-3d953709689d/setlists.json","mbid":"db008806-16f6-48fc-8521-3d953709689d","href":"http://api.songkick.com/api/3.0/artists/mbid:db008806-16f6-48fc-8521-3d953709689d.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:db008806-16f6-48fc-8521-3d953709689d/calendar.json"}],"uri":"http://www.songkick.com/artists/470482-a-day-to-remember?utm_source=4791&utm_medium=partner","displayName":"A
37
+ Day to Remember","id":470482},{"onTourUntil":null,"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:bbf0b3a6-a607-463c-ae76-aafae956eb50/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:bbf0b3a6-a607-463c-ae76-aafae956eb50/setlists.json","mbid":"bbf0b3a6-a607-463c-ae76-aafae956eb50","href":"http://api.songkick.com/api/3.0/artists/mbid:bbf0b3a6-a607-463c-ae76-aafae956eb50.json"}],"displayName":"A
38
+ Dying Dream","uri":"http://www.songkick.com/artists/318186-a-dying-dream?utm_source=4791&utm_medium=partner","id":318186},{"displayName":"A
39
+ Hero A Fake","onTourUntil":null,"uri":"http://www.songkick.com/artists/1170505-a-hero-a-fake?utm_source=4791&utm_medium=partner","id":1170505,"identifier":[{"mbid":"b5b4779d-90c1-487c-861b-e291a1e5a19e","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b5b4779d-90c1-487c-861b-e291a1e5a19e/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:b5b4779d-90c1-487c-861b-e291a1e5a19e.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b5b4779d-90c1-487c-861b-e291a1e5a19e/setlists.json"}]},{"identifier":[{"mbid":"6c9a6dad-472e-4a1d-8fe2-b49e52746b3c","href":"http://api.songkick.com/api/3.0/artists/mbid:6c9a6dad-472e-4a1d-8fe2-b49e52746b3c.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:6c9a6dad-472e-4a1d-8fe2-b49e52746b3c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:6c9a6dad-472e-4a1d-8fe2-b49e52746b3c/setlists.json"}],"displayName":"A
40
+ Life Once Lost","uri":"http://www.songkick.com/artists/312582-a-life-once-lost?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":312582},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:242dd66a-5845-4323-9f5f-62ebb5be3d96/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:242dd66a-5845-4323-9f5f-62ebb5be3d96/setlists.json","mbid":"242dd66a-5845-4323-9f5f-62ebb5be3d96","href":"http://api.songkick.com/api/3.0/artists/mbid:242dd66a-5845-4323-9f5f-62ebb5be3d96.json"}],"uri":"http://www.songkick.com/artists/43172-a-love-ends-suicide?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
41
+ Love Ends Suicide","id":43172},{"displayName":"A Plea For Purging","onTourUntil":null,"uri":"http://www.songkick.com/artists/511165-a-plea-for-purging?utm_source=4791&utm_medium=partner","id":511165,"identifier":[{"mbid":"482e0906-1e69-477d-9650-be680221f353","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:482e0906-1e69-477d-9650-be680221f353/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:482e0906-1e69-477d-9650-be680221f353.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:482e0906-1e69-477d-9650-be680221f353/setlists.json"}]},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:c0c8275d-cf5e-4b5f-8444-2f3f1bed3219/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:c0c8275d-cf5e-4b5f-8444-2f3f1bed3219/setlists.json","mbid":"c0c8275d-cf5e-4b5f-8444-2f3f1bed3219","href":"http://api.songkick.com/api/3.0/artists/mbid:c0c8275d-cf5e-4b5f-8444-2f3f1bed3219.json"}],"uri":"http://www.songkick.com/artists/2770266-a-silent-fiction?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
42
+ Silent Fiction","id":2770266},{"onTourUntil":"2013-10-08","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:33464f19-aa8b-4bbf-982d-05f5e78643c8/setlists.json","mbid":"33464f19-aa8b-4bbf-982d-05f5e78643c8","href":"http://api.songkick.com/api/3.0/artists/mbid:33464f19-aa8b-4bbf-982d-05f5e78643c8.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:33464f19-aa8b-4bbf-982d-05f5e78643c8/calendar.json"}],"uri":"http://www.songkick.com/artists/404055-a-skylit-drive?utm_source=4791&utm_medium=partner","displayName":"A
43
+ Skylit Drive","id":404055},{"onTourUntil":null,"displayName":"A Static Lullaby","uri":"http://www.songkick.com/artists/225641-a-static-lullaby?utm_source=4791&utm_medium=partner","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8d79e950-1333-4a32-9fc1-af53d421abc4/setlists.json","mbid":"8d79e950-1333-4a32-9fc1-af53d421abc4","href":"http://api.songkick.com/api/3.0/artists/mbid:8d79e950-1333-4a32-9fc1-af53d421abc4.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8d79e950-1333-4a32-9fc1-af53d421abc4/calendar.json"}],"id":225641},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3a311dec-c0a6-4676-9ff1-70fc0e0ae721/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3a311dec-c0a6-4676-9ff1-70fc0e0ae721/setlists.json","mbid":"3a311dec-c0a6-4676-9ff1-70fc0e0ae721","href":"http://api.songkick.com/api/3.0/artists/mbid:3a311dec-c0a6-4676-9ff1-70fc0e0ae721.json"}],"uri":"http://www.songkick.com/artists/135066-a-thousand-falling-skies?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
44
+ Thousand Falling Skies","id":135066},{"identifier":[{"mbid":"96664cf2-a29d-4bf4-81d2-124ce248eb83","href":"http://api.songkick.com/api/3.0/artists/mbid:96664cf2-a29d-4bf4-81d2-124ce248eb83.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:96664cf2-a29d-4bf4-81d2-124ce248eb83/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:96664cf2-a29d-4bf4-81d2-124ce248eb83/setlists.json"}],"displayName":"A
45
+ Traitor Like Judas","uri":"http://www.songkick.com/artists/511160-a-traitor-like-judas?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-13","id":511160},{"identifier":[],"uri":"http://www.songkick.com/artists/2556196-a-walk-with-the-wicked?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
46
+ Walk With the Wicked","id":2556196},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d1ba5137-bca0-4820-b928-10b8985a8d16/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d1ba5137-bca0-4820-b928-10b8985a8d16/setlists.json","mbid":"d1ba5137-bca0-4820-b928-10b8985a8d16","href":"http://api.songkick.com/api/3.0/artists/mbid:d1ba5137-bca0-4820-b928-10b8985a8d16.json"}],"uri":"http://www.songkick.com/artists/569430-a-well-thought-tragedy?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"A
47
+ Well Thought Tragedy","id":569430},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:657ec972-3ab1-48a8-b472-1f1c210aaf17/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:657ec972-3ab1-48a8-b472-1f1c210aaf17/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:657ec972-3ab1-48a8-b472-1f1c210aaf17.json","mbid":"657ec972-3ab1-48a8-b472-1f1c210aaf17"}],"displayName":"A
48
+ Wilhelm Scream","onTourUntil":"2013-09-28","uri":"http://www.songkick.com/artists/413226-a-wilhelm-scream?utm_source=4791&utm_medium=partner","id":413226},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:29dd58cb-b477-45e4-aeaa-1289d8218066/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:29dd58cb-b477-45e4-aeaa-1289d8218066/setlists.json","mbid":"29dd58cb-b477-45e4-aeaa-1289d8218066","href":"http://api.songkick.com/api/3.0/artists/mbid:29dd58cb-b477-45e4-aeaa-1289d8218066.json"}],"uri":"http://www.songkick.com/artists/606842-abel-is-dying?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"ABEL
49
+ IS DYING","id":606842},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8a613fb8-b78d-4473-a4d9-f23bcf96e456/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8a613fb8-b78d-4473-a4d9-f23bcf96e456/setlists.json","mbid":"8a613fb8-b78d-4473-a4d9-f23bcf96e456","href":"http://api.songkick.com/api/3.0/artists/mbid:8a613fb8-b78d-4473-a4d9-f23bcf96e456.json"}],"uri":"http://www.songkick.com/artists/1171305-as-eden-burns?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"AS EDEN BURNS","id":1171305},{"onTourUntil":null,"displayName":"Abandon
50
+ All Ships","uri":"http://www.songkick.com/artists/591687-abandon-all-ships?utm_source=4791&utm_medium=partner","id":591687,"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4a90622e-fc29-4c60-845b-d1752cd286cd/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4a90622e-fc29-4c60-845b-d1752cd286cd/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:4a90622e-fc29-4c60-845b-d1752cd286cd.json","mbid":"4a90622e-fc29-4c60-845b-d1752cd286cd"}]},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:7f47ea76-e712-4d90-bd6f-4e0fb3239829/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:7f47ea76-e712-4d90-bd6f-4e0fb3239829/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:7f47ea76-e712-4d90-bd6f-4e0fb3239829.json","mbid":"7f47ea76-e712-4d90-bd6f-4e0fb3239829"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e19a8e9c-91c7-4f59-a741-37fc0d2b60bd/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e19a8e9c-91c7-4f59-a741-37fc0d2b60bd/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:e19a8e9c-91c7-4f59-a741-37fc0d2b60bd.json","mbid":"e19a8e9c-91c7-4f59-a741-37fc0d2b60bd"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e479c699-ca1c-4d87-bbd4-8cfa312096f8/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e479c699-ca1c-4d87-bbd4-8cfa312096f8/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:e479c699-ca1c-4d87-bbd4-8cfa312096f8.json","mbid":"e479c699-ca1c-4d87-bbd4-8cfa312096f8"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:c2d75d7a-3fcd-4bb9-bfd5-802c788056b5/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:c2d75d7a-3fcd-4bb9-bfd5-802c788056b5/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:c2d75d7a-3fcd-4bb9-bfd5-802c788056b5.json","mbid":"c2d75d7a-3fcd-4bb9-bfd5-802c788056b5"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f2e23a43-798f-402e-953f-30d9af9dd025/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f2e23a43-798f-402e-953f-30d9af9dd025/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:f2e23a43-798f-402e-953f-30d9af9dd025.json","mbid":"f2e23a43-798f-402e-953f-30d9af9dd025"}],"displayName":"Absence","onTourUntil":"2013-10-06","uri":"http://www.songkick.com/artists/153890-absence?utm_source=4791&utm_medium=partner","id":153890},{"identifier":[{"mbid":"6d5ec19a-b22f-4d96-ac1b-3d22e3b24cc3","href":"http://api.songkick.com/api/3.0/artists/mbid:6d5ec19a-b22f-4d96-ac1b-3d22e3b24cc3.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:6d5ec19a-b22f-4d96-ac1b-3d22e3b24cc3/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:6d5ec19a-b22f-4d96-ac1b-3d22e3b24cc3/setlists.json"}],"displayName":"Acrassicauda","uri":"http://www.songkick.com/artists/949734-acrassicauda?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":949734},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:66cc1250-3ddd-4068-bf47-344cd5ba079d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:66cc1250-3ddd-4068-bf47-344cd5ba079d/setlists.json","mbid":"66cc1250-3ddd-4068-bf47-344cd5ba079d","href":"http://api.songkick.com/api/3.0/artists/mbid:66cc1250-3ddd-4068-bf47-344cd5ba079d.json"}],"uri":"http://www.songkick.com/artists/210037-across-five-aprils?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Across
51
+ Five Aprils","id":210037},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:28dc5407-e7c0-40ec-b608-ad58f2e99ac3/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:28dc5407-e7c0-40ec-b608-ad58f2e99ac3/setlists.json","mbid":"28dc5407-e7c0-40ec-b608-ad58f2e99ac3","href":"http://api.songkick.com/api/3.0/artists/mbid:28dc5407-e7c0-40ec-b608-ad58f2e99ac3.json"}],"onTourUntil":null,"displayName":"Across
52
+ the Sun","uri":"http://www.songkick.com/artists/2883021-across-the-sun?utm_source=4791&utm_medium=partner","id":2883021},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:75d4f194-969c-4538-b789-742f3eb3d02c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:75d4f194-969c-4538-b789-742f3eb3d02c/setlists.json","mbid":"75d4f194-969c-4538-b789-742f3eb3d02c","href":"http://api.songkick.com/api/3.0/artists/mbid:75d4f194-969c-4538-b789-742f3eb3d02c.json"}],"uri":"http://www.songkick.com/artists/173074-adam-and-the-ants?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Adam
53
+ And The Ants","id":173074},{"identifier":[{"mbid":"3f400bdc-96cd-40f2-a5f5-525ea1012f12","href":"http://api.songkick.com/api/3.0/artists/mbid:3f400bdc-96cd-40f2-a5f5-525ea1012f12.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3f400bdc-96cd-40f2-a5f5-525ea1012f12/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3f400bdc-96cd-40f2-a5f5-525ea1012f12/setlists.json"}],"displayName":"Affiance","uri":"http://www.songkick.com/artists/1974206-affiance?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":1974206},{"onTourUntil":"2013-10-16","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:6dd9b71e-2e2f-4a66-bfce-5e820589b390/setlists.json","mbid":"6dd9b71e-2e2f-4a66-bfce-5e820589b390","href":"http://api.songkick.com/api/3.0/artists/mbid:6dd9b71e-2e2f-4a66-bfce-5e820589b390.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:6dd9b71e-2e2f-4a66-bfce-5e820589b390/calendar.json"}],"uri":"http://www.songkick.com/artists/615198-after-the-burial?utm_source=4791&utm_medium=partner","displayName":"After
54
+ the Burial","id":615198},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:78dd6e93-9463-40b4-ab97-6a0a86e24083/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:78dd6e93-9463-40b4-ab97-6a0a86e24083/setlists.json","mbid":"78dd6e93-9463-40b4-ab97-6a0a86e24083","href":"http://api.songkick.com/api/3.0/artists/mbid:78dd6e93-9463-40b4-ab97-6a0a86e24083.json"}],"uri":"http://www.songkick.com/artists/120795-against-all-authority?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Against
55
+ All Authority","id":120795},{"onTourUntil":"2013-12-11","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:40b8a690-94e4-4c82-ad0f-73f4b841e46a/setlists.json","mbid":"40b8a690-94e4-4c82-ad0f-73f4b841e46a","href":"http://api.songkick.com/api/3.0/artists/mbid:40b8a690-94e4-4c82-ad0f-73f4b841e46a.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:40b8a690-94e4-4c82-ad0f-73f4b841e46a/calendar.json"}],"uri":"http://www.songkick.com/artists/125591-agnostic-front?utm_source=4791&utm_medium=partner","displayName":"Agnostic
56
+ Front","id":125591},{"identifier":[{"mbid":"22a4678a-4ab4-4513-9242-86e8b320c3ec","href":"http://api.songkick.com/api/3.0/artists/mbid:22a4678a-4ab4-4513-9242-86e8b320c3ec.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:22a4678a-4ab4-4513-9242-86e8b320c3ec/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:22a4678a-4ab4-4513-9242-86e8b320c3ec/setlists.json"}],"displayName":"Airway","uri":"http://www.songkick.com/artists/2071844-airway?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-07","id":2071844},{"onTourUntil":null,"displayName":"Alexisonfire","uri":"http://www.songkick.com/artists/462640-alexisonfire?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:bc1c8f3f-6f36-4086-a470-87ed813dd429/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:bc1c8f3f-6f36-4086-a470-87ed813dd429/setlists.json","mbid":"bc1c8f3f-6f36-4086-a470-87ed813dd429","href":"http://api.songkick.com/api/3.0/artists/mbid:bc1c8f3f-6f36-4086-a470-87ed813dd429.json"}],"id":462640},{"onTourUntil":"2013-11-16","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4bd95eea-b9f6-4d70-a36c-cfea77431553/setlists.json","mbid":"4bd95eea-b9f6-4d70-a36c-cfea77431553","href":"http://api.songkick.com/api/3.0/artists/mbid:4bd95eea-b9f6-4d70-a36c-cfea77431553.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4bd95eea-b9f6-4d70-a36c-cfea77431553/calendar.json"}],"uri":"http://www.songkick.com/artists/496981-alice-in-chains?utm_source=4791&utm_medium=partner","displayName":"Alice
57
+ In Chains","id":496981},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:69421e11-e4c3-4854-951b-ceab4972e38e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:69421e11-e4c3-4854-951b-ceab4972e38e/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:69421e11-e4c3-4854-951b-ceab4972e38e.json","mbid":"69421e11-e4c3-4854-951b-ceab4972e38e"}],"displayName":"Alkaline
58
+ Trio","onTourUntil":"2013-11-01","uri":"http://www.songkick.com/artists/474094-alkaline-trio?utm_source=4791&utm_medium=partner","id":474094},{"identifier":[{"mbid":"57f496a2-d22d-4a89-9b04-c9ee3812c781","href":"http://api.songkick.com/api/3.0/artists/mbid:57f496a2-d22d-4a89-9b04-c9ee3812c781.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:57f496a2-d22d-4a89-9b04-c9ee3812c781/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:57f496a2-d22d-4a89-9b04-c9ee3812c781/setlists.json"}],"displayName":"All
59
+ Out War","uri":"http://www.songkick.com/artists/285107-all-out-war?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-10","id":285107},{"identifier":[{"mbid":"eb55f2c5-e7dc-4697-9ed7-864438d10eb6","href":"http://api.songkick.com/api/3.0/artists/mbid:eb55f2c5-e7dc-4697-9ed7-864438d10eb6.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:eb55f2c5-e7dc-4697-9ed7-864438d10eb6/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:eb55f2c5-e7dc-4697-9ed7-864438d10eb6/setlists.json"}],"displayName":"All
60
+ Shall Perish","uri":"http://www.songkick.com/artists/57188-all-shall-perish?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-17","id":57188},{"onTourUntil":"2013-10-11","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4f8b7186-b2a2-40db-97ae-6e1cd46d57b1/setlists.json","mbid":"4f8b7186-b2a2-40db-97ae-6e1cd46d57b1","href":"http://api.songkick.com/api/3.0/artists/mbid:4f8b7186-b2a2-40db-97ae-6e1cd46d57b1.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4f8b7186-b2a2-40db-97ae-6e1cd46d57b1/calendar.json"}],"uri":"http://www.songkick.com/artists/288299-all-that-remains?utm_source=4791&utm_medium=partner","displayName":"All
61
+ That Remains","id":288299},{"onTourUntil":null,"displayName":"Alove for Enemies","uri":"http://www.songkick.com/artists/385516-alove-for-enemies?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8648a9ef-9962-48c7-8d95-4d78c2efd6dd/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8648a9ef-9962-48c7-8d95-4d78c2efd6dd/setlists.json","mbid":"8648a9ef-9962-48c7-8d95-4d78c2efd6dd","href":"http://api.songkick.com/api/3.0/artists/mbid:8648a9ef-9962-48c7-8d95-4d78c2efd6dd.json"}],"id":385516},{"uri":"http://www.songkick.com/artists/2489651-amarna-reign?utm_source=4791&utm_medium=partner","onTourUntil":null,"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:83e78696-e2c5-433e-83f2-9ae3c873bdd5/calendar.json","mbid":"83e78696-e2c5-433e-83f2-9ae3c873bdd5","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:83e78696-e2c5-433e-83f2-9ae3c873bdd5/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:83e78696-e2c5-433e-83f2-9ae3c873bdd5.json"}],"displayName":"Amarna
62
+ Reign","id":2489651},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ab74e46a-714d-4c2c-90e7-b0638c863917/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ab74e46a-714d-4c2c-90e7-b0638c863917/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:ab74e46a-714d-4c2c-90e7-b0638c863917.json","mbid":"ab74e46a-714d-4c2c-90e7-b0638c863917"}],"onTourUntil":null,"displayName":"Amber
63
+ Pacific","uri":"http://www.songkick.com/artists/90829-amber-pacific?utm_source=4791&utm_medium=partner","id":90829},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5624e0bc-2b7d-43ed-8d4f-ae1f82b6a310/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5624e0bc-2b7d-43ed-8d4f-ae1f82b6a310/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:5624e0bc-2b7d-43ed-8d4f-ae1f82b6a310.json","mbid":"5624e0bc-2b7d-43ed-8d4f-ae1f82b6a310"}],"displayName":"American
64
+ Me","onTourUntil":"2013-10-15","uri":"http://www.songkick.com/artists/1351663-american-me?utm_source=4791&utm_medium=partner","id":1351663},{"onTourUntil":"2013-12-09","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5b687684-ad34-4a9f-b425-0e7aa81fbd38/setlists.json","mbid":"5b687684-ad34-4a9f-b425-0e7aa81fbd38","href":"http://api.songkick.com/api/3.0/artists/mbid:5b687684-ad34-4a9f-b425-0e7aa81fbd38.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5b687684-ad34-4a9f-b425-0e7aa81fbd38/calendar.json"}],"uri":"http://www.songkick.com/artists/216859-amon-amarth?utm_source=4791&utm_medium=partner","displayName":"Amon
65
+ Amarth","id":216859},{"identifier":[],"uri":"http://www.songkick.com/artists/1101833-amongst-the-ruin?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Amongst
66
+ The Ruin","id":1101833},{"displayName":"Analyst","identifier":[{"mbid":"b7567a3c-23c2-4fc3-b304-5b79ace81597","href":"http://api.songkick.com/api/3.0/artists/mbid:b7567a3c-23c2-4fc3-b304-5b79ace81597.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b7567a3c-23c2-4fc3-b304-5b79ace81597/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b7567a3c-23c2-4fc3-b304-5b79ace81597/setlists.json"}],"uri":"http://www.songkick.com/artists/239380-analyst?utm_source=4791&utm_medium=partner","id":239380,"onTourUntil":null},{"identifier":[{"mbid":"046adca0-6091-4ccc-bf0f-f0ea3b91d75e","href":"http://api.songkick.com/api/3.0/artists/mbid:046adca0-6091-4ccc-bf0f-f0ea3b91d75e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:046adca0-6091-4ccc-bf0f-f0ea3b91d75e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:046adca0-6091-4ccc-bf0f-f0ea3b91d75e/setlists.json"},{"mbid":"55a9fc90-3d6c-42b1-9ca3-b97a7207bb61","href":"http://api.songkick.com/api/3.0/artists/mbid:55a9fc90-3d6c-42b1-9ca3-b97a7207bb61.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:55a9fc90-3d6c-42b1-9ca3-b97a7207bb61/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:55a9fc90-3d6c-42b1-9ca3-b97a7207bb61/setlists.json"}],"displayName":"Anchors","uri":"http://www.songkick.com/artists/567225-anchors?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":567225},{"onTourUntil":null,"displayName":"And
67
+ Hell Followed With","uri":"http://www.songkick.com/artists/3542181-and-hell-followed-with?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f2caeea3-cc72-4632-a9fe-282303f0640c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f2caeea3-cc72-4632-a9fe-282303f0640c/setlists.json","mbid":"f2caeea3-cc72-4632-a9fe-282303f0640c","href":"http://api.songkick.com/api/3.0/artists/mbid:f2caeea3-cc72-4632-a9fe-282303f0640c.json"}],"id":3542181},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d13c4ee0-bff7-4fdc-8ce9-e32aee9796b5/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d13c4ee0-bff7-4fdc-8ce9-e32aee9796b5/setlists.json","mbid":"d13c4ee0-bff7-4fdc-8ce9-e32aee9796b5","href":"http://api.songkick.com/api/3.0/artists/mbid:d13c4ee0-bff7-4fdc-8ce9-e32aee9796b5.json"}],"uri":"http://www.songkick.com/artists/391214-and-the-hero-fails?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"And
68
+ The Hero Fails","id":391214},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3c99df09-65bc-4326-a728-706a6ee57dc9/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3c99df09-65bc-4326-a728-706a6ee57dc9/setlists.json","mbid":"3c99df09-65bc-4326-a728-706a6ee57dc9","href":"http://api.songkick.com/api/3.0/artists/mbid:3c99df09-65bc-4326-a728-706a6ee57dc9.json"}],"uri":"http://www.songkick.com/artists/589760-and-then-there-were-none?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"And
69
+ Then There Were None","id":589760},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:454248e7-ec74-4431-bea3-67591a381bc8/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:454248e7-ec74-4431-bea3-67591a381bc8/setlists.json","mbid":"454248e7-ec74-4431-bea3-67591a381bc8","href":"http://api.songkick.com/api/3.0/artists/mbid:454248e7-ec74-4431-bea3-67591a381bc8.json"}],"uri":"http://www.songkick.com/artists/776072-angels-beneath-me?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Angels
70
+ Beneath Me","id":776072},{"onTourUntil":"2013-08-20","identifier":[{"setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5c2d2520-950b-4c78-84fc-78a9328172a3/setlists.json","mbid":"5c2d2520-950b-4c78-84fc-78a9328172a3","href":"http://api.songkick.com/api/3.0/artists/mbid:5c2d2520-950b-4c78-84fc-78a9328172a3.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5c2d2520-950b-4c78-84fc-78a9328172a3/calendar.json"}],"uri":"http://www.songkick.com/artists/2426656-animals-as-leaders?utm_source=4791&utm_medium=partner","displayName":"Animals
71
+ As Leaders","id":2426656},{"identifier":[],"uri":"http://www.songkick.com/artists/2004016-another-mask?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Another
72
+ Mask","id":2004016}]},"perPage":50,"page":1,"totalEntries":687}}'
73
+ http_version: '1.1'
74
+ recorded_at: Sun, 28 Jul 2013 05:59:31 GMT
75
+ recorded_with: VCR 2.5.0