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,64 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.songkick.com/api/3.0/artists/521019/similar_artists.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, 21 Jul 2013 15:47:09 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, 21 Jul 2013 15:57:09 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":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ac2d1c91-3667-46aa-9fe7-170ca7fce9e2/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ac2d1c91-3667-46aa-9fe7-170ca7fce9e2/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:ac2d1c91-3667-46aa-9fe7-170ca7fce9e2.json","mbid":"ac2d1c91-3667-46aa-9fe7-170ca7fce9e2"}],"displayName":"Godsmack","onTourUntil":"2013-08-10","uri":"http://www.songkick.com/artists/318367-godsmack?utm_source=4791&utm_medium=partner","id":318367},{"onTourUntil":null,"displayName":"Disturbed","uri":"http://www.songkick.com/artists/455175-disturbed?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4bb4e4e4-5f66-4509-98af-62dbb90c45c5/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4bb4e4e4-5f66-4509-98af-62dbb90c45c5/setlists.json","mbid":"4bb4e4e4-5f66-4509-98af-62dbb90c45c5","href":"http://api.songkick.com/api/3.0/artists/mbid:4bb4e4e4-5f66-4509-98af-62dbb90c45c5.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:fa9dae06-8e6e-4b04-a2e5-f61c83016ab0/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:fa9dae06-8e6e-4b04-a2e5-f61c83016ab0/setlists.json","mbid":"fa9dae06-8e6e-4b04-a2e5-f61c83016ab0","href":"http://api.songkick.com/api/3.0/artists/mbid:fa9dae06-8e6e-4b04-a2e5-f61c83016ab0.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:dc75517c-d268-486d-bd5b-0eaff34eeef9/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:dc75517c-d268-486d-bd5b-0eaff34eeef9/setlists.json","mbid":"dc75517c-d268-486d-bd5b-0eaff34eeef9","href":"http://api.songkick.com/api/3.0/artists/mbid:dc75517c-d268-486d-bd5b-0eaff34eeef9.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:448579df-6b71-4c98-a8ba-5f8be40f2b90/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:448579df-6b71-4c98-a8ba-5f8be40f2b90/setlists.json","mbid":"448579df-6b71-4c98-a8ba-5f8be40f2b90","href":"http://api.songkick.com/api/3.0/artists/mbid:448579df-6b71-4c98-a8ba-5f8be40f2b90.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:bcee4d7d-72e6-44d0-8361-2d3b92fb8de5/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:bcee4d7d-72e6-44d0-8361-2d3b92fb8de5/setlists.json","mbid":"bcee4d7d-72e6-44d0-8361-2d3b92fb8de5","href":"http://api.songkick.com/api/3.0/artists/mbid:bcee4d7d-72e6-44d0-8361-2d3b92fb8de5.json"}],"id":455175},{"displayName":"Staind","onTourUntil":null,"uri":"http://www.songkick.com/artists/102372-staind?utm_source=4791&utm_medium=partner","id":102372,"identifier":[{"mbid":"777a21a8-0d0f-4cf3-86b4-65bc0eba5649","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:777a21a8-0d0f-4cf3-86b4-65bc0eba5649/calendar.json","href":"http://api.songkick.com/api/3.0/artists/mbid:777a21a8-0d0f-4cf3-86b4-65bc0eba5649.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:777a21a8-0d0f-4cf3-86b4-65bc0eba5649/setlists.json"}]},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:fd857293-5ab8-40de-b29e-55a69d4e4d0f/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:fd857293-5ab8-40de-b29e-55a69d4e4d0f/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:fd857293-5ab8-40de-b29e-55a69d4e4d0f.json","mbid":"fd857293-5ab8-40de-b29e-55a69d4e4d0f"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:deb622cb-ef78-448c-9f2d-28cc255e08ce/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:deb622cb-ef78-448c-9f2d-28cc255e08ce/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:deb622cb-ef78-448c-9f2d-28cc255e08ce.json","mbid":"deb622cb-ef78-448c-9f2d-28cc255e08ce"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:1695c115-bf3f-4014-9966-2b0c50179193/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:1695c115-bf3f-4014-9966-2b0c50179193/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:1695c115-bf3f-4014-9966-2b0c50179193.json","mbid":"1695c115-bf3f-4014-9966-2b0c50179193"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:3b853780-f81f-42e7-b430-4beb5dc7eecf/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:3b853780-f81f-42e7-b430-4beb5dc7eecf/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:3b853780-f81f-42e7-b430-4beb5dc7eecf.json","mbid":"3b853780-f81f-42e7-b430-4beb5dc7eecf"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9c9f1380-2516-4fc9-a3e6-f9f61941d090/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9c9f1380-2516-4fc9-a3e6-f9f61941d090/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:9c9f1380-2516-4fc9-a3e6-f9f61941d090.json","mbid":"9c9f1380-2516-4fc9-a3e6-f9f61941d090"}],"displayName":"Muse","onTourUntil":"2013-10-22","uri":"http://www.songkick.com/artists/219230-muse?utm_source=4791&utm_medium=partner","id":219230},{"identifier":[{"mbid":"1cc5adcd-1422-4b5c-a3cd-3ecd4f43f506","href":"http://api.songkick.com/api/3.0/artists/mbid:1cc5adcd-1422-4b5c-a3cd-3ecd4f43f506.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:1cc5adcd-1422-4b5c-a3cd-3ecd4f43f506/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:1cc5adcd-1422-4b5c-a3cd-3ecd4f43f506/setlists.json"},{"mbid":"309c62ba-7a22-4277-9f67-4a162526d18a","href":"http://api.songkick.com/api/3.0/artists/mbid:309c62ba-7a22-4277-9f67-4a162526d18a.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:309c62ba-7a22-4277-9f67-4a162526d18a/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:309c62ba-7a22-4277-9f67-4a162526d18a/setlists.json"}],"displayName":"Beck","uri":"http://www.songkick.com/artists/430505-beck?utm_source=4791&utm_medium=partner","onTourUntil":"2013-11-09","id":430505},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:52b9e109-44a0-45eb-a197-226c4abab232/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:52b9e109-44a0-45eb-a197-226c4abab232/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:52b9e109-44a0-45eb-a197-226c4abab232.json","mbid":"52b9e109-44a0-45eb-a197-226c4abab232"}],"displayName":"Sevendust","onTourUntil":"2014-01-26","uri":"http://www.songkick.com/artists/280948-sevendust?utm_source=4791&utm_medium=partner","id":280948},{"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
34
+ N'' Roses","uri":"http://www.songkick.com/artists/509644-guns-n-roses?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":509644},{"identifier":[{"mbid":"8f9d6bb2-dba4-4cca-9967-cc02b9f4820c","href":"http://api.songkick.com/api/3.0/artists/mbid:8f9d6bb2-dba4-4cca-9967-cc02b9f4820c.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8f9d6bb2-dba4-4cca-9967-cc02b9f4820c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8f9d6bb2-dba4-4cca-9967-cc02b9f4820c/setlists.json"}],"displayName":"Limp
35
+ Bizkit","uri":"http://www.songkick.com/artists/468296-limp-bizkit?utm_source=4791&utm_medium=partner","onTourUntil":"2013-10-19","id":468296},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:bf600e2b-dc2d-4839-a1be-6ebef4087cd0/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:bf600e2b-dc2d-4839-a1be-6ebef4087cd0/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:bf600e2b-dc2d-4839-a1be-6ebef4087cd0.json","mbid":"bf600e2b-dc2d-4839-a1be-6ebef4087cd0"}],"displayName":"311","onTourUntil":"2013-08-04","uri":"http://www.songkick.com/artists/486064-311?utm_source=4791&utm_medium=partner","id":486064},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:298909e4-ebcb-47b8-95e9-cc53b087fc65/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:298909e4-ebcb-47b8-95e9-cc53b087fc65/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:298909e4-ebcb-47b8-95e9-cc53b087fc65.json","mbid":"298909e4-ebcb-47b8-95e9-cc53b087fc65"}],"displayName":"Lamb
36
+ of God","onTourUntil":"2013-11-26","uri":"http://www.songkick.com/artists/127504-lamb-of-god?utm_source=4791&utm_medium=partner","id":127504},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8295ee00-0096-461d-95c7-c2263d2a4c6d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8295ee00-0096-461d-95c7-c2263d2a4c6d/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:8295ee00-0096-461d-95c7-c2263d2a4c6d.json","mbid":"8295ee00-0096-461d-95c7-c2263d2a4c6d"}],"displayName":"Killswitch
37
+ Engage","onTourUntil":"2013-11-26","uri":"http://www.songkick.com/artists/482370-killswitch-engage?utm_source=4791&utm_medium=partner","id":482370},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a8b07acd-2bf0-4283-81c0-f3a8749b8e7b/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a8b07acd-2bf0-4283-81c0-f3a8749b8e7b/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:a8b07acd-2bf0-4283-81c0-f3a8749b8e7b.json","mbid":"a8b07acd-2bf0-4283-81c0-f3a8749b8e7b"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:cba77ba2-862d-4cee-a8f6-d3f9daf7211c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:cba77ba2-862d-4cee-a8f6-d3f9daf7211c/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:cba77ba2-862d-4cee-a8f6-d3f9daf7211c.json","mbid":"cba77ba2-862d-4cee-a8f6-d3f9daf7211c"}],"displayName":"Live","onTourUntil":"2013-10-05","uri":"http://www.songkick.com/artists/2475381-live?utm_source=4791&utm_medium=partner","id":2475381},{"onTourUntil":null,"displayName":"Gorillaz","uri":"http://www.songkick.com/artists/68043-gorillaz?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e21857d5-3256-4547-afb3-4b6ded592596/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e21857d5-3256-4547-afb3-4b6ded592596/setlists.json","mbid":"e21857d5-3256-4547-afb3-4b6ded592596","href":"http://api.songkick.com/api/3.0/artists/mbid:e21857d5-3256-4547-afb3-4b6ded592596.json"}],"id":68043},{"identifier":[{"mbid":"4ca783b7-5bf7-4348-b494-46680660050f","href":"http://api.songkick.com/api/3.0/artists/mbid:4ca783b7-5bf7-4348-b494-46680660050f.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4ca783b7-5bf7-4348-b494-46680660050f/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4ca783b7-5bf7-4348-b494-46680660050f/setlists.json"}],"displayName":"Stone
38
+ Sour","uri":"http://www.songkick.com/artists/73489-stone-sour?utm_source=4791&utm_medium=partner","onTourUntil":"2013-07-18","id":73489},{"uri":"http://www.songkick.com/artists/496907-staticx?utm_source=4791&utm_medium=partner","displayName":"Static-X","onTourUntil":null,"identifier":[{"mbid":"8ac9e35c-e92d-4030-99ef-ba4127b1555c","href":"http://api.songkick.com/api/3.0/artists/mbid:8ac9e35c-e92d-4030-99ef-ba4127b1555c.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8ac9e35c-e92d-4030-99ef-ba4127b1555c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8ac9e35c-e92d-4030-99ef-ba4127b1555c/setlists.json"},{"mbid":"354bc74b-79a9-4b5d-a590-753a130aa348","href":"http://api.songkick.com/api/3.0/artists/mbid:354bc74b-79a9-4b5d-a590-753a130aa348.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:354bc74b-79a9-4b5d-a590-753a130aa348/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:354bc74b-79a9-4b5d-a590-753a130aa348/setlists.json"}],"id":496907},{"identifier":[{"mbid":"148ddea2-6839-4354-8e2c-5dfadf136b7f","href":"http://api.songkick.com/api/3.0/artists/mbid:148ddea2-6839-4354-8e2c-5dfadf136b7f.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:148ddea2-6839-4354-8e2c-5dfadf136b7f/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:148ddea2-6839-4354-8e2c-5dfadf136b7f/setlists.json"}],"displayName":"Tenacious
39
+ D","uri":"http://www.songkick.com/artists/214684-tenacious-d?utm_source=4791&utm_medium=partner","onTourUntil":"2013-12-18","id":214684},{"identifier":[{"mbid":"fbcd7b29-455f-49e6-9c4f-8249d20a055e","href":"http://api.songkick.com/api/3.0/artists/mbid:fbcd7b29-455f-49e6-9c4f-8249d20a055e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:fbcd7b29-455f-49e6-9c4f-8249d20a055e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:fbcd7b29-455f-49e6-9c4f-8249d20a055e/setlists.json"}],"displayName":"Seether","uri":"http://www.songkick.com/artists/156311-seether?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-31","id":156311},{"identifier":[{"mbid":"a96ac800-bfcb-412a-8a63-0a98df600700","href":"http://api.songkick.com/api/3.0/artists/mbid:a96ac800-bfcb-412a-8a63-0a98df600700.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a96ac800-bfcb-412a-8a63-0a98df600700/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a96ac800-bfcb-412a-8a63-0a98df600700/setlists.json"}],"displayName":"Modest
40
+ Mouse","uri":"http://www.songkick.com/artists/535518-modest-mouse?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-24","id":535518},{"identifier":[{"mbid":"ceb1ea6e-b0e3-486c-8136-b50d3bde5fcb","href":"http://api.songkick.com/api/3.0/artists/mbid:ceb1ea6e-b0e3-486c-8136-b50d3bde5fcb.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ceb1ea6e-b0e3-486c-8136-b50d3bde5fcb/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ceb1ea6e-b0e3-486c-8136-b50d3bde5fcb/setlists.json"},{"mbid":"fa7b9055-3703-473a-8a09-adf2fe031a24","href":"http://api.songkick.com/api/3.0/artists/mbid:fa7b9055-3703-473a-8a09-adf2fe031a24.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:fa7b9055-3703-473a-8a09-adf2fe031a24/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:fa7b9055-3703-473a-8a09-adf2fe031a24/setlists.json"}],"displayName":"Cake","uri":"http://www.songkick.com/artists/195357-cake?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-20","id":195357},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:084308bd-1654-436f-ba03-df6697104e19/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:084308bd-1654-436f-ba03-df6697104e19/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:084308bd-1654-436f-ba03-df6697104e19.json","mbid":"084308bd-1654-436f-ba03-df6697104e19"}],"displayName":"Green
41
+ Day","onTourUntil":"2014-03-29","uri":"http://www.songkick.com/artists/269937-green-day?utm_source=4791&utm_medium=partner","id":269937},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8fb3bbdb-0eee-42d6-aa0c-8b5c2d3efcef/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8fb3bbdb-0eee-42d6-aa0c-8b5c2d3efcef/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:8fb3bbdb-0eee-42d6-aa0c-8b5c2d3efcef.json","mbid":"8fb3bbdb-0eee-42d6-aa0c-8b5c2d3efcef"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4a4ee089-93b1-4470-af9a-6ff575d32704/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4a4ee089-93b1-4470-af9a-6ff575d32704/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:4a4ee089-93b1-4470-af9a-6ff575d32704.json","mbid":"4a4ee089-93b1-4470-af9a-6ff575d32704"}],"displayName":"The
42
+ Prodigy","onTourUntil":"2013-08-24","uri":"http://www.songkick.com/artists/88480-prodigy?utm_source=4791&utm_medium=partner","id":88480},{"identifier":[{"mbid":"b071f9fa-14b0-4217-8e97-eb41da73f598","href":"http://api.songkick.com/api/3.0/artists/mbid:b071f9fa-14b0-4217-8e97-eb41da73f598.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b071f9fa-14b0-4217-8e97-eb41da73f598/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b071f9fa-14b0-4217-8e97-eb41da73f598/setlists.json"},{"mbid":"a52940ca-3ec9-4a2b-89e4-ad358f64c8f7","href":"http://api.songkick.com/api/3.0/artists/mbid:a52940ca-3ec9-4a2b-89e4-ad358f64c8f7.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a52940ca-3ec9-4a2b-89e4-ad358f64c8f7/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a52940ca-3ec9-4a2b-89e4-ad358f64c8f7/setlists.json"}],"displayName":"The
43
+ Rolling Stones","uri":"http://www.songkick.com/artists/379603-rolling-stones?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":379603},{"onTourUntil":"2013-09-19","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:1d93c839-22e7-4f76-ad84-d27039efc048/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:1d93c839-22e7-4f76-ad84-d27039efc048/setlists.json","mbid":"1d93c839-22e7-4f76-ad84-d27039efc048","href":"http://api.songkick.com/api/3.0/artists/mbid:1d93c839-22e7-4f76-ad84-d27039efc048.json"}],"displayName":"Sepultura","uri":"http://www.songkick.com/artists/374117-sepultura?utm_source=4791&utm_medium=partner","id":374117},{"identifier":[{"mbid":"f59c5520-5f46-4d2c-b2c4-822eabf53419","href":"http://api.songkick.com/api/3.0/artists/mbid:f59c5520-5f46-4d2c-b2c4-822eabf53419.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f59c5520-5f46-4d2c-b2c4-822eabf53419/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f59c5520-5f46-4d2c-b2c4-822eabf53419/setlists.json"}],"displayName":"Linkin
44
+ Park","uri":"http://www.songkick.com/artists/96404-linkin-park?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-19","id":96404},{"identifier":[{"mbid":"d15721d8-56b4-453d-b506-fc915b14cba2","href":"http://api.songkick.com/api/3.0/artists/mbid:d15721d8-56b4-453d-b506-fc915b14cba2.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d15721d8-56b4-453d-b506-fc915b14cba2/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d15721d8-56b4-453d-b506-fc915b14cba2/setlists.json"}],"displayName":"The
45
+ Black Keys","uri":"http://www.songkick.com/artists/108359-black-keys?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":108359},{"identifier":[{"mbid":"606bf117-494f-4864-891f-09d63ff6aa4b","href":"http://api.songkick.com/api/3.0/artists/mbid:606bf117-494f-4864-891f-09d63ff6aa4b.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:606bf117-494f-4864-891f-09d63ff6aa4b/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:606bf117-494f-4864-891f-09d63ff6aa4b/setlists.json"}],"displayName":"Rise
46
+ Against","uri":"http://www.songkick.com/artists/280768-rise-against?utm_source=4791&utm_medium=partner","onTourUntil":"2013-11-16","id":280768},{"identifier":[{"mbid":"8f6bd1e4-fbe1-4f50-aa9b-94c450ec0f11","href":"http://api.songkick.com/api/3.0/artists/mbid:8f6bd1e4-fbe1-4f50-aa9b-94c450ec0f11.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8f6bd1e4-fbe1-4f50-aa9b-94c450ec0f11/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8f6bd1e4-fbe1-4f50-aa9b-94c450ec0f11/setlists.json"}],"displayName":"Portishead","uri":"http://www.songkick.com/artists/386616-portishead?utm_source=4791&utm_medium=partner","onTourUntil":"2013-07-26","id":386616},{"identifier":[{"mbid":"cf8b3b8c-118e-4136-8d1d-c37091173413","href":"http://api.songkick.com/api/3.0/artists/mbid:cf8b3b8c-118e-4136-8d1d-c37091173413.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:cf8b3b8c-118e-4136-8d1d-c37091173413/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:cf8b3b8c-118e-4136-8d1d-c37091173413/setlists.json"}],"displayName":"Meshuggah","uri":"http://www.songkick.com/artists/217917-meshuggah?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-26","id":217917},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:e9571c17-817f-4d34-ae3f-0c7a96f822c1/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:e9571c17-817f-4d34-ae3f-0c7a96f822c1/setlists.json","mbid":"e9571c17-817f-4d34-ae3f-0c7a96f822c1","href":"http://api.songkick.com/api/3.0/artists/mbid:e9571c17-817f-4d34-ae3f-0c7a96f822c1.json"}],"uri":"http://www.songkick.com/artists/221494-temple-of-the-dog?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Temple
47
+ Of The Dog","id":221494},{"identifier":[{"mbid":"38c5cdab-5d6d-43d1-85b0-dac41bde186e","href":"http://api.songkick.com/api/3.0/artists/mbid:38c5cdab-5d6d-43d1-85b0-dac41bde186e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:38c5cdab-5d6d-43d1-85b0-dac41bde186e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:38c5cdab-5d6d-43d1-85b0-dac41bde186e/setlists.json"}],"displayName":"Blind
48
+ Melon","uri":"http://www.songkick.com/artists/460917-blind-melon?utm_source=4791&utm_medium=partner","onTourUntil":"2013-08-05","id":460917},{"identifier":[{"mbid":"9fdaa16b-a6c4-4831-b87c-bc9ca8ce7eaa","href":"http://api.songkick.com/api/3.0/artists/mbid:9fdaa16b-a6c4-4831-b87c-bc9ca8ce7eaa.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9fdaa16b-a6c4-4831-b87c-bc9ca8ce7eaa/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9fdaa16b-a6c4-4831-b87c-bc9ca8ce7eaa/setlists.json"}],"displayName":"The
49
+ Who","uri":"http://www.songkick.com/artists/69685-who?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":69685},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f0c8f75f-8736-4b1d-b312-9349fcff321d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f0c8f75f-8736-4b1d-b312-9349fcff321d/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:f0c8f75f-8736-4b1d-b312-9349fcff321d.json","mbid":"f0c8f75f-8736-4b1d-b312-9349fcff321d"}],"displayName":"Wolfmother","onTourUntil":"2013-11-01","uri":"http://www.songkick.com/artists/192603-wolfmother?utm_source=4791&utm_medium=partner","id":192603},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8538e728-ca0b-4321-b7e5-cff6565dd4c0/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8538e728-ca0b-4321-b7e5-cff6565dd4c0/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:8538e728-ca0b-4321-b7e5-cff6565dd4c0.json","mbid":"8538e728-ca0b-4321-b7e5-cff6565dd4c0"}],"displayName":"Depeche
50
+ Mode","onTourUntil":"2014-03-07","uri":"http://www.songkick.com/artists/483507-depeche-mode?utm_source=4791&utm_medium=partner","id":483507},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:854a1807-025b-42a8-ba8c-2a39717f1d25/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:854a1807-025b-42a8-ba8c-2a39717f1d25/setlists.json","mbid":"854a1807-025b-42a8-ba8c-2a39717f1d25","href":"http://api.songkick.com/api/3.0/artists/mbid:854a1807-025b-42a8-ba8c-2a39717f1d25.json"}],"uri":"http://www.songkick.com/artists/99074-breaking-benjamin?utm_source=4791&utm_medium=partner","onTourUntil":null,"displayName":"Breaking
51
+ Benjamin","id":99074},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:24e1b53c-3085-4581-8472-0b0088d2508c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:24e1b53c-3085-4581-8472-0b0088d2508c/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:24e1b53c-3085-4581-8472-0b0088d2508c.json","mbid":"24e1b53c-3085-4581-8472-0b0088d2508c"}],"displayName":"Avenged
52
+ Sevenfold","onTourUntil":"2013-12-05","uri":"http://www.songkick.com/artists/425252-avenged-sevenfold?utm_source=4791&utm_medium=partner","id":425252},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:87a73cf0-ebdf-483d-8b5a-3db1e5e72122/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:87a73cf0-ebdf-483d-8b5a-3db1e5e72122/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:87a73cf0-ebdf-483d-8b5a-3db1e5e72122.json","mbid":"87a73cf0-ebdf-483d-8b5a-3db1e5e72122"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:261b028a-d4dd-4992-87ec-cdc72ccb52a2/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:261b028a-d4dd-4992-87ec-cdc72ccb52a2/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:261b028a-d4dd-4992-87ec-cdc72ccb52a2.json","mbid":"261b028a-d4dd-4992-87ec-cdc72ccb52a2"}],"displayName":"Drowning
53
+ Pool","onTourUntil":"2013-08-31","uri":"http://www.songkick.com/artists/349012-drowning-pool?utm_source=4791&utm_medium=partner","id":349012},{"identifier":[{"mbid":"c5eb9407-caeb-4303-b383-6929aa94021c","href":"http://api.songkick.com/api/3.0/artists/mbid:c5eb9407-caeb-4303-b383-6929aa94021c.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:c5eb9407-caeb-4303-b383-6929aa94021c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:c5eb9407-caeb-4303-b383-6929aa94021c/setlists.json"}],"displayName":"Papa
54
+ Roach","uri":"http://www.songkick.com/artists/444406-papa-roach?utm_source=4791&utm_medium=partner","onTourUntil":"2014-01-26","id":444406},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:51508c1f-8d07-4a00-9cf1-26c570fe7b78/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:51508c1f-8d07-4a00-9cf1-26c570fe7b78/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:51508c1f-8d07-4a00-9cf1-26c570fe7b78.json","mbid":"51508c1f-8d07-4a00-9cf1-26c570fe7b78"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d870df0d-535d-410c-8760-59072d419e8a/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d870df0d-535d-410c-8760-59072d419e8a/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:d870df0d-535d-410c-8760-59072d419e8a.json","mbid":"d870df0d-535d-410c-8760-59072d419e8a"}],"displayName":"Cypress
55
+ Hill","onTourUntil":"2013-08-04","uri":"http://www.songkick.com/artists/500307-cypress-hill?utm_source=4791&utm_medium=partner","id":500307},{"identifier":[{"mbid":"ff460a70-fdf4-4aa2-b021-8a04da76d88e","href":"http://api.songkick.com/api/3.0/artists/mbid:ff460a70-fdf4-4aa2-b021-8a04da76d88e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:ff460a70-fdf4-4aa2-b021-8a04da76d88e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:ff460a70-fdf4-4aa2-b021-8a04da76d88e/setlists.json"}],"displayName":"Puddle
56
+ of Mudd","uri":"http://www.songkick.com/artists/511461-puddle-of-mudd?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-13","id":511461},{"identifier":[{"mbid":"b5bd9f88-962e-4730-84a7-795592ba42e8","href":"http://api.songkick.com/api/3.0/artists/mbid:b5bd9f88-962e-4730-84a7-795592ba42e8.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b5bd9f88-962e-4730-84a7-795592ba42e8/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b5bd9f88-962e-4730-84a7-795592ba42e8/setlists.json"}],"displayName":"Silversun
57
+ Pickups","uri":"http://www.songkick.com/artists/393244-silversun-pickups?utm_source=4791&utm_medium=partner","onTourUntil":"2013-10-11","id":393244},{"identifier":[{"mbid":"4fc58550-637f-496f-b6bc-3a62ba7f2f7e","href":"http://api.songkick.com/api/3.0/artists/mbid:4fc58550-637f-496f-b6bc-3a62ba7f2f7e.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4fc58550-637f-496f-b6bc-3a62ba7f2f7e/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4fc58550-637f-496f-b6bc-3a62ba7f2f7e/setlists.json"},{"mbid":"1c3919b2-43ca-4a4a-935d-9d50135ec0ef","href":"http://api.songkick.com/api/3.0/artists/mbid:1c3919b2-43ca-4a4a-935d-9d50135ec0ef.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:1c3919b2-43ca-4a4a-935d-9d50135ec0ef/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:1c3919b2-43ca-4a4a-935d-9d50135ec0ef/setlists.json"}],"displayName":"AFI","uri":"http://www.songkick.com/artists/303621-afi?utm_source=4791&utm_medium=partner","onTourUntil":"2013-09-21","id":303621},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5f2ad77d-9b1d-47cf-84ec-72b4e313b6d0/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5f2ad77d-9b1d-47cf-84ec-72b4e313b6d0/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:5f2ad77d-9b1d-47cf-84ec-72b4e313b6d0.json","mbid":"5f2ad77d-9b1d-47cf-84ec-72b4e313b6d0"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:28370d51-346f-4949-ae95-6eb0ee1f7935/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:28370d51-346f-4949-ae95-6eb0ee1f7935/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:28370d51-346f-4949-ae95-6eb0ee1f7935.json","mbid":"28370d51-346f-4949-ae95-6eb0ee1f7935"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:d264cf49-76f0-42fb-9bb1-9bdf15393ae5/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:d264cf49-76f0-42fb-9bb1-9bdf15393ae5/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:d264cf49-76f0-42fb-9bb1-9bdf15393ae5.json","mbid":"d264cf49-76f0-42fb-9bb1-9bdf15393ae5"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:f3a278e2-0b20-4f99-8acd-0931df3cbffd/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:f3a278e2-0b20-4f99-8acd-0931df3cbffd/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:f3a278e2-0b20-4f99-8acd-0931df3cbffd.json","mbid":"f3a278e2-0b20-4f99-8acd-0931df3cbffd"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:2a5a3b60-d468-4b62-a28f-9c410ad3f71d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:2a5a3b60-d468-4b62-a28f-9c410ad3f71d/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:2a5a3b60-d468-4b62-a28f-9c410ad3f71d.json","mbid":"2a5a3b60-d468-4b62-a28f-9c410ad3f71d"}],"displayName":"Fuel","onTourUntil":"2013-08-30","uri":"http://www.songkick.com/artists/244849-fuel?utm_source=4791&utm_medium=partner","id":244849},{"identifier":[{"mbid":"0cfbb549-a080-4613-b2ee-66416a38a4f2","href":"http://api.songkick.com/api/3.0/artists/mbid:0cfbb549-a080-4613-b2ee-66416a38a4f2.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:0cfbb549-a080-4613-b2ee-66416a38a4f2/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:0cfbb549-a080-4613-b2ee-66416a38a4f2/setlists.json"},{"mbid":"078a9376-3c04-4280-b7d7-b20e158f345d","href":"http://api.songkick.com/api/3.0/artists/mbid:078a9376-3c04-4280-b7d7-b20e158f345d.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:078a9376-3c04-4280-b7d7-b20e158f345d/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:078a9376-3c04-4280-b7d7-b20e158f345d/setlists.json"}],"displayName":"A
58
+ Perfect Circle","uri":"http://www.songkick.com/artists/549892-a-perfect-circle?utm_source=4791&utm_medium=partner","onTourUntil":null,"id":549892},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:b7ffd2af-418f-4be2-bdd1-22f8b48613da/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:b7ffd2af-418f-4be2-bdd1-22f8b48613da/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:b7ffd2af-418f-4be2-bdd1-22f8b48613da.json","mbid":"b7ffd2af-418f-4be2-bdd1-22f8b48613da"}],"displayName":"Nine
59
+ Inch Nails","onTourUntil":"2013-11-25","uri":"http://www.songkick.com/artists/241755-nine-inch-nails?utm_source=4791&utm_medium=partner","id":241755},{"onTourUntil":null,"displayName":"Puscifer","uri":"http://www.songkick.com/artists/594931-puscifer?utm_source=4791&utm_medium=partner","id":594931,"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:6e4277d8-7b64-44a3-b823-13bd15114e22/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:6e4277d8-7b64-44a3-b823-13bd15114e22/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:6e4277d8-7b64-44a3-b823-13bd15114e22.json","mbid":"6e4277d8-7b64-44a3-b823-13bd15114e22"}]},{"identifier":[{"mbid":"7527f6c2-d762-4b88-b5e2-9244f1e34c46","href":"http://api.songkick.com/api/3.0/artists/mbid:7527f6c2-d762-4b88-b5e2-9244f1e34c46.json","eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:7527f6c2-d762-4b88-b5e2-9244f1e34c46/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:7527f6c2-d762-4b88-b5e2-9244f1e34c46/setlists.json"}],"displayName":"Deftones","uri":"http://www.songkick.com/artists/83230-deftones?utm_source=4791&utm_medium=partner","onTourUntil":"2013-10-15","id":83230},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:4bd95eea-b9f6-4d70-a36c-cfea77431553/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:4bd95eea-b9f6-4d70-a36c-cfea77431553/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:4bd95eea-b9f6-4d70-a36c-cfea77431553.json","mbid":"4bd95eea-b9f6-4d70-a36c-cfea77431553"}],"displayName":"Alice
60
+ In Chains","onTourUntil":"2013-11-15","uri":"http://www.songkick.com/artists/496981-alice-in-chains?utm_source=4791&utm_medium=partner","id":496981},{"onTourUntil":null,"displayName":"Isis","uri":"http://www.songkick.com/artists/447724-isis?utm_source=4791&utm_medium=partner","identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:8987df8e-227f-4139-9b1f-b138866bdc0f/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:8987df8e-227f-4139-9b1f-b138866bdc0f/setlists.json","mbid":"8987df8e-227f-4139-9b1f-b138866bdc0f","href":"http://api.songkick.com/api/3.0/artists/mbid:8987df8e-227f-4139-9b1f-b138866bdc0f.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:468036c9-c453-4e8f-bbef-dddfca7495a4/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:468036c9-c453-4e8f-bbef-dddfca7495a4/setlists.json","mbid":"468036c9-c453-4e8f-bbef-dddfca7495a4","href":"http://api.songkick.com/api/3.0/artists/mbid:468036c9-c453-4e8f-bbef-dddfca7495a4.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:5e521e8c-0ab2-44c4-8fd8-14d8d3321265/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:5e521e8c-0ab2-44c4-8fd8-14d8d3321265/setlists.json","mbid":"5e521e8c-0ab2-44c4-8fd8-14d8d3321265","href":"http://api.songkick.com/api/3.0/artists/mbid:5e521e8c-0ab2-44c4-8fd8-14d8d3321265.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:a892235b-2acc-446f-9f2e-0370c920310c/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:a892235b-2acc-446f-9f2e-0370c920310c/setlists.json","mbid":"a892235b-2acc-446f-9f2e-0370c920310c","href":"http://api.songkick.com/api/3.0/artists/mbid:a892235b-2acc-446f-9f2e-0370c920310c.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:995a32e1-b1a6-4836-8abc-953c8b2f5094/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:995a32e1-b1a6-4836-8abc-953c8b2f5094/setlists.json","mbid":"995a32e1-b1a6-4836-8abc-953c8b2f5094","href":"http://api.songkick.com/api/3.0/artists/mbid:995a32e1-b1a6-4836-8abc-953c8b2f5094.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9cc26bb6-cb31-4bda-aa0f-44b485c99f17/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9cc26bb6-cb31-4bda-aa0f-44b485c99f17/setlists.json","mbid":"9cc26bb6-cb31-4bda-aa0f-44b485c99f17","href":"http://api.songkick.com/api/3.0/artists/mbid:9cc26bb6-cb31-4bda-aa0f-44b485c99f17.json"},{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9405c80f-f85b-4a8a-86f5-d9e357951307/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9405c80f-f85b-4a8a-86f5-d9e357951307/setlists.json","mbid":"9405c80f-f85b-4a8a-86f5-d9e357951307","href":"http://api.songkick.com/api/3.0/artists/mbid:9405c80f-f85b-4a8a-86f5-d9e357951307.json"}],"id":447724},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:7dc8f5bd-9d0b-4087-9f73-dc164950bbd8/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:7dc8f5bd-9d0b-4087-9f73-dc164950bbd8/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:7dc8f5bd-9d0b-4087-9f73-dc164950bbd8.json","mbid":"7dc8f5bd-9d0b-4087-9f73-dc164950bbd8"}],"displayName":"Queens
61
+ of the Stone Age","onTourUntil":"2013-12-01","uri":"http://www.songkick.com/artists/479466-queens-of-the-stone-age?utm_source=4791&utm_medium=partner","id":479466},{"identifier":[{"eventsHref":"http://api.songkick.com/api/3.0/artists/mbid:9ccfbc94-a4f4-42f7-b6f5-d903ab77cccb/calendar.json","setlistsHref":"http://api.songkick.com/api/3.0/artists/mbid:9ccfbc94-a4f4-42f7-b6f5-d903ab77cccb/setlists.json","href":"http://api.songkick.com/api/3.0/artists/mbid:9ccfbc94-a4f4-42f7-b6f5-d903ab77cccb.json","mbid":"9ccfbc94-a4f4-42f7-b6f5-d903ab77cccb"}],"displayName":"Melvins","onTourUntil":"2013-08-27","uri":"http://www.songkick.com/artists/207184-melvins?utm_source=4791&utm_medium=partner","id":207184}]},"perPage":50,"page":1,"totalEntries":142}}'
62
+ http_version: '1.1'
63
+ recorded_at: Sun, 21 Jul 2013 15:47:13 GMT
64
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,99 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.songkick.com/api/3.0users/jrmehle/trackings/artist:109675.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 06:01:05 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 06:01:05 GMT
33
+ - request:
34
+ method: get
35
+ uri: http://api.songkick.com/api/3.0/users/jrmehle/trackings/artist:109675.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 06:01:25 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:11:25 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":"artist:109675","createdAt":"2011-05-12T00:30:07Z"}}}}'
64
+ http_version: '1.1'
65
+ recorded_at: Sun, 28 Jul 2013 06:01:25 GMT
66
+ - request:
67
+ method: get
68
+ uri: http://api.songkick.com/api/3.0/users/jrmehle/trackings/artist:231185.json?apikey=hFYxiInE4DBpH5KL
69
+ body:
70
+ encoding: US-ASCII
71
+ string: ''
72
+ headers: {}
73
+ response:
74
+ status:
75
+ code: 200
76
+ message: OK
77
+ headers:
78
+ date:
79
+ - Sun, 28 Jul 2013 06:03:06 GMT
80
+ status:
81
+ - 200 OK
82
+ content-type:
83
+ - application/json; charset=utf-8
84
+ cache-control:
85
+ - private, max-age=600
86
+ expires:
87
+ - Sun, 28 Jul 2013 06:13:06 GMT
88
+ vary:
89
+ - Accept-Encoding
90
+ connection:
91
+ - close
92
+ transfer-encoding:
93
+ - chunked
94
+ body:
95
+ encoding: US-ASCII
96
+ string: ! '{"resultsPage":{"status":"ok","results":{"tracking":{"username":"jrmehle","id":"artist:231185","createdAt":"2010-04-17T17:27:45Z"}}}}'
97
+ http_version: '1.1'
98
+ recorded_at: Sun, 28 Jul 2013 06:03:06 GMT
99
+ 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/trackings/event:17522.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 06:06:13 GMT
17
+ status:
18
+ - 404 Not Found
19
+ content-type:
20
+ - application/json; charset=utf-8
21
+ vary:
22
+ - Accept-Encoding
23
+ connection:
24
+ - close
25
+ transfer-encoding:
26
+ - chunked
27
+ body:
28
+ encoding: US-ASCII
29
+ string: ! '{"resultsPage":{"status":"error","error":{"message":"Tracking not
30
+ found"}}}'
31
+ http_version: '1.1'
32
+ recorded_at: Sun, 28 Jul 2013 06:06:13 GMT
33
+ - request:
34
+ method: get
35
+ uri: http://api.songkick.com/api/3.0/users/michelle/trackings/event:15789464.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 06:20:45 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:30:45 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":{"attendance":"im_going","username":"michelle","id":"event:15789464","createdAt":"2013-07-28T07:20:45Z"}}}}'
64
+ http_version: '1.1'
65
+ recorded_at: Sun, 28 Jul 2013 06:20:45 GMT
66
+ recorded_with: VCR 2.5.0
@@ -0,0 +1,51 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.songkick.com/api/3.0/users/jrmehle/calendar.json?reason=attendance&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
+ - Sat, 10 Aug 2013 07:42:19 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
+ - Sat, 10 Aug 2013 07:52:19 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":{"calendarEntry":[{"reason":{"attendance":"i_might_go"},"event":{"type":"Concert","status":"ok","displayName":"Oceano
34
+ with Reflections, Sworn In, and Adestria at The Garage (August 19, 2013)","popularity":0.0,"start":{"time":"17:30:00","date":"2013-08-19","datetime":"2013-08-19T17:30:00-0600"},"location":{"city":"Burnsville,
35
+ MN, US","lat":44.7657691,"lng":-93.2743603},"uri":"http://www.songkick.com/concerts/17472154-oceano-at-garage?utm_source=4791&utm_medium=partner","id":17472154,"performance":[{"billingIndex":1,"billing":"headline","displayName":"Oceano","artist":{"identifier":[{"href":"http://api.songkick.com/api/3.0/artists/mbid:d2ad541b-55d1-48bf-bdf1-ef0c3d3518e2.json","mbid":"d2ad541b-55d1-48bf-bdf1-ef0c3d3518e2"},{"href":"http://api.songkick.com/api/3.0/artists/mbid:06c2da57-090e-46b8-a671-0e085618ab61.json","mbid":"06c2da57-090e-46b8-a671-0e085618ab61"}],"displayName":"Oceano","uri":"http://www.songkick.com/artists/2050016-oceano?utm_source=4791&utm_medium=partner","id":2050016},"id":34584889},{"billingIndex":2,"billing":"support","displayName":"Reflections","artist":{"identifier":[{"href":"http://api.songkick.com/api/3.0/artists/mbid:c03e760f-c289-45c2-b5b3-d8cd2138f71c.json","mbid":"c03e760f-c289-45c2-b5b3-d8cd2138f71c"},{"href":"http://api.songkick.com/api/3.0/artists/mbid:b19805cd-83ba-43f0-894f-ccf858668eca.json","mbid":"b19805cd-83ba-43f0-894f-ccf858668eca"},{"href":"http://api.songkick.com/api/3.0/artists/mbid:8f6f6b87-4415-42d9-9da6-fb6b00a1bb7d.json","mbid":"8f6f6b87-4415-42d9-9da6-fb6b00a1bb7d"}],"displayName":"Reflections","uri":"http://www.songkick.com/artists/139272-reflections?utm_source=4791&utm_medium=partner","id":139272},"id":34584894},{"billingIndex":3,"billing":"support","displayName":"Sworn
36
+ In","artist":{"identifier":[{"href":"http://api.songkick.com/api/3.0/artists/mbid:02d1a7e3-abd8-4908-bbff-e53da5881407.json","mbid":"02d1a7e3-abd8-4908-bbff-e53da5881407"}],"displayName":"Sworn
37
+ In","uri":"http://www.songkick.com/artists/434303-sworn-in?utm_source=4791&utm_medium=partner","id":434303},"id":34584899},{"billingIndex":4,"billing":"support","displayName":"Adestria","artist":{"identifier":[{"href":"http://api.songkick.com/api/3.0/artists/mbid:d142cc73-95da-4cb2-b59b-a5958a4b84bd.json","mbid":"d142cc73-95da-4cb2-b59b-a5958a4b84bd"}],"displayName":"Adestria","uri":"http://www.songkick.com/artists/3453296-adestria?utm_source=4791&utm_medium=partner","id":3453296},"id":34584904}],"venue":{"displayName":"The
38
+ Garage","metroArea":{"displayName":"Twin Cities","uri":"http://www.songkick.com/metro_areas/35130-us-twin-cities?utm_source=4791&utm_medium=partner","id":35130,"state":{"displayName":"MN"},"country":{"displayName":"US"}},"lat":44.7657691,"lng":-93.2743603,"uri":"http://www.songkick.com/venues/68388-garage?utm_source=4791&utm_medium=partner","id":68388}},"createdAt":"2013-07-28T07:08:44+0100"},{"reason":{"attendance":"i_might_go"},"event":{"type":"Concert","status":"ok","performance":[{"artist":{"identifier":[{"mbid":"b4946461-dacb-4aa9-a77c-7b3231317794","href":"http://api.songkick.com/api/3.0/artists/mbid:b4946461-dacb-4aa9-a77c-7b3231317794.json"}],"displayName":"Senses
39
+ Fail","uri":"http://www.songkick.com/artists/109675-senses-fail?utm_source=4791&utm_medium=partner","id":109675},"billingIndex":1,"billing":"headline","displayName":"Senses
40
+ Fail","id":34361339},{"artist":{"identifier":[{"mbid":"498e46e2-59c9-4320-8ccf-12c67a29b125","href":"http://api.songkick.com/api/3.0/artists/mbid:498e46e2-59c9-4320-8ccf-12c67a29b125.json"}],"displayName":"Expire","uri":"http://www.songkick.com/artists/1300477-expire?utm_source=4791&utm_medium=partner","id":1300477},"billingIndex":2,"billing":"headline","displayName":"Expire","id":34361349},{"artist":{"identifier":[{"mbid":"6fca6647-1dce-4028-8348-68238b8d2237","href":"http://api.songkick.com/api/3.0/artists/mbid:6fca6647-1dce-4028-8348-68238b8d2237.json"}],"displayName":"For
41
+ the Fallen Dreams","uri":"http://www.songkick.com/artists/1791519-for-the-fallen-dreams?utm_source=4791&utm_medium=partner","id":1791519},"billingIndex":3,"billing":"support","displayName":"For
42
+ the Fallen Dreams","id":34361344},{"artist":{"identifier":[],"displayName":"Being
43
+ As an Ocean","uri":"http://www.songkick.com/artists/5131333-being-as-an-ocean?utm_source=4791&utm_medium=partner","id":5131333},"billingIndex":4,"billing":"support","displayName":"Being
44
+ As an Ocean","id":34361354}],"venue":{"lng":-93.2743603,"metroArea":{"displayName":"Twin
45
+ Cities","uri":"http://www.songkick.com/metro_areas/35130-us-twin-cities?utm_source=4791&utm_medium=partner","id":35130,"state":{"displayName":"MN"},"country":{"displayName":"US"}},"displayName":"The
46
+ Garage","uri":"http://www.songkick.com/venues/68388-garage?utm_source=4791&utm_medium=partner","id":68388,"lat":44.7657691},"start":{"time":"17:00:00","date":"2013-10-11","datetime":"2013-10-11T17:00:00-0600"},"location":{"lng":-93.2743603,"city":"Burnsville,
47
+ MN, US","lat":44.7657691},"displayName":"Senses Fail and Expire with For the
48
+ Fallen Dreams and Being As an Ocean at The Garage (October 11, 2013)","uri":"http://www.songkick.com/concerts/17361884-senses-fail-at-garage?utm_source=4791&utm_medium=partner","popularity":0.0,"id":17361884},"createdAt":"2013-07-21T02:51:32+0100"}]},"perPage":50,"page":1,"totalEntries":2}}'
49
+ http_version: '1.1'
50
+ recorded_at: Sat, 10 Aug 2013 07:42:19 GMT
51
+ recorded_with: VCR 2.5.0