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
@@ -1 +1,732 @@
1
- {"resultsPage":{"results":{"event":{"popularity":0.00283,"uri":"http:\/\/www.songkick.com\/concerts\/7391451-17-hippies-at-muffathalle?utm_source=4961&utm_medium=partner","location":{"city":"Munich, Germany","lng":11.58971,"lat":48.13321},"displayName":"17 Hippies at Muffathalle (May 11, 2011)","id":7391451,"type":"Concert","start":{"time":"20:00:00","date":"2011-05-11","datetime":"2011-05-11T20:00:00+0100"},"performance":[{"artist":{"uri":"http:\/\/www.songkick.com\/artists\/306885-17-hippies?utm_source=4961&utm_medium=partner","displayName":"17 Hippies","id":306885,"identifier":[{"href":"http:\/\/api.songkick.com\/api\/3.0\/artists\/mbid:8315641a-6dca-40fd-a893-d247e4db84c3.json","mbid":"8315641a-6dca-40fd-a893-d247e4db84c3"}]},"displayName":"17 Hippies","billingIndex":1,"id":13542731,"billing":"headline"}],"venue":{"city":{"uri":"http:\/\/www.songkick.com\/metro_areas\/28549-germany-munich?utm_source=4961&utm_medium=partner","country":{"displayName":"Germany"},"displayName":"Munich","id":28549},"zip":"81667","uri":"http:\/\/www.songkick.com\/venues\/33264-muffathalle?utm_source=4961&utm_medium=partner","displayName":"Muffathalle","street":"Zellstr. 4, Munich","lng":11.58971,"id":33264,"phone":"+49 89 458750-7","website":"www.muffathalle.de","capacity":null,"metroArea":{"uri":"http:\/\/www.songkick.com\/metro_areas\/28549-germany-munich?utm_source=4961&utm_medium=partner","country":{"displayName":"Germany"},"displayName":"Munich","id":28549},"description":"","lat":48.13321},"status":"ok"}},"status":"ok"}}
1
+ {
2
+ "resultsPage": {
3
+ "status": "ok",
4
+ "results": {
5
+ "event": [
6
+ {
7
+ "type": "Festival",
8
+ "performance": [
9
+ {
10
+ "billingIndex": 1,
11
+ "billing": "headline",
12
+ "artist": {
13
+ "displayName": "The Ghost Inside",
14
+ "uri": "http://www.songkick.com/artists/595055-ghost-inside?utm_source=4791&utm_medium=partner",
15
+ "id": 595055,
16
+ "identifier": [
17
+ {
18
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:6fbd58c3-e9b3-4419-a197-0a0f22baed94.json",
19
+ "mbid": "6fbd58c3-e9b3-4419-a197-0a0f22baed94"
20
+ }
21
+ ]
22
+ },
23
+ "displayName": "The Ghost Inside",
24
+ "id": 32282854
25
+ },
26
+ {
27
+ "billingIndex": 2,
28
+ "billing": "headline",
29
+ "artist": {
30
+ "displayName": "Bane",
31
+ "uri": "http://www.songkick.com/artists/456837-bane?utm_source=4791&utm_medium=partner",
32
+ "id": 456837,
33
+ "identifier": [
34
+ {
35
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:adf5ac61-4d7b-4cbc-95ce-ee2dc486f884.json",
36
+ "mbid": "adf5ac61-4d7b-4cbc-95ce-ee2dc486f884"
37
+ }
38
+ ]
39
+ },
40
+ "displayName": "Bane",
41
+ "id": 32282849
42
+ },
43
+ {
44
+ "billingIndex": 3,
45
+ "billing": "headline",
46
+ "artist": {
47
+ "displayName": "Counterparts",
48
+ "uri": "http://www.songkick.com/artists/231185-counterparts?utm_source=4791&utm_medium=partner",
49
+ "id": 231185,
50
+ "identifier": [
51
+ {
52
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:4b0dd5e7-c795-42bd-8311-bc9f71fabd0a.json",
53
+ "mbid": "4b0dd5e7-c795-42bd-8311-bc9f71fabd0a"
54
+ }
55
+ ]
56
+ },
57
+ "displayName": "Counterparts",
58
+ "id": 32282904
59
+ },
60
+ {
61
+ "billingIndex": 4,
62
+ "billing": "headline",
63
+ "artist": {
64
+ "displayName": "Hundredth",
65
+ "uri": "http://www.songkick.com/artists/974040-hundredth?utm_source=4791&utm_medium=partner",
66
+ "id": 974040,
67
+ "identifier": [
68
+ {
69
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:4e56bf61-306f-4e47-8f2d-931a26ce555d.json",
70
+ "mbid": "4e56bf61-306f-4e47-8f2d-931a26ce555d"
71
+ },
72
+ {
73
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:66b2f925-e924-4cde-b09f-27ec21d29564.json",
74
+ "mbid": "66b2f925-e924-4cde-b09f-27ec21d29564"
75
+ }
76
+ ]
77
+ },
78
+ "displayName": "Hundredth",
79
+ "id": 32282939
80
+ },
81
+ {
82
+ "billingIndex": 5,
83
+ "billing": "headline",
84
+ "artist": {
85
+ "displayName": "Cruel Hand",
86
+ "uri": "http://www.songkick.com/artists/608635-cruel-hand?utm_source=4791&utm_medium=partner",
87
+ "id": 608635,
88
+ "identifier": [
89
+ {
90
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:29f50e16-0b84-4d0a-a72f-e4f1bb5ad48f.json",
91
+ "mbid": "29f50e16-0b84-4d0a-a72f-e4f1bb5ad48f"
92
+ }
93
+ ]
94
+ },
95
+ "displayName": "Cruel Hand",
96
+ "id": 32282909
97
+ },
98
+ {
99
+ "billingIndex": 6,
100
+ "billing": "headline",
101
+ "artist": {
102
+ "displayName": "The Nomads",
103
+ "uri": "http://www.songkick.com/artists/476065-nomads?utm_source=4791&utm_medium=partner",
104
+ "id": 476065,
105
+ "identifier": [
106
+ {
107
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:23da7d16-4daa-4326-a5fe-b8182ae0c5fa.json",
108
+ "mbid": "23da7d16-4daa-4326-a5fe-b8182ae0c5fa"
109
+ },
110
+ {
111
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:6173fc1e-9335-4c96-9b6a-fea30e3f41df.json",
112
+ "mbid": "6173fc1e-9335-4c96-9b6a-fea30e3f41df"
113
+ },
114
+ {
115
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:6b7b2a04-2faa-4c09-821a-0aa7731a86ff.json",
116
+ "mbid": "6b7b2a04-2faa-4c09-821a-0aa7731a86ff"
117
+ },
118
+ {
119
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:f2a8d597-c4b2-41a8-b040-db1441293a8d.json",
120
+ "mbid": "f2a8d597-c4b2-41a8-b040-db1441293a8d"
121
+ },
122
+ {
123
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:776cbff8-072f-406d-ae58-69e9dcde8201.json",
124
+ "mbid": "776cbff8-072f-406d-ae58-69e9dcde8201"
125
+ },
126
+ {
127
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:48f22a51-fa64-43f4-9eaa-a8c2364c4ae9.json",
128
+ "mbid": "48f22a51-fa64-43f4-9eaa-a8c2364c4ae9"
129
+ },
130
+ {
131
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:dea545d3-0631-4f2e-8e71-8b9bf45037d0.json",
132
+ "mbid": "dea545d3-0631-4f2e-8e71-8b9bf45037d0"
133
+ },
134
+ {
135
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:beeaa03a-65b1-40da-a33f-e92b8ff972d1.json",
136
+ "mbid": "beeaa03a-65b1-40da-a33f-e92b8ff972d1"
137
+ },
138
+ {
139
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:6ad841a3-d2e0-42bc-9580-894cf340655c.json",
140
+ "mbid": "6ad841a3-d2e0-42bc-9580-894cf340655c"
141
+ },
142
+ {
143
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:e0b72319-01f2-4c55-ae84-5398801f107b.json",
144
+ "mbid": "e0b72319-01f2-4c55-ae84-5398801f107b"
145
+ },
146
+ {
147
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:11107e82-ff0b-4a72-b0a0-a3d505f38c81.json",
148
+ "mbid": "11107e82-ff0b-4a72-b0a0-a3d505f38c81"
149
+ },
150
+ {
151
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:a7c497df-e5a6-46db-9c8a-f259ba8290ab.json",
152
+ "mbid": "a7c497df-e5a6-46db-9c8a-f259ba8290ab"
153
+ },
154
+ {
155
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:8725964a-98d5-402e-aed4-05c1be7a6488.json",
156
+ "mbid": "8725964a-98d5-402e-aed4-05c1be7a6488"
157
+ }
158
+ ]
159
+ },
160
+ "displayName": "The Nomads",
161
+ "id": 32282889
162
+ },
163
+ {
164
+ "billingIndex": 7,
165
+ "billing": "headline",
166
+ "artist": {
167
+ "displayName": "Tragedy",
168
+ "uri": "http://www.songkick.com/artists/479109-tragedy?utm_source=4791&utm_medium=partner",
169
+ "id": 479109,
170
+ "identifier": [
171
+ {
172
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:633f7917-3872-4088-8371-1a11031e5062.json",
173
+ "mbid": "633f7917-3872-4088-8371-1a11031e5062"
174
+ },
175
+ {
176
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:efa0c09f-b0a1-4f21-abd6-a1f2c3d97ab1.json",
177
+ "mbid": "efa0c09f-b0a1-4f21-abd6-a1f2c3d97ab1"
178
+ },
179
+ {
180
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:0255b7f5-8f9d-4b8d-bfa9-6d3e88385b3f.json",
181
+ "mbid": "0255b7f5-8f9d-4b8d-bfa9-6d3e88385b3f"
182
+ }
183
+ ]
184
+ },
185
+ "displayName": "Tragedy",
186
+ "id": 32282844
187
+ },
188
+ {
189
+ "billingIndex": 8,
190
+ "billing": "headline",
191
+ "artist": {
192
+ "displayName": "Alpha & Omega",
193
+ "uri": "http://www.songkick.com/artists/144387-alpha-and-omega?utm_source=4791&utm_medium=partner",
194
+ "id": 144387,
195
+ "identifier": [
196
+ {
197
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:0ac81a92-b119-40be-875d-e091071588f8.json",
198
+ "mbid": "0ac81a92-b119-40be-875d-e091071588f8"
199
+ }
200
+ ]
201
+ },
202
+ "displayName": "Alpha & Omega",
203
+ "id": 32282864
204
+ },
205
+ {
206
+ "billingIndex": 9,
207
+ "billing": "headline",
208
+ "artist": {
209
+ "displayName": "Lionheart",
210
+ "uri": "http://www.songkick.com/artists/209307-lionheart?utm_source=4791&utm_medium=partner",
211
+ "id": 209307,
212
+ "identifier": [
213
+ {
214
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:e4ed94f9-f757-419f-b05e-7b524b3ce421.json",
215
+ "mbid": "e4ed94f9-f757-419f-b05e-7b524b3ce421"
216
+ }
217
+ ]
218
+ },
219
+ "displayName": "Lionheart",
220
+ "id": 32282949
221
+ },
222
+ {
223
+ "billingIndex": 10,
224
+ "billing": "headline",
225
+ "artist": {
226
+ "displayName": "Reign Supreme",
227
+ "uri": "http://www.songkick.com/artists/577599-reign-supreme?utm_source=4791&utm_medium=partner",
228
+ "id": 577599,
229
+ "identifier": [
230
+ {
231
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:21eadc1d-d67f-4a44-9fd8-6f583a162c9a.json",
232
+ "mbid": "21eadc1d-d67f-4a44-9fd8-6f583a162c9a"
233
+ }
234
+ ]
235
+ },
236
+ "displayName": "Reign Supreme",
237
+ "id": 32282959
238
+ },
239
+ {
240
+ "billingIndex": 11,
241
+ "billing": "headline",
242
+ "artist": {
243
+ "displayName": "Loma Prieta",
244
+ "uri": "http://www.songkick.com/artists/1990148-loma-prieta?utm_source=4791&utm_medium=partner",
245
+ "id": 1990148,
246
+ "identifier": [
247
+ {
248
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:d6d553f5-53d4-4d51-9875-1722b7a4c88c.json",
249
+ "mbid": "d6d553f5-53d4-4d51-9875-1722b7a4c88c"
250
+ }
251
+ ]
252
+ },
253
+ "displayName": "Loma Prieta",
254
+ "id": 32282944
255
+ },
256
+ {
257
+ "billingIndex": 12,
258
+ "billing": "headline",
259
+ "artist": {
260
+ "displayName": "Rotting Out",
261
+ "uri": "http://www.songkick.com/artists/802107-rotting-out?utm_source=4791&utm_medium=partner",
262
+ "id": 802107,
263
+ "identifier": []
264
+ },
265
+ "displayName": "Rotting Out",
266
+ "id": 32282874
267
+ },
268
+ {
269
+ "billingIndex": 13,
270
+ "billing": "headline",
271
+ "artist": {
272
+ "displayName": "Cold World",
273
+ "uri": "http://www.songkick.com/artists/198727-cold-world?utm_source=4791&utm_medium=partner",
274
+ "id": 198727,
275
+ "identifier": [
276
+ {
277
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:04a0351c-6100-469d-b458-66ede40881f3.json",
278
+ "mbid": "04a0351c-6100-469d-b458-66ede40881f3"
279
+ }
280
+ ]
281
+ },
282
+ "displayName": "Cold World",
283
+ "id": 32282899
284
+ },
285
+ {
286
+ "billingIndex": 14,
287
+ "billing": "headline",
288
+ "artist": {
289
+ "displayName": "Wisdom In Chains",
290
+ "uri": "http://www.songkick.com/artists/339188-wisdom-in-chains?utm_source=4791&utm_medium=partner",
291
+ "id": 339188,
292
+ "identifier": [
293
+ {
294
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:e6024269-8a9f-423d-ad53-de7a7b698b89.json",
295
+ "mbid": "e6024269-8a9f-423d-ad53-de7a7b698b89"
296
+ }
297
+ ]
298
+ },
299
+ "displayName": "Wisdom In Chains",
300
+ "id": 32282869
301
+ },
302
+ {
303
+ "billingIndex": 15,
304
+ "billing": "headline",
305
+ "artist": {
306
+ "displayName": "Bitter End",
307
+ "uri": "http://www.songkick.com/artists/110844-bitter-end?utm_source=4791&utm_medium=partner",
308
+ "id": 110844,
309
+ "identifier": [
310
+ {
311
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:a29cc48a-fff5-423b-b5e6-dca4c8d879fe.json",
312
+ "mbid": "a29cc48a-fff5-423b-b5e6-dca4c8d879fe"
313
+ }
314
+ ]
315
+ },
316
+ "displayName": "Bitter End",
317
+ "id": 32282894
318
+ },
319
+ {
320
+ "billingIndex": 16,
321
+ "billing": "headline",
322
+ "artist": {
323
+ "displayName": "Xibalba",
324
+ "uri": "http://www.songkick.com/artists/65181-xibalba?utm_source=4791&utm_medium=partner",
325
+ "id": 65181,
326
+ "identifier": [
327
+ {
328
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:76caaf47-2b92-48b5-b0d2-d1ad147f3986.json",
329
+ "mbid": "76caaf47-2b92-48b5-b0d2-d1ad147f3986"
330
+ },
331
+ {
332
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:c35d1e7a-7d87-4140-a3fc-26c9dffc0db4.json",
333
+ "mbid": "c35d1e7a-7d87-4140-a3fc-26c9dffc0db4"
334
+ },
335
+ {
336
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:783a1486-d5d0-4658-bc8a-6747bfe09791.json",
337
+ "mbid": "783a1486-d5d0-4658-bc8a-6747bfe09791"
338
+ }
339
+ ]
340
+ },
341
+ "displayName": "Xibalba",
342
+ "id": 32282974
343
+ },
344
+ {
345
+ "billingIndex": 17,
346
+ "billing": "headline",
347
+ "artist": {
348
+ "displayName": "Expire",
349
+ "uri": "http://www.songkick.com/artists/1300477-expire?utm_source=4791&utm_medium=partner",
350
+ "id": 1300477,
351
+ "identifier": [
352
+ {
353
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:498e46e2-59c9-4320-8ccf-12c67a29b125.json",
354
+ "mbid": "498e46e2-59c9-4320-8ccf-12c67a29b125"
355
+ }
356
+ ]
357
+ },
358
+ "displayName": "Expire",
359
+ "id": 32282919
360
+ },
361
+ {
362
+ "billingIndex": 18,
363
+ "billing": "headline",
364
+ "artist": {
365
+ "displayName": "Left For Dead",
366
+ "uri": "http://www.songkick.com/artists/466938-left-for-dead?utm_source=4791&utm_medium=partner",
367
+ "id": 466938,
368
+ "identifier": [
369
+ {
370
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:2600539b-8481-4583-af66-4394267069e7.json",
371
+ "mbid": "2600539b-8481-4583-af66-4394267069e7"
372
+ },
373
+ {
374
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:cd47905f-3117-4bb2-9291-c258b240ef7d.json",
375
+ "mbid": "cd47905f-3117-4bb2-9291-c258b240ef7d"
376
+ },
377
+ {
378
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:b5d9b78d-abb3-4728-866e-73a358a97fa2.json",
379
+ "mbid": "b5d9b78d-abb3-4728-866e-73a358a97fa2"
380
+ }
381
+ ]
382
+ },
383
+ "displayName": "Left For Dead",
384
+ "id": 32282859
385
+ },
386
+ {
387
+ "billingIndex": 19,
388
+ "billing": "headline",
389
+ "artist": {
390
+ "displayName": "ACxDC",
391
+ "uri": "http://www.songkick.com/artists/635370-acxdc?utm_source=4791&utm_medium=partner",
392
+ "id": 635370,
393
+ "identifier": [
394
+ {
395
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:024d960f-4170-4885-8a98-a2cca4d69566.json",
396
+ "mbid": "024d960f-4170-4885-8a98-a2cca4d69566"
397
+ }
398
+ ]
399
+ },
400
+ "displayName": "ACxDC",
401
+ "id": 32282879
402
+ },
403
+ {
404
+ "billingIndex": 20,
405
+ "billing": "headline",
406
+ "artist": {
407
+ "displayName": "Downpresser",
408
+ "uri": "http://www.songkick.com/artists/709313-downpresser?utm_source=4791&utm_medium=partner",
409
+ "id": 709313,
410
+ "identifier": []
411
+ },
412
+ "displayName": "Downpresser",
413
+ "id": 32282914
414
+ },
415
+ {
416
+ "billingIndex": 21,
417
+ "billing": "headline",
418
+ "artist": {
419
+ "displayName": "Homewrecker",
420
+ "uri": "http://www.songkick.com/artists/394976-homewrecker?utm_source=4791&utm_medium=partner",
421
+ "id": 394976,
422
+ "identifier": [
423
+ {
424
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:ca29383b-0b95-44ac-934a-b9ceaf2609df.json",
425
+ "mbid": "ca29383b-0b95-44ac-934a-b9ceaf2609df"
426
+ }
427
+ ]
428
+ },
429
+ "displayName": "Homewrecker",
430
+ "id": 32282934
431
+ },
432
+ {
433
+ "billingIndex": 22,
434
+ "billing": "headline",
435
+ "artist": {
436
+ "displayName": "The Beautiful Ones",
437
+ "uri": "http://www.songkick.com/artists/4252111-beautiful-ones?utm_source=4791&utm_medium=partner",
438
+ "id": 4252111,
439
+ "identifier": []
440
+ },
441
+ "displayName": "The Beautiful Ones",
442
+ "id": 32282964
443
+ },
444
+ {
445
+ "billingIndex": 23,
446
+ "billing": "headline",
447
+ "artist": {
448
+ "displayName": "Harness",
449
+ "uri": "http://www.songkick.com/artists/235070-harness?utm_source=4791&utm_medium=partner",
450
+ "id": 235070,
451
+ "identifier": []
452
+ },
453
+ "displayName": "Harness",
454
+ "id": 32282924
455
+ },
456
+ {
457
+ "billingIndex": 24,
458
+ "billing": "headline",
459
+ "artist": {
460
+ "displayName": "Malfunction",
461
+ "uri": "http://www.songkick.com/artists/475584-malfunction?utm_source=4791&utm_medium=partner",
462
+ "id": 475584,
463
+ "identifier": [
464
+ {
465
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:0d04a89d-f7c4-4551-8465-9d3610e4d29d.json",
466
+ "mbid": "0d04a89d-f7c4-4551-8465-9d3610e4d29d"
467
+ }
468
+ ]
469
+ },
470
+ "displayName": "Malfunction",
471
+ "id": 32282954
472
+ },
473
+ {
474
+ "billingIndex": 25,
475
+ "billing": "headline",
476
+ "artist": {
477
+ "displayName": "Life for a Life",
478
+ "uri": "http://www.songkick.com/artists/4563283-life-for-a-life?utm_source=4791&utm_medium=partner",
479
+ "id": 4563283,
480
+ "identifier": []
481
+ },
482
+ "displayName": "Life for a Life",
483
+ "id": 32282884
484
+ },
485
+ {
486
+ "billingIndex": 26,
487
+ "billing": "headline",
488
+ "artist": {
489
+ "displayName": "Tough Luck",
490
+ "uri": "http://www.songkick.com/artists/1165721-tough-luck?utm_source=4791&utm_medium=partner",
491
+ "id": 1165721,
492
+ "identifier": []
493
+ },
494
+ "displayName": "Tough Luck",
495
+ "id": 32282969
496
+ },
497
+ {
498
+ "billingIndex": 27,
499
+ "billing": "headline",
500
+ "artist": {
501
+ "displayName": "Hesitation Wounds",
502
+ "uri": "http://www.songkick.com/artists/4444118-hesitation-wounds?utm_source=4791&utm_medium=partner",
503
+ "id": 4444118,
504
+ "identifier": []
505
+ },
506
+ "displayName": "Hesitation Wounds",
507
+ "id": 32282929
508
+ }
509
+ ],
510
+ "venue": {
511
+ "metroArea": {
512
+ "displayName": "Los Angeles",
513
+ "uri": "http://www.songkick.com/metro_areas/17835-us-los-angeles?utm_source=4791&utm_medium=partner",
514
+ "id": 17835,
515
+ "state": {
516
+ "displayName": "CA"
517
+ },
518
+ "country": {
519
+ "displayName": "US"
520
+ }
521
+ },
522
+ "lat": 34.4306906,
523
+ "displayName": "Earl Warren Showgrounds",
524
+ "lng": -119.7357202,
525
+ "uri": "http://www.songkick.com/venues/30538-earl-warren-showgrounds?utm_source=4791&utm_medium=partner",
526
+ "id": 30538
527
+ },
528
+ "status": "ok",
529
+ "popularity": 0,
530
+ "start": {
531
+ "time": null,
532
+ "datetime": null,
533
+ "date": "2013-07-26"
534
+ },
535
+ "end": {
536
+ "time": null,
537
+ "datetime": null,
538
+ "date": "2013-07-28"
539
+ },
540
+ "displayName": "Sound and Fury 2013",
541
+ "location": {
542
+ "city": "Santa Barbara, CA, US",
543
+ "lat": 34.4306906,
544
+ "lng": -119.7357202
545
+ },
546
+ "series": {
547
+ "displayName": "Sound and Fury"
548
+ },
549
+ "uri": "http://www.songkick.com/festivals/126061/id/16353739-sound-and-fury-2013?utm_source=4791&utm_medium=partner",
550
+ "id": 16353739
551
+ },
552
+ {
553
+ "venue": {
554
+ "metroArea": {
555
+ "displayName": "Los Angeles",
556
+ "uri": "http://www.songkick.com/metro_areas/17835-us-los-angeles?utm_source=4791&utm_medium=partner",
557
+ "id": 17835,
558
+ "state": {
559
+ "displayName": "CA"
560
+ },
561
+ "country": {
562
+ "displayName": "US"
563
+ }
564
+ },
565
+ "displayName": "Chain Reaction",
566
+ "lat": 33.8324875,
567
+ "lng": -117.9395867,
568
+ "uri": "http://www.songkick.com/venues/1299-chain-reaction?utm_source=4791&utm_medium=partner",
569
+ "id": 1299
570
+ },
571
+ "type": "Concert",
572
+ "status": "ok",
573
+ "displayName": "Hundredth with Counterparts and Being As an Ocean at Chain Reaction (July 26, 2013)",
574
+ "start": {
575
+ "time": null,
576
+ "datetime": null,
577
+ "date": "2013-07-26"
578
+ },
579
+ "location": {
580
+ "lat": 33.8324875,
581
+ "lng": -117.9395867,
582
+ "city": "Anaheim, CA, US"
583
+ },
584
+ "popularity": 0,
585
+ "uri": "http://www.songkick.com/concerts/16665104-hundredth-at-chain-reaction?utm_source=4791&utm_medium=partner",
586
+ "id": 16665104,
587
+ "performance": [
588
+ {
589
+ "billingIndex": 1,
590
+ "artist": {
591
+ "displayName": "Hundredth",
592
+ "uri": "http://www.songkick.com/artists/974040-hundredth?utm_source=4791&utm_medium=partner",
593
+ "id": 974040,
594
+ "identifier": [
595
+ {
596
+ "mbid": "4e56bf61-306f-4e47-8f2d-931a26ce555d",
597
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:4e56bf61-306f-4e47-8f2d-931a26ce555d.json"
598
+ },
599
+ {
600
+ "mbid": "66b2f925-e924-4cde-b09f-27ec21d29564",
601
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:66b2f925-e924-4cde-b09f-27ec21d29564.json"
602
+ }
603
+ ]
604
+ },
605
+ "displayName": "Hundredth",
606
+ "billing": "headline",
607
+ "id": 32932674
608
+ },
609
+ {
610
+ "billingIndex": 2,
611
+ "artist": {
612
+ "displayName": "Counterparts",
613
+ "uri": "http://www.songkick.com/artists/231185-counterparts?utm_source=4791&utm_medium=partner",
614
+ "id": 231185,
615
+ "identifier": [
616
+ {
617
+ "mbid": "4b0dd5e7-c795-42bd-8311-bc9f71fabd0a",
618
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:4b0dd5e7-c795-42bd-8311-bc9f71fabd0a.json"
619
+ }
620
+ ]
621
+ },
622
+ "displayName": "Counterparts",
623
+ "billing": "support",
624
+ "id": 32932679
625
+ },
626
+ {
627
+ "billingIndex": 3,
628
+ "artist": {
629
+ "displayName": "Being As an Ocean",
630
+ "uri": "http://www.songkick.com/artists/5131333-being-as-an-ocean?utm_source=4791&utm_medium=partner",
631
+ "id": 5131333,
632
+ "identifier": []
633
+ },
634
+ "displayName": "Being As an Ocean",
635
+ "billing": "support",
636
+ "id": 32932684
637
+ }
638
+ ]
639
+ },
640
+ {
641
+ "type": "Concert",
642
+ "status": "ok",
643
+ "performance": [
644
+ {
645
+ "billingIndex": 1,
646
+ "artist": {
647
+ "displayName": "August Burns Red",
648
+ "uri": "http://www.songkick.com/artists/468456-august-burns-red?utm_source=4791&utm_medium=partner",
649
+ "id": 468456,
650
+ "identifier": [
651
+ {
652
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:5bac9b4f-2f1c-4d39-8d11-231d5b6650ce.json",
653
+ "mbid": "5bac9b4f-2f1c-4d39-8d11-231d5b6650ce"
654
+ }
655
+ ]
656
+ },
657
+ "billing": "headline",
658
+ "displayName": "August Burns Red",
659
+ "id": 32649769
660
+ },
661
+ {
662
+ "billingIndex": 2,
663
+ "artist": {
664
+ "displayName": "blessthefall",
665
+ "uri": "http://www.songkick.com/artists/582704-blessthefall?utm_source=4791&utm_medium=partner",
666
+ "id": 582704,
667
+ "identifier": [
668
+ {
669
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:aafa70a4-2f06-4975-935e-b283fc87de7e.json",
670
+ "mbid": "aafa70a4-2f06-4975-935e-b283fc87de7e"
671
+ }
672
+ ]
673
+ },
674
+ "billing": "support",
675
+ "displayName": "blessthefall",
676
+ "id": 32649774
677
+ },
678
+ {
679
+ "billingIndex": 3,
680
+ "artist": {
681
+ "displayName": "Counterparts",
682
+ "uri": "http://www.songkick.com/artists/231185-counterparts?utm_source=4791&utm_medium=partner",
683
+ "id": 231185,
684
+ "identifier": [
685
+ {
686
+ "href": "http://api.songkick.com/api/3.0/artists/mbid:4b0dd5e7-c795-42bd-8311-bc9f71fabd0a.json",
687
+ "mbid": "4b0dd5e7-c795-42bd-8311-bc9f71fabd0a"
688
+ }
689
+ ]
690
+ },
691
+ "billing": "support",
692
+ "displayName": "Counterparts",
693
+ "id": 32649779
694
+ }
695
+ ],
696
+ "venue": {
697
+ "displayName": "Vienna Arena",
698
+ "lat": 48.1878256,
699
+ "uri": "http://www.songkick.com/venues/29983-vienna-arena?utm_source=4791&utm_medium=partner",
700
+ "metroArea": {
701
+ "displayName": "Vienna",
702
+ "uri": "http://www.songkick.com/metro_areas/26771-austria-vienna?utm_source=4791&utm_medium=partner",
703
+ "id": 26771,
704
+ "country": {
705
+ "displayName": "Austria"
706
+ }
707
+ },
708
+ "id": 29983,
709
+ "lng": 16.4128698
710
+ },
711
+ "popularity": 0,
712
+ "start": {
713
+ "time": "19:00:00",
714
+ "datetime": "2013-09-25T19:00:00+0100",
715
+ "date": "2013-09-25"
716
+ },
717
+ "location": {
718
+ "city": "Vienna, Austria",
719
+ "lat": 48.1878256,
720
+ "lng": 16.4128698
721
+ },
722
+ "displayName": "August Burns Red with blessthefall and Counterparts at Vienna Arena (September 25, 2013)",
723
+ "uri": "http://www.songkick.com/concerts/16528149-august-burns-red-at-vienna-arena?utm_source=4791&utm_medium=partner",
724
+ "id": 16528149
725
+ }
726
+ ]
727
+ },
728
+ "perPage": 50,
729
+ "page": 1,
730
+ "totalEntries": 3
731
+ }
732
+ }