beatport 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -1
- data/Gemfile.lock +14 -10
- data/VERSION +1 -1
- data/beatport.gemspec +6 -6
- data/lib/beatport/catalog/artist.rb +1 -1
- data/lib/beatport/catalog/chart.rb +1 -1
- data/lib/beatport/catalog/release.rb +1 -1
- data/spec/catalog/chart_spec.rb +2 -2
- data/spec/catalog/release_spec.rb +2 -2
- data/spec/catalog/track_spec.rb +2 -2
- data/spec/fixtures/account_type.yml +6 -6
- data/spec/fixtures/artist.yml +606 -270
- data/spec/fixtures/audio_format.yml +9 -9
- data/spec/fixtures/autocomplete.yml +11 -12
- data/spec/fixtures/chart.yml +414 -177
- data/spec/fixtures/country.yml +3 -3
- data/spec/fixtures/currency.yml +3 -3
- data/spec/fixtures/genre.yml +125 -61
- data/spec/fixtures/item_type.yml +5 -4
- data/spec/fixtures/label.yml +300 -53
- data/spec/fixtures/mixed.yml +99 -15
- data/spec/fixtures/release.yml +1212 -615
- data/spec/fixtures/search.yml +185 -66
- data/spec/fixtures/source_type.yml +3 -3
- data/spec/fixtures/track.yml +977 -482
- data/spec/spec_helper.rb +1 -1
- metadata +5 -5
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,26 +1,27 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
+
addressable (2.3.2)
|
5
|
+
crack (0.3.2)
|
4
6
|
diff-lcs (1.1.3)
|
5
|
-
fakeweb (1.3.0)
|
6
7
|
git (1.2.5)
|
7
|
-
httparty (0.
|
8
|
+
httparty (0.10.2)
|
8
9
|
multi_json (~> 1.0)
|
9
|
-
multi_xml
|
10
|
+
multi_xml (>= 0.5.2)
|
10
11
|
i18n (0.6.1)
|
11
12
|
jeweler (1.8.4)
|
12
13
|
bundler (~> 1.0)
|
13
14
|
git (>= 1.2.5)
|
14
15
|
rake
|
15
16
|
rdoc
|
16
|
-
json (1.7.
|
17
|
+
json (1.7.6)
|
17
18
|
log_buddy (0.7.0)
|
18
19
|
money (5.1.0)
|
19
20
|
i18n (~> 0.6.0)
|
20
21
|
multi_json (1.5.0)
|
21
|
-
multi_xml (0.5.
|
22
|
+
multi_xml (0.5.3)
|
22
23
|
rake (10.0.3)
|
23
|
-
rdoc (3.12)
|
24
|
+
rdoc (3.12.1)
|
24
25
|
json (~> 1.4)
|
25
26
|
rspec (2.12.0)
|
26
27
|
rspec-core (~> 2.12.0)
|
@@ -29,20 +30,23 @@ GEM
|
|
29
30
|
rspec-core (2.12.2)
|
30
31
|
rspec-expectations (2.12.1)
|
31
32
|
diff-lcs (~> 1.1.3)
|
32
|
-
rspec-mocks (2.12.
|
33
|
-
vcr (2.
|
34
|
-
|
33
|
+
rspec-mocks (2.12.2)
|
34
|
+
vcr (2.4.0)
|
35
|
+
webmock (1.9.0)
|
36
|
+
addressable (>= 2.2.7)
|
37
|
+
crack (>= 0.1.7)
|
38
|
+
yard (0.8.4.1)
|
35
39
|
|
36
40
|
PLATFORMS
|
37
41
|
ruby
|
38
42
|
|
39
43
|
DEPENDENCIES
|
40
44
|
bundler
|
41
|
-
fakeweb
|
42
45
|
httparty
|
43
46
|
jeweler
|
44
47
|
log_buddy
|
45
48
|
money
|
46
49
|
rspec
|
47
50
|
vcr
|
51
|
+
webmock
|
48
52
|
yard
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.8
|
data/beatport.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "beatport"
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.8"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Mateo Murphy"]
|
12
|
-
s.date = "
|
12
|
+
s.date = "2013-02-08"
|
13
13
|
s.description = "A ruby gem for accessing the beatport api"
|
14
14
|
s.email = "mateo.murphy@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -112,7 +112,7 @@ Gem::Specification.new do |s|
|
|
112
112
|
s.homepage = "http://github.com/mateomurphy/beatport"
|
113
113
|
s.licenses = ["MIT"]
|
114
114
|
s.require_paths = ["lib"]
|
115
|
-
s.rubygems_version = "1.8.
|
115
|
+
s.rubygems_version = "1.8.24"
|
116
116
|
s.summary = "ruby gem for accessing the beatport api"
|
117
117
|
|
118
118
|
if s.respond_to? :specification_version then
|
@@ -122,7 +122,7 @@ Gem::Specification.new do |s|
|
|
122
122
|
s.add_runtime_dependency(%q<httparty>, [">= 0"])
|
123
123
|
s.add_runtime_dependency(%q<money>, [">= 0"])
|
124
124
|
s.add_development_dependency(%q<bundler>, [">= 0"])
|
125
|
-
s.add_development_dependency(%q<
|
125
|
+
s.add_development_dependency(%q<webmock>, [">= 0"])
|
126
126
|
s.add_development_dependency(%q<jeweler>, [">= 0"])
|
127
127
|
s.add_development_dependency(%q<log_buddy>, [">= 0"])
|
128
128
|
s.add_development_dependency(%q<rspec>, [">= 0"])
|
@@ -132,7 +132,7 @@ Gem::Specification.new do |s|
|
|
132
132
|
s.add_dependency(%q<httparty>, [">= 0"])
|
133
133
|
s.add_dependency(%q<money>, [">= 0"])
|
134
134
|
s.add_dependency(%q<bundler>, [">= 0"])
|
135
|
-
s.add_dependency(%q<
|
135
|
+
s.add_dependency(%q<webmock>, [">= 0"])
|
136
136
|
s.add_dependency(%q<jeweler>, [">= 0"])
|
137
137
|
s.add_dependency(%q<log_buddy>, [">= 0"])
|
138
138
|
s.add_dependency(%q<rspec>, [">= 0"])
|
@@ -143,7 +143,7 @@ Gem::Specification.new do |s|
|
|
143
143
|
s.add_dependency(%q<httparty>, [">= 0"])
|
144
144
|
s.add_dependency(%q<money>, [">= 0"])
|
145
145
|
s.add_dependency(%q<bundler>, [">= 0"])
|
146
|
-
s.add_dependency(%q<
|
146
|
+
s.add_dependency(%q<webmock>, [">= 0"])
|
147
147
|
s.add_dependency(%q<jeweler>, [">= 0"])
|
148
148
|
s.add_dependency(%q<log_buddy>, [">= 0"])
|
149
149
|
s.add_dependency(%q<rspec>, [">= 0"])
|
data/spec/catalog/chart_spec.rb
CHANGED
@@ -23,8 +23,8 @@ module Beatport::Catalog
|
|
23
23
|
its (:description) { should == "" }
|
24
24
|
its (:publish_date) { should == Date.new(2009, 05, 12) }
|
25
25
|
its (:'price.to_s') { should == '13.91' }
|
26
|
-
its (:'audio_format_fee.wav.to_s') { should == "
|
27
|
-
its (:'audio_format_fee.aiff.to_s') { should == "
|
26
|
+
its (:'audio_format_fee.wav.to_s') { should == "6.75" }
|
27
|
+
its (:'audio_format_fee.aiff.to_s') { should == "6.75" }
|
28
28
|
specify { subject.genres.map(&:name).should == ["Trance"] }
|
29
29
|
its (:'images.small.url') { should == "http://geo-media.beatport.com/image/491534.jpg"}
|
30
30
|
its (:'images.medium.url') { should == "http://geo-media.beatport.com/image/412921.jpg"}
|
@@ -27,8 +27,8 @@ module Beatport::Catalog
|
|
27
27
|
its (:purchasable) { should == true }
|
28
28
|
its (:'price.to_s') { should == "9.99" }
|
29
29
|
its (:'tracks_price.to_s') { should == "43.21" }
|
30
|
-
its (:'audio_format_fee.wav.to_s') { should == '
|
31
|
-
its (:'audio_format_fee.aiff.to_s') { should == '
|
30
|
+
its (:'audio_format_fee.wav.to_s') { should == '21.75'}
|
31
|
+
its (:'audio_format_fee.aiff.to_s') { should == '21.75'}
|
32
32
|
its (:'label.id') { should == 804 }
|
33
33
|
specify { subject.artists.map(&:name).should include("Paul Keeley") }
|
34
34
|
specify { subject.genres.map(&:name).sort.should == ["Progressive House", "Trance"] }
|
data/spec/catalog/track_spec.rb
CHANGED
@@ -33,8 +33,8 @@ module Beatport::Catalog
|
|
33
33
|
its (:rtmp_stream_url) { should == 'rtmp://geo-rtmp-samples.beatport.com/beatport/_definst_/mp3:lofi_samples/items/volumes/volume7/items/1000000/200000/10000/7000/700/90/1217790.LOFI'}
|
34
34
|
its (:exclusive) { should be_false }
|
35
35
|
its (:'price.to_s') { should == "1.49" }
|
36
|
-
its (:'audio_format_fee.wav.to_s') { should == "
|
37
|
-
its (:'audio_format_fee.aiff.to_s') { should == "
|
36
|
+
its (:'audio_format_fee.wav.to_s') { should == "0.75" }
|
37
|
+
its (:'audio_format_fee.aiff.to_s') { should == "0.75" }
|
38
38
|
# for some reason this doesn't always return the same result
|
39
39
|
# it { @track.current_status) { should == nil "General Content" }
|
40
40
|
its (:length) { should == "07:53" }
|
@@ -13,11 +13,11 @@ http_interactions:
|
|
13
13
|
message: OK
|
14
14
|
headers:
|
15
15
|
date:
|
16
|
-
-
|
16
|
+
- Fri, 08 Feb 2013 20:58:02 GMT
|
17
17
|
server:
|
18
18
|
- Apache
|
19
19
|
expires:
|
20
|
-
-
|
20
|
+
- Fri, 08 Feb 2013 21:28:02 GMT
|
21
21
|
pragma:
|
22
22
|
- public
|
23
23
|
cache-control:
|
@@ -36,7 +36,7 @@ http_interactions:
|
|
36
36
|
Express","cybersourceCardType":"003","issueNumberOrStartDateRequired":false,"validationRegex":"^3[47][0-9]{13}$","images":{"small":{"width":37,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_amex_37x23.gif"}}},{"code":"VISA","bpid":2,"name":"Visa","cybersourceCardType":"001","issueNumberOrStartDateRequired":false,"validationRegex":"^4[0-9]{12}(?:[0-9]{3})?$","images":{"small":{"width":37,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_visa_37x23.gif"}}},{"code":"ECMC","bpid":3,"name":"Master
|
37
37
|
Card","cybersourceCardType":"002","issueNumberOrStartDateRequired":false,"validationRegex":"^5[1-5][0-9]{14}$","images":{"small":{"width":37,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_mc_37x23.gif"}}},{"code":"SOLO_GB","bpid":5,"name":"Solo","cybersourceCardType":"024","issueNumberOrStartDateRequired":true,"validationRegex":"^(6334|6767)[0-9]{12,17}$","images":{"small":{"width":19,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_solo_19x23.gif"}}},{"code":"PAYPAL","bpid":6,"name":"PayPal","cybersourceCardType":"","issueNumberOrStartDateRequired":false,"validationRegex":null,"images":{"small":{"width":37,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_pp_37x23.gif"}}},{"code":"JCB","bpid":8,"name":"JCB","cybersourceCardType":"007","issueNumberOrStartDateRequired":false,"validationRegex":"^(?:2131|1800|35[0-9]{3})[0-9]{11}$","images":{"small":{"width":30,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_jcb_30x23.gif"}}}]}'
|
38
38
|
http_version: '1.1'
|
39
|
-
recorded_at:
|
39
|
+
recorded_at: Fri, 08 Feb 2013 20:58:02 GMT
|
40
40
|
- request:
|
41
41
|
method: get
|
42
42
|
uri: http://api.beatport.com/catalog/3/account-types?name=Visa
|
@@ -50,11 +50,11 @@ http_interactions:
|
|
50
50
|
message: OK
|
51
51
|
headers:
|
52
52
|
date:
|
53
|
-
-
|
53
|
+
- Fri, 08 Feb 2013 20:58:02 GMT
|
54
54
|
server:
|
55
55
|
- Apache
|
56
56
|
expires:
|
57
|
-
-
|
57
|
+
- Fri, 08 Feb 2013 21:28:02 GMT
|
58
58
|
pragma:
|
59
59
|
- public
|
60
60
|
cache-control:
|
@@ -71,5 +71,5 @@ http_interactions:
|
|
71
71
|
encoding: US-ASCII
|
72
72
|
string: ! '{"metadata":{"page":1,"perPage":10,"count":1},"results":[{"code":"VISA","bpid":2,"name":"Visa","cybersourceCardType":"001","issueNumberOrStartDateRequired":false,"validationRegex":"^4[0-9]{12}(?:[0-9]{3})?$","images":{"small":{"width":37,"height":23,"url":"https:\/\/secure-beatport.bpddn.com\/images\/creditcard\/logo_cc_visa_37x23.gif"}}}]}'
|
73
73
|
http_version: '1.1'
|
74
|
-
recorded_at:
|
74
|
+
recorded_at: Fri, 08 Feb 2013 20:58:02 GMT
|
75
75
|
recorded_with: VCR 2.3.0
|
data/spec/fixtures/artist.yml
CHANGED
@@ -37,7 +37,7 @@ http_interactions:
|
|
37
37
|
recorded_at: Sun, 11 Nov 2012 18:09:01 GMT
|
38
38
|
- request:
|
39
39
|
method: get
|
40
|
-
uri: http://api.beatport.com/catalog/3/
|
40
|
+
uri: http://api.beatport.com/catalog/3/artists?ids[]=7181&ids[]=7182
|
41
41
|
body:
|
42
42
|
encoding: US-ASCII
|
43
43
|
string: ''
|
@@ -48,11 +48,11 @@ http_interactions:
|
|
48
48
|
message: OK
|
49
49
|
headers:
|
50
50
|
date:
|
51
|
-
-
|
51
|
+
- Fri, 08 Feb 2013 21:04:22 GMT
|
52
52
|
server:
|
53
53
|
- Apache
|
54
54
|
expires:
|
55
|
-
-
|
55
|
+
- Fri, 08 Feb 2013 21:34:22 GMT
|
56
56
|
pragma:
|
57
57
|
- public
|
58
58
|
cache-control:
|
@@ -67,78 +67,18 @@ http_interactions:
|
|
67
67
|
- application/json
|
68
68
|
body:
|
69
69
|
encoding: US-ASCII
|
70
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
Got To Go (Seven Lions Remix)","type":"release","slug":"you-got-to-go-seven-lions-remix"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/4806511.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4806511.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/4806512.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4806512.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/4806513.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4806513.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/4807060.png","secureUrl":"https:\/\/media.beatport.com\/image\/4807060.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4806513.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4807060.png"}},"position":1},{"id":3626385,"selected":false,"type":"track","sku":"track-3626385","name":"Razorfish
|
78
|
-
feat. Tranquility Base","trackNumber":1,"active":true,"mixName":"Jerome Isma-Ae
|
79
|
-
Remix","title":"Razorfish feat. Tranquility Base (Jerome Isma-Ae Remix)","slug":"razorfish-feat-tranquility-base-jerome-isma-ae-remix","isrc":"GBEWA1200630","releaseDate":"2012-07-11","publishDate":"2012-07-11","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3626385.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/3000000\/600000\/20000\/6000\/300\/80\/3626385.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3626385.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/3000000\/600000\/20000\/6000\/300\/80\/3626385.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
80
|
-
Content","length":"6:29","bpm":128,"key":{"standard":{"letter":"A","sharp":false,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":5033,"name":"Jerome
|
81
|
-
Isma-Ae","slug":"jerome-isma-ae","type":"remixer"},{"id":6479,"name":"Tranquility
|
82
|
-
Base","slug":"tranquility-base","type":"artist"},{"id":7181,"name":"Above
|
83
|
-
& Beyond","slug":"above-and-beyond","type":"artist"}],"genres":[{"id":15,"name":"Progressive
|
84
|
-
House","slug":"progressive-house","type":"genre"}],"subGenres":[],"charts":[{"id":95745,"position":1,"type":"chart"},{"id":95769,"position":7,"type":"chart"},{"id":95781,"position":6,"type":"chart"},{"id":95494,"position":10,"type":"chart"},{"id":95877,"position":3,"type":"chart"},{"id":95967,"position":5,"type":"chart"},{"id":96124,"position":3,"type":"chart"},{"id":96284,"position":8,"type":"chart"},{"id":96537,"position":6,"type":"chart"},{"id":96768,"position":8,"type":"chart"},{"id":96812,"position":5,"type":"chart"},{"id":97164,"position":10,"type":"chart"},{"id":97229,"position":4,"type":"chart"},{"id":97346,"position":3,"type":"chart"},{"id":97279,"position":7,"type":"chart"},{"id":91107,"position":2,"type":"chart"},{"id":97752,"position":2,"type":"chart"},{"id":97790,"position":3,"type":"chart"},{"id":97833,"position":9,"type":"chart"},{"id":98120,"position":2,"type":"chart"},{"id":98133,"position":4,"type":"chart"},{"id":98138,"position":5,"type":"chart"},{"id":98197,"position":3,"type":"chart"},{"id":98225,"position":6,"type":"chart"},{"id":98545,"position":6,"type":"chart"},{"id":98780,"position":5,"type":"chart"},{"id":98876,"position":7,"type":"chart"},{"id":98950,"position":1,"type":"chart"},{"id":98951,"position":6,"type":"chart"},{"id":98979,"position":4,"type":"chart"},{"id":98985,"position":5,"type":"chart"},{"id":99008,"position":6,"type":"chart"},{"id":99055,"position":5,"type":"chart"},{"id":99076,"position":7,"type":"chart"},{"id":99193,"position":10,"type":"chart"},{"id":99574,"position":6,"type":"chart"},{"id":99621,"position":2,"type":"chart"},{"id":99669,"position":10,"type":"chart"},{"id":99840,"position":4,"type":"chart"},{"id":99945,"position":6,"type":"chart"},{"id":88227,"position":1,"type":"chart"},{"id":100011,"position":6,"type":"chart"},{"id":100177,"position":9,"type":"chart"},{"id":100875,"position":3,"type":"chart"},{"id":101095,"position":5,"type":"chart"},{"id":101197,"position":10,"type":"chart"},{"id":101220,"position":4,"type":"chart"},{"id":101362,"position":6,"type":"chart"},{"id":102145,"position":10,"type":"chart"},{"id":102248,"position":4,"type":"chart"},{"id":102704,"position":3,"type":"chart"},{"id":103172,"position":4,"type":"chart"},{"id":103392,"position":3,"type":"chart"},{"id":103426,"position":10,"type":"chart"},{"id":103510,"position":5,"type":"chart"},{"id":103672,"position":6,"type":"chart"},{"id":104177,"position":5,"type":"chart"},{"id":105137,"position":8,"type":"chart"},{"id":105204,"position":9,"type":"chart"},{"id":105281,"position":4,"type":"chart"},{"id":105600,"position":8,"type":"chart"},{"id":105871,"position":3,"type":"chart"},{"id":105947,"position":1,"type":"chart"},{"id":105971,"position":1,"type":"chart"},{"id":106299,"position":8,"type":"chart"},{"id":106562,"position":9,"type":"chart"},{"id":107646,"position":9,"type":"chart"},{"id":107742,"position":5,"type":"chart"},{"id":107760,"position":2,"type":"chart"},{"id":108306,"position":8,"type":"chart"},{"id":108478,"position":10,"type":"chart"},{"id":109928,"position":5,"type":"chart"},{"id":112879,"position":8,"type":"chart"},{"id":112905,"position":5,"type":"chart"},{"id":113005,"position":10,"type":"chart"},{"id":120007,"position":5,"type":"chart"},{"id":121631,"position":6,"type":"chart"},{"id":131245,"position":9,"type":"chart"},{"id":137372,"position":4,"type":"chart"}],"release":{"id":936414,"name":"Razorfish
|
85
|
-
(Jerome Isma-Ae Remix)","type":"release","slug":"razorfish-jerome-isma-ae-remix"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5675434.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5675434.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5675435.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5675435.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5675436.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5675436.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5672091.png","secureUrl":"https:\/\/media.beatport.com\/image\/5672091.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5675436.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5672091.png"}},"position":2},{"id":3917103,"selected":false,"type":"track","sku":"track-3917103","name":"Alchemy
|
86
|
-
feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Above & Beyond
|
87
|
-
Club Mix","title":"Alchemy feat. Zoe Johnston (Above & Beyond Club Mix)","slug":"alchemy-feat-zoe-johnston-above-and-beyond-club-mix","isrc":"GBEWA1200880","releaseDate":"2012-11-19","publishDate":"2012-11-19","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3917103.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/3000000\/900000\/10000\/7000\/100\/0\/3917103.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3917103.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/3000000\/900000\/10000\/7000\/100\/0\/3917103.LOFI"},"mp4":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3917103.LOFI.mp4","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp4:lofi_samples\/items\/volumes\/volume1\/items\/3000000\/900000\/10000\/7000\/100\/0\/3917103.LOFI"}},"price":{"code":"usd","symbol":"$","value":199},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"New
|
88
|
-
Release","length":"7:37","bpm":130,"key":{"standard":{"letter":"D","sharp":false,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
89
|
-
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
90
|
-
Johnston","slug":"zoe-johnston","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":130300,"position":7,"type":"chart"},{"id":130291,"position":8,"type":"chart"},{"id":130527,"position":10,"type":"chart"},{"id":130566,"position":3,"type":"chart"},{"id":130683,"position":6,"type":"chart"},{"id":130827,"position":5,"type":"chart"},{"id":130853,"position":3,"type":"chart"},{"id":135812,"position":5,"type":"chart"},{"id":131130,"position":1,"type":"chart"},{"id":131424,"position":1,"type":"chart"},{"id":131866,"position":2,"type":"chart"},{"id":132007,"position":1,"type":"chart"},{"id":132059,"position":5,"type":"chart"},{"id":132117,"position":3,"type":"chart"},{"id":132159,"position":1,"type":"chart"},{"id":132262,"position":3,"type":"chart"},{"id":132302,"position":10,"type":"chart"},{"id":125834,"position":7,"type":"chart"},{"id":132426,"position":2,"type":"chart"},{"id":132629,"position":6,"type":"chart"},{"id":132725,"position":2,"type":"chart"},{"id":132856,"position":9,"type":"chart"},{"id":133029,"position":5,"type":"chart"},{"id":133041,"position":2,"type":"chart"},{"id":133044,"position":2,"type":"chart"},{"id":133410,"position":6,"type":"chart"},{"id":133641,"position":6,"type":"chart"},{"id":133802,"position":10,"type":"chart"},{"id":134175,"position":5,"type":"chart"},{"id":134272,"position":1,"type":"chart"},{"id":134816,"position":6,"type":"chart"},{"id":135160,"position":7,"type":"chart"},{"id":135373,"position":5,"type":"chart"},{"id":135450,"position":7,"type":"chart"},{"id":135918,"position":2,"type":"chart"},{"id":136927,"position":3,"type":"chart"},{"id":137196,"position":7,"type":"chart"},{"id":137417,"position":9,"type":"chart"},{"id":137437,"position":2,"type":"chart"},{"id":137889,"position":6,"type":"chart"},{"id":138343,"position":6,"type":"chart"},{"id":139084,"position":6,"type":"chart"}],"release":{"id":994640,"name":"Alchemy","type":"release","slug":"alchemy"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/6242011.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6242011.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/6242012.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6242012.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/6242013.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6242013.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/6243501.png","secureUrl":"https:\/\/media.beatport.com\/image\/6243501.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6242013.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6243501.png"}},"position":3},{"id":3363600,"selected":false,"type":"track","sku":"track-3363600","name":"Love
|
91
|
-
Is Not Enough feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Above
|
92
|
-
& Beyond Club Mix","title":"Love Is Not Enough feat. Zoe Johnston (Above &
|
93
|
-
Beyond Club Mix)","slug":"love-is-not-enough-feat-zoe-johnston-above-and-beyond-club-mix","isrc":"GBEWA1101211","releaseDate":"2012-03-26","publishDate":"2012-03-26","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3363600.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/300000\/60000\/3000\/600\/0\/3363600.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3363600.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/300000\/60000\/3000\/600\/0\/3363600.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
94
|
-
Content","length":"7:43","bpm":130,"key":{"standard":{"letter":"A","sharp":true,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
95
|
-
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
96
|
-
Johnston","slug":"zoe-johnston","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":54500,"position":2,"type":"chart"},{"id":54737,"position":1,"type":"chart"},{"id":54823,"position":2,"type":"chart"},{"id":55271,"position":2,"type":"chart"},{"id":55550,"position":4,"type":"chart"},{"id":55710,"position":6,"type":"chart"},{"id":55761,"position":2,"type":"chart"},{"id":55832,"position":1,"type":"chart"},{"id":55990,"position":7,"type":"chart"},{"id":56380,"position":2,"type":"chart"},{"id":56764,"position":4,"type":"chart"},{"id":56780,"position":7,"type":"chart"},{"id":57320,"position":1,"type":"chart"},{"id":57658,"position":3,"type":"chart"},{"id":58384,"position":3,"type":"chart"},{"id":58822,"position":7,"type":"chart"},{"id":58999,"position":10,"type":"chart"},{"id":60400,"position":4,"type":"chart"},{"id":61224,"position":8,"type":"chart"},{"id":61411,"position":10,"type":"chart"},{"id":61531,"position":3,"type":"chart"},{"id":61823,"position":8,"type":"chart"},{"id":61939,"position":5,"type":"chart"},{"id":62645,"position":7,"type":"chart"},{"id":62956,"position":1,"type":"chart"},{"id":62981,"position":2,"type":"chart"},{"id":64403,"position":1,"type":"chart"},{"id":64468,"position":1,"type":"chart"},{"id":64541,"position":5,"type":"chart"},{"id":65919,"position":10,"type":"chart"},{"id":66106,"position":2,"type":"chart"},{"id":66108,"position":2,"type":"chart"},{"id":66137,"position":1,"type":"chart"},{"id":66224,"position":9,"type":"chart"},{"id":66562,"position":4,"type":"chart"},{"id":67501,"position":2,"type":"chart"},{"id":68369,"position":2,"type":"chart"},{"id":68382,"position":1,"type":"chart"},{"id":69654,"position":8,"type":"chart"},{"id":70013,"position":2,"type":"chart"},{"id":70077,"position":9,"type":"chart"},{"id":70738,"position":3,"type":"chart"},{"id":73312,"position":9,"type":"chart"},{"id":73693,"position":7,"type":"chart"},{"id":73815,"position":9,"type":"chart"},{"id":73882,"position":6,"type":"chart"},{"id":74810,"position":8,"type":"chart"},{"id":75555,"position":1,"type":"chart"},{"id":74612,"position":10,"type":"chart"},{"id":76499,"position":6,"type":"chart"},{"id":77762,"position":9,"type":"chart"},{"id":78057,"position":1,"type":"chart"},{"id":82792,"position":8,"type":"chart"},{"id":84907,"position":1,"type":"chart"},{"id":87408,"position":10,"type":"chart"},{"id":91887,"position":7,"type":"chart"},{"id":93015,"position":27,"type":"chart"},{"id":100106,"position":9,"type":"chart"}],"release":{"id":884851,"name":"Love
|
97
|
-
Is Not Enough","type":"release","slug":"love-is-not-enough"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5138374.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5138374.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5138375.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5138375.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5138376.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5138376.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5138377.png","secureUrl":"https:\/\/media.beatport.com\/image\/5138377.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5138376.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5138377.png"}},"position":4},{"id":3863148,"selected":false,"type":"track","sku":"track-3863148","name":"Room
|
98
|
-
For Happiness feat. Skylar Grey","trackNumber":1,"active":true,"mixName":"Above
|
99
|
-
& Beyond Remix","title":"Room For Happiness feat. Skylar Grey (Above & Beyond
|
100
|
-
Remix)","slug":"room-for-happiness-feat-skylar-grey-above-and-beyond-remix","isrc":"USUS11200952","releaseDate":"2012-11-06","publishDate":"2012-11-06","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3863148.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":false,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/800000\/60000\/3000\/100\/40\/3863148.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3863148.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/800000\/60000\/3000\/100\/40\/3863148.LOFI"},"mp4":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3863148.LOFI.mp4","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp4:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/800000\/60000\/3000\/100\/40\/3863148.LOFI"}},"price":{"code":"usd","symbol":"$","value":199},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"New
|
101
|
-
Release","length":"6:56","bpm":132,"key":{"standard":{"letter":"D","sharp":false,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":370,"name":"Kaskade","slug":"kaskade","type":"artist"},{"id":180356,"name":"Skylar
|
102
|
-
Grey","slug":"skylar-grey","type":"artist"},{"id":7181,"name":"Above & Beyond","slug":"above-and-beyond","type":"remixer"}],"genres":[{"id":15,"name":"Progressive
|
103
|
-
House","slug":"progressive-house","type":"genre"}],"subGenres":[],"charts":[{"id":128172,"position":2,"type":"chart"},{"id":128452,"position":9,"type":"chart"},{"id":129003,"position":9,"type":"chart"},{"id":129293,"position":9,"type":"chart"},{"id":129463,"position":10,"type":"chart"},{"id":129920,"position":4,"type":"chart"},{"id":130066,"position":6,"type":"chart"},{"id":129526,"position":9,"type":"chart"},{"id":130652,"position":6,"type":"chart"},{"id":130964,"position":8,"type":"chart"},{"id":131117,"position":8,"type":"chart"},{"id":131243,"position":8,"type":"chart"},{"id":131187,"position":4,"type":"chart"},{"id":131424,"position":8,"type":"chart"},{"id":131910,"position":5,"type":"chart"},{"id":131952,"position":6,"type":"chart"},{"id":132007,"position":5,"type":"chart"},{"id":132090,"position":5,"type":"chart"},{"id":132117,"position":6,"type":"chart"},{"id":132426,"position":10,"type":"chart"},{"id":132446,"position":4,"type":"chart"},{"id":131169,"position":10,"type":"chart"},{"id":133169,"position":5,"type":"chart"},{"id":133166,"position":8,"type":"chart"},{"id":133310,"position":4,"type":"chart"},{"id":133429,"position":7,"type":"chart"},{"id":133728,"position":10,"type":"chart"},{"id":133852,"position":8,"type":"chart"},{"id":134272,"position":3,"type":"chart"},{"id":129648,"position":7,"type":"chart"},{"id":136336,"position":4,"type":"chart"}],"release":{"id":983607,"name":"Room
|
104
|
-
for Happiness (feat. Skylar Grey) - Above & Beyond Remix","type":"release","slug":"room-for-happiness-feat-skylar-grey-above-and-beyond-remix"},"label":{"id":907,"name":"Ultra","type":"label","slug":"ultra","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/6130812.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6130812.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/6130813.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6130813.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/6130814.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6130814.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/6135119.png","secureUrl":"https:\/\/media.beatport.com\/image\/6135119.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6130814.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6135119.png"}},"position":5},{"id":1959084,"selected":false,"type":"track","sku":"track-1959084","name":"Thing
|
105
|
-
Called Love","trackNumber":1,"active":true,"mixName":"Extended Radio Mix","title":"Thing
|
106
|
-
Called Love (Extended Radio Mix)","slug":"thing-called-love-extended-radio-mix","isrc":"GBEWA1100292","releaseDate":"2011-06-12","publishDate":"2011-06-12","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/1959084.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/1000000\/900000\/50000\/9000\/0\/80\/1959084.LOFI","exclusive":false,"isPromotable":false,"preview":null,"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
107
|
-
Content","length":"6:57","bpm":134,"key":{"standard":{"letter":"D","sharp":true,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
108
|
-
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":145342,"name":"Richard
|
109
|
-
Bedford","slug":"richard-bedford","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":49223,"position":4,"type":"chart"},{"id":57734,"position":4,"type":"chart"},{"id":74332,"position":6,"type":"chart"},{"id":78931,"position":5,"type":"chart"},{"id":91303,"position":8,"type":"chart"},{"id":96479,"position":10,"type":"chart"},{"id":115628,"position":2,"type":"chart"}],"release":{"id":380469,"name":"Thing
|
110
|
-
Called Love","type":"release","slug":"thing-called-love"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/2918178.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918178.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/2918179.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918179.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/2918180.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918180.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/2918200.png","secureUrl":"https:\/\/media.beatport.com\/image\/2918200.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918180.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918200.png"}},"position":6},{"id":3098644,"selected":false,"type":"track","sku":"track-3098644","name":"Formula
|
111
|
-
Rossa","trackNumber":1,"active":true,"mixName":"Original Mix","title":"Formula
|
112
|
-
Rossa (Original Mix)","slug":"formula-rossa-original-mix","isrc":"GBEWA1100970","releaseDate":"2011-11-27","publishDate":"2011-11-27","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3098644.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume3\/items\/3000000\/0\/90000\/8000\/600\/40\/3098644.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3098644.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume3\/items\/3000000\/0\/90000\/8000\/600\/40\/3098644.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
113
|
-
Content","length":"8:15","bpm":128,"key":{"standard":{"letter":"G","sharp":true,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
114
|
-
& Beyond","slug":"above-and-beyond","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":44619,"position":7,"type":"chart"},{"id":42772,"position":1,"type":"chart"},{"id":43059,"position":2,"type":"chart"},{"id":43231,"position":8,"type":"chart"},{"id":43368,"position":2,"type":"chart"},{"id":43537,"position":4,"type":"chart"},{"id":43638,"position":5,"type":"chart"},{"id":44710,"position":2,"type":"chart"},{"id":45021,"position":3,"type":"chart"},{"id":45858,"position":7,"type":"chart"},{"id":46512,"position":6,"type":"chart"},{"id":48341,"position":5,"type":"chart"},{"id":87861,"position":5,"type":"chart"}],"release":{"id":834511,"name":"Formula
|
115
|
-
Rossa","type":"release","slug":"formula-rossa"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/4669012.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4669012.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/4669013.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4669013.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/4669014.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4669014.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/4672826.png","secureUrl":"https:\/\/media.beatport.com\/image\/4672826.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4669014.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4672826.png"}},"position":7},{"id":1959090,"selected":false,"type":"track","sku":"track-1959090","name":"Thing
|
116
|
-
Called Love","trackNumber":7,"active":true,"mixName":"Acapella","title":"Thing
|
117
|
-
Called Love (Acapella)","slug":"thing-called-love-acapella","isrc":"GBEWA1100336","releaseDate":"2011-06-12","publishDate":"2011-06-12","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/1959090.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/1000000\/900000\/50000\/9000\/0\/90\/1959090.LOFI","exclusive":false,"isPromotable":false,"preview":null,"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
118
|
-
Content","length":"2:51","bpm":0,"key":{"standard":{"letter":"D","sharp":true,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
119
|
-
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":145342,"name":"Richard
|
120
|
-
Bedford","slug":"richard-bedford","type":"artist"}],"genres":[{"id":16,"name":"DJ
|
121
|
-
Tools","slug":"dj-tools","type":"genre"}],"subGenres":[{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"}],"charts":[{"id":79260,"position":1,"type":"chart"},{"id":103745,"position":7,"type":"chart"},{"id":122306,"position":4,"type":"chart"}],"release":{"id":380469,"name":"Thing
|
122
|
-
Called Love","type":"release","slug":"thing-called-love"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/2918178.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918178.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/2918179.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918179.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/2918180.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918180.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/2918196.png","secureUrl":"https:\/\/media.beatport.com\/image\/2918196.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918180.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918196.png"}},"position":8},{"id":3372108,"selected":false,"type":"track","sku":"track-3372108","name":"Love
|
123
|
-
Is Not Enough feat. Zoe Johnston","trackNumber":2,"active":true,"mixName":"Maor
|
124
|
-
Levi & Bluestone Remix","title":"Love Is Not Enough feat. Zoe Johnston (Maor
|
125
|
-
Levi & Bluestone Remix)","slug":"love-is-not-enough-feat-zoe-johnston-maor-levi-and-bluestone-remix","isrc":"GBEWA1101213","releaseDate":"2012-04-02","publishDate":"2012-04-02","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3372108.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/300000\/70000\/2000\/100\/0\/3372108.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3372108.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/300000\/70000\/2000\/100\/0\/3372108.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
126
|
-
Content","length":"7:56","bpm":130,"key":{"standard":{"letter":"A","sharp":true,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
127
|
-
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
128
|
-
Johnston","slug":"zoe-johnston","type":"artist"},{"id":13105,"name":"Maor
|
129
|
-
Levi","slug":"maor-levi","type":"remixer"},{"id":30189,"name":"Bluestone","slug":"bluestone","type":"remixer"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":56096,"position":9,"type":"chart"},{"id":56197,"position":4,"type":"chart"},{"id":56477,"position":9,"type":"chart"},{"id":57115,"position":1,"type":"chart"},{"id":57134,"position":6,"type":"chart"},{"id":57477,"position":7,"type":"chart"},{"id":59030,"position":10,"type":"chart"},{"id":59167,"position":4,"type":"chart"},{"id":59413,"position":6,"type":"chart"},{"id":59404,"position":1,"type":"chart"},{"id":59786,"position":4,"type":"chart"},{"id":59979,"position":6,"type":"chart"},{"id":60834,"position":3,"type":"chart"},{"id":60989,"position":4,"type":"chart"},{"id":61283,"position":4,"type":"chart"},{"id":61293,"position":4,"type":"chart"},{"id":61307,"position":9,"type":"chart"},{"id":61933,"position":7,"type":"chart"},{"id":61980,"position":2,"type":"chart"},{"id":65239,"position":7,"type":"chart"},{"id":66723,"position":3,"type":"chart"},{"id":67445,"position":4,"type":"chart"},{"id":67544,"position":3,"type":"chart"},{"id":67588,"position":6,"type":"chart"},{"id":66875,"position":4,"type":"chart"},{"id":68154,"position":4,"type":"chart"},{"id":68298,"position":5,"type":"chart"},{"id":68241,"position":9,"type":"chart"},{"id":69289,"position":7,"type":"chart"},{"id":70025,"position":10,"type":"chart"},{"id":73393,"position":4,"type":"chart"},{"id":78361,"position":2,"type":"chart"},{"id":85495,"position":4,"type":"chart"},{"id":100834,"position":2,"type":"chart"},{"id":102899,"position":23,"type":"chart"},{"id":110015,"position":1,"type":"chart"},{"id":124445,"position":10,"type":"chart"}],"release":{"id":886467,"name":"Love
|
130
|
-
Is Not Enough (The Remixes) - Beatport","type":"release","slug":"love-is-not-enough-the-remixes-beatport"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5152514.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152514.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5152515.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152515.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5152516.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152516.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5157458.png","secureUrl":"https:\/\/media.beatport.com\/image\/5157458.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5152516.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5157458.png"}},"position":9},{"id":1763820,"selected":false,"type":"track","sku":"track-1763820","name":"Sun
|
131
|
-
& Moon feat. Richard Bedford","trackNumber":2,"active":true,"mixName":"Club
|
132
|
-
Mix","title":"Sun & Moon feat. Richard Bedford (Club Mix)","slug":"sun-and-moon-feat-richard-bedford-club-mix","isrc":"GBEWA1100050","releaseDate":"2011-04-17","publishDate":"2011-04-17","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/1763820.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":false,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/1000000\/700000\/60000\/3000\/800\/20\/1763820.LOFI","exclusive":false,"isPromotable":false,"preview":null,"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":100},"aiff":{"code":"usd","symbol":"$","value":100}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
133
|
-
Content","length":"7:47","bpm":134,"key":{"standard":{"letter":"F","sharp":true,"flat":false,"chord":"minor"}},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
134
|
-
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":145342,"name":"Richard
|
135
|
-
Bedford","slug":"richard-bedford","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":43514,"position":4,"type":"chart"},{"id":53600,"position":8,"type":"chart"},{"id":59495,"position":5,"type":"chart"},{"id":63015,"position":5,"type":"chart"},{"id":84389,"position":9,"type":"chart"},{"id":121271,"position":10,"type":"chart"}],"release":{"id":342491,"name":"Sun
|
136
|
-
& Moon Pt. 1","type":"release","slug":"sun-and-moon-pt-1"},"label":{"id":907,"name":"Ultra","type":"label","slug":"ultra","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/1148706.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/1148706.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/1148707.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/1148707.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/1148708.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/1148708.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/1596912.png","secureUrl":"https:\/\/media.beatport.com\/image\/1596912.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/1148708.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/1596912.png"}},"position":10}]}'
|
70
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"ids%5B0%5D=7181&ids%5B1%5D=7182","page":1,"perPage":10,"count":2,"totalPages":1,"perPageOptions":[{"value":50,"applyQuery":"ids%5B0%5D=7181&ids%5B1%5D=7182&perPage=50"},{"value":100,"applyQuery":"ids%5B0%5D=7181&ids%5B1%5D=7182&perPage=100"},{"value":150,"applyQuery":"ids%5B0%5D=7181&ids%5B1%5D=7182&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":7181,"type":"artist","name":"Above
|
71
|
+
& Beyond","slug":"above-and-beyond","active":true,"lastPublishDate":"2013-02-05","biography":"","genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":10,"name":"Chill
|
72
|
+
Out","slug":"chill-out","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":9,"name":"Breaks","slug":"breaks","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":17,"name":"Electro
|
73
|
+
House","slug":"electro-house","type":"genre"},{"id":1,"name":"Drum & Bass","slug":"drum-and-bass","type":"genre"},{"id":16,"name":"DJ
|
74
|
+
Tools","slug":"dj-tools","type":"genre"},{"id":18,"name":"Dubstep","slug":"dubstep","type":"genre"},{"id":39,"name":"Pop
|
75
|
+
\/ Rock","slug":"pop-rock","type":"genre"},{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":27,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":38,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"},{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/4686424.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4686424.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4686424.jpg"}},"profile":{"type":"profile","id":9112,"person":{"type":"person","id":40359},"url":"http:\/\/dj.beatport.com\/profile\/9112","images":[],"name":null,"genres":[],"bio":null,"joinedDate":null,"followerCount":null,"followingCount":null,"unpublishedChartCount":0,"soundcloudMode":null,"soundcloudId":null,"mixCount":false,"charts":[],"events":[],"mixes":[],"badges":[],"link":{"href":"http:\/\/dj.beatport.com\/aboveandbeyond","rel":"self"},"latestTracks":[]}},{"id":7182,"type":"artist","name":"Bernal
|
76
|
+
Boogie","slug":"bernal-boogie","active":true,"lastPublishDate":"2005-06-07","biography":"","genres":[{"id":38,"name":"Hip-Hop","slug":"hip-hop","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
137
77
|
http_version: '1.1'
|
138
|
-
recorded_at:
|
78
|
+
recorded_at: Fri, 08 Feb 2013 21:04:23 GMT
|
139
79
|
- request:
|
140
80
|
method: get
|
141
|
-
uri: http://api.beatport.com/catalog/3/artists?
|
81
|
+
uri: http://api.beatport.com/catalog/3/artists?facets=artistName%3AAbove%20%26%20Beyond
|
142
82
|
body:
|
143
83
|
encoding: US-ASCII
|
144
84
|
string: ''
|
@@ -149,11 +89,11 @@ http_interactions:
|
|
149
89
|
message: OK
|
150
90
|
headers:
|
151
91
|
date:
|
152
|
-
-
|
92
|
+
- Fri, 08 Feb 2013 21:04:25 GMT
|
153
93
|
server:
|
154
94
|
- Apache
|
155
95
|
expires:
|
156
|
-
-
|
96
|
+
- Fri, 08 Feb 2013 21:34:25 GMT
|
157
97
|
pragma:
|
158
98
|
- public
|
159
99
|
cache-control:
|
@@ -168,17 +108,17 @@ http_interactions:
|
|
168
108
|
- application/json
|
169
109
|
body:
|
170
110
|
encoding: US-ASCII
|
171
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"
|
172
|
-
& Beyond","slug":"above-and-beyond","active":true,"lastPublishDate":"
|
111
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"facets%5B0%5D=artistName%3AAbove+%26+Beyond","page":1,"perPage":10,"count":1,"totalPages":1,"perPageOptions":[{"value":50,"applyQuery":"facets%5B0%5D=artistName%3AAbove+%26+Beyond&perPage=50"},{"value":100,"applyQuery":"facets%5B0%5D=artistName%3AAbove+%26+Beyond&perPage=100"},{"value":150,"applyQuery":"facets%5B0%5D=artistName%3AAbove+%26+Beyond&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":7181,"type":"artist","name":"Above
|
112
|
+
& Beyond","slug":"above-and-beyond","active":true,"lastPublishDate":"2013-02-05","biography":"","genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":10,"name":"Chill
|
173
113
|
Out","slug":"chill-out","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":9,"name":"Breaks","slug":"breaks","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":17,"name":"Electro
|
174
|
-
House","slug":"electro-house","type":"genre"},{"id":1,"name":"Drum & Bass","slug":"drum-and-bass","type":"genre"},{"id":
|
175
|
-
|
176
|
-
|
114
|
+
House","slug":"electro-house","type":"genre"},{"id":1,"name":"Drum & Bass","slug":"drum-and-bass","type":"genre"},{"id":16,"name":"DJ
|
115
|
+
Tools","slug":"dj-tools","type":"genre"},{"id":18,"name":"Dubstep","slug":"dubstep","type":"genre"},{"id":39,"name":"Pop
|
116
|
+
\/ Rock","slug":"pop-rock","type":"genre"},{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":27,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":38,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"},{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/4686424.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4686424.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4686424.jpg"}},"profile":{"type":"profile","id":9112,"person":{"type":"person","id":40359},"url":"http:\/\/dj.beatport.com\/profile\/9112","images":[],"name":null,"genres":[],"bio":null,"joinedDate":null,"followerCount":null,"followingCount":null,"unpublishedChartCount":0,"soundcloudMode":null,"soundcloudId":null,"mixCount":false,"charts":[],"events":[],"mixes":[],"badges":[],"link":{"href":"http:\/\/dj.beatport.com\/aboveandbeyond","rel":"self"},"latestTracks":[]}}]}'
|
177
117
|
http_version: '1.1'
|
178
|
-
recorded_at:
|
118
|
+
recorded_at: Fri, 08 Feb 2013 21:04:25 GMT
|
179
119
|
- request:
|
180
120
|
method: get
|
181
|
-
uri: http://api.beatport.com/catalog/3/artists?
|
121
|
+
uri: http://api.beatport.com/catalog/3/artists?perPage=5&page=1
|
182
122
|
body:
|
183
123
|
encoding: US-ASCII
|
184
124
|
string: ''
|
@@ -189,11 +129,11 @@ http_interactions:
|
|
189
129
|
message: OK
|
190
130
|
headers:
|
191
131
|
date:
|
192
|
-
-
|
132
|
+
- Fri, 08 Feb 2013 21:04:26 GMT
|
193
133
|
server:
|
194
134
|
- Apache
|
195
135
|
expires:
|
196
|
-
-
|
136
|
+
- Fri, 08 Feb 2013 21:34:26 GMT
|
197
137
|
pragma:
|
198
138
|
- public
|
199
139
|
cache-control:
|
@@ -208,18 +148,38 @@ http_interactions:
|
|
208
148
|
- application/json
|
209
149
|
body:
|
210
150
|
encoding: US-ASCII
|
211
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
151
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"perPage=5","page":1,"perPage":5,"count":272814,"totalPages":54563,"nextQuery":"perPage=5&page=2","perPageOptions":[{"value":50,"applyQuery":"perPage=50"},{"value":100,"applyQuery":"perPage=100"},{"value":150,"applyQuery":"perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":1,"type":"artist","name":"12
|
152
|
+
Inch Thumpers","slug":"12-inch-thumpers","active":true,"lastPublishDate":"2011-03-06","biography":"","genres":[{"id":8,"name":"Hard
|
153
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1162,"type":"artist","name":"UK
|
154
|
+
Gold","slug":"uk-gold","active":true,"lastPublishDate":"2011-10-05","biography":"","genres":[{"id":8,"name":"Hard
|
155
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":10,"name":"Chill Out","slug":"chill-out","type":"genre"},{"id":12,"name":"Deep
|
156
|
+
House","slug":"deep-house","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":11,"name":"Tech
|
157
|
+
House","slug":"tech-house","type":"genre"}],"subGenres":[{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":24,"name":"Melodic","slug":"melodic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1163,"type":"artist","name":"Paul
|
158
|
+
Glazby","slug":"paul-glazby","active":true,"lastPublishDate":"2013-02-08","biography":"","genres":[{"id":8,"name":"Hard
|
159
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
160
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"},{"id":13,"name":"Psy-Trance","slug":"psy-trance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":32,"name":"Nu-NRG","slug":"nu-nrg","type":"subgenre"},{"id":28,"name":"Acid","slug":"acid","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":90,"name":"Acid","slug":"acid","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1165,"type":"artist","name":"Ilogik","slug":"ilogik","active":true,"lastPublishDate":"2012-10-07","biography":"","genres":[{"id":8,"name":"Hard
|
161
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
162
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1167,"type":"artist","name":"jOHNNYDANGEROUs","slug":"johnnydangerous","active":true,"lastPublishDate":"2012-12-03","biography":"FOREMOST
|
163
|
+
POETS aka \"jOHNNYDANGEROUs\"\rHe has been reshaping Dance, Funk and the spoken
|
164
|
+
word. Philadelphia born in 1970, USA, Raised in New Jersey, he continues to
|
165
|
+
innovate while releasing collaborations as well as some of his unreleased
|
166
|
+
remixed re-touches of Rick James, Marvin Gaye, Stevie Wonder, Enya, Dr. Buzzard''s
|
167
|
+
Original Savannah Band, The Peech Boys, San Ilya, Outkast, Jazmina & others.
|
168
|
+
He currently has singing collaborations with multiple producers & artist for
|
169
|
+
this decade like Karizma, Louie Vega, Robert Babicz, Macjam, Mr. V, Vincent
|
170
|
+
\"DJ Spinna\" Williams & many others. jOHNNYDANGEROUs, poet, producer, writer,
|
171
|
+
singer, DJ & engineer is no longer a master in the making.\r\r\"There may
|
172
|
+
be many Johnny Dangerous'', but there''s only one Foremost Poets\".","genres":[{"id":8,"name":"Hard
|
173
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":12,"name":"Deep
|
174
|
+
House","slug":"deep-house","type":"genre"},{"id":16,"name":"DJ Tools","slug":"dj-tools","type":"genre"},{"id":11,"name":"Tech
|
175
|
+
House","slug":"tech-house","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":40,"name":"Funk
|
176
|
+
\/ R&B","slug":"funk-r-and-b","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"}],"subGenres":[{"id":17,"name":"Vocal
|
177
|
+
House","slug":"vocal-house","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":19,"name":"Tribal","slug":"tribal","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5674852.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5674852.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5674852.jpg"}},"profile":null}]}'
|
218
178
|
http_version: '1.1'
|
219
|
-
recorded_at:
|
179
|
+
recorded_at: Fri, 08 Feb 2013 21:04:26 GMT
|
220
180
|
- request:
|
221
181
|
method: get
|
222
|
-
uri: http://api.beatport.com/catalog/3/artists?
|
182
|
+
uri: http://api.beatport.com/catalog/3/artists?sortBy=publishDate%20asc%2CartistId%20asc&genreId=5&perPage=5&page=1
|
223
183
|
body:
|
224
184
|
encoding: US-ASCII
|
225
185
|
string: ''
|
@@ -230,11 +190,11 @@ http_interactions:
|
|
230
190
|
message: OK
|
231
191
|
headers:
|
232
192
|
date:
|
233
|
-
-
|
193
|
+
- Fri, 08 Feb 2013 21:04:26 GMT
|
234
194
|
server:
|
235
195
|
- Apache
|
236
196
|
expires:
|
237
|
-
-
|
197
|
+
- Fri, 08 Feb 2013 21:34:26 GMT
|
238
198
|
pragma:
|
239
199
|
- public
|
240
200
|
cache-control:
|
@@ -249,17 +209,19 @@ http_interactions:
|
|
249
209
|
- application/json
|
250
210
|
body:
|
251
211
|
encoding: US-ASCII
|
252
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
212
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=5","page":1,"perPage":5,"count":272814,"totalPages":54563,"nextQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=5&page=2","perPageOptions":[{"value":50,"applyQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=50"},{"value":100,"applyQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=100"},{"value":150,"applyQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":210376,"type":"artist","name":"The
|
213
|
+
Disco Express","slug":"the-disco-express","active":true,"lastPublishDate":"1976-01-01","biography":"","genres":[{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":309820,"type":"artist","name":"Arthur
|
214
|
+
Prysock","slug":"arthur-prysock","active":true,"lastPublishDate":"1976-07-18","biography":"","genres":[{"id":37,"name":"Indie
|
215
|
+
Dance \/ Nu Disco","slug":"indie-dance-nu-disco","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":202864,"type":"artist","name":"Amber
|
216
|
+
Route","slug":"amber-route","active":true,"lastPublishDate":"1980-05-05","biography":"","genres":[{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":298330,"type":"artist","name":"Colin
|
217
|
+
Newman","slug":"colin-newman","active":true,"lastPublishDate":"1981-01-01","biography":"","genres":[{"id":39,"name":"Pop
|
218
|
+
\/ Rock","slug":"pop-rock","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":202928,"type":"artist","name":"George
|
219
|
+
Higton","slug":"george-higton","active":true,"lastPublishDate":"1983-05-25","biography":"","genres":[{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":13,"name":"IDM","slug":"idm","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
258
220
|
http_version: '1.1'
|
259
|
-
recorded_at:
|
221
|
+
recorded_at: Fri, 08 Feb 2013 21:04:27 GMT
|
260
222
|
- request:
|
261
223
|
method: get
|
262
|
-
uri: http://api.beatport.com/catalog/3/artists?
|
224
|
+
uri: http://api.beatport.com/catalog/3/artists?returnFacets=genreName%2CperformerName
|
263
225
|
body:
|
264
226
|
encoding: US-ASCII
|
265
227
|
string: ''
|
@@ -270,11 +232,11 @@ http_interactions:
|
|
270
232
|
message: OK
|
271
233
|
headers:
|
272
234
|
date:
|
273
|
-
-
|
235
|
+
- Fri, 08 Feb 2013 21:04:27 GMT
|
274
236
|
server:
|
275
237
|
- Apache
|
276
238
|
expires:
|
277
|
-
-
|
239
|
+
- Fri, 08 Feb 2013 21:34:27 GMT
|
278
240
|
pragma:
|
279
241
|
- public
|
280
242
|
cache-control:
|
@@ -289,45 +251,129 @@ http_interactions:
|
|
289
251
|
- application/json
|
290
252
|
body:
|
291
253
|
encoding: US-ASCII
|
292
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
&
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
254
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"returnFacets=genreName%2CperformerName","page":1,"perPage":10,"count":272814,"totalPages":27282,"nextQuery":"returnFacets=genreName%2CperformerName&page=2","perPageOptions":[{"value":50,"applyQuery":"returnFacets=genreName%2CperformerName&perPage=50"},{"value":100,"applyQuery":"returnFacets=genreName%2CperformerName&perPage=100"},{"value":150,"applyQuery":"returnFacets=genreName%2CperformerName&perPage=150"}],"facets":{"fields":{"genreName":[{"name":"House","count":84577,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHouse","removeQuery":null},{"name":"Progressive
|
255
|
+
House","count":61071,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AProgressive+House","removeQuery":null},{"name":"Tech
|
256
|
+
House","count":57224,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ATech+House","removeQuery":null},{"name":"Electro
|
257
|
+
House","count":48290,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AElectro+House","removeQuery":null},{"name":"Techno","count":45607,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ATechno","removeQuery":null},{"name":"Electronica","count":38443,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AElectronica","removeQuery":null},{"name":"Deep
|
258
|
+
House","count":38208,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADeep+House","removeQuery":null},{"name":"Trance","count":33268,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ATrance","removeQuery":null},{"name":"Chill
|
259
|
+
Out","count":31512,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AChill+Out","removeQuery":null},{"name":"Minimal","count":21960,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AMinimal","removeQuery":null},{"name":"Hip-Hop","count":18532,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHip-Hop","removeQuery":null},{"name":"Breaks","count":16865,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ABreaks","removeQuery":null},{"name":"Indie
|
260
|
+
Dance \/ Nu Disco","count":16484,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AIndie+Dance+%2F+Nu+Disco","removeQuery":null},{"name":"Dubstep","count":15128,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADubstep","removeQuery":null},{"name":"Drum
|
261
|
+
& Bass","count":13572,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADrum+%26+Bass","removeQuery":null},{"name":"Pop
|
262
|
+
\/ Rock","count":10539,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3APop+%2F+Rock","removeQuery":null},{"name":"Hard
|
263
|
+
Dance","count":10469,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHard+Dance","removeQuery":null},{"name":"Hardcore
|
264
|
+
\/ Hard Techno","count":8968,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHardcore+%2F+Hard+Techno","removeQuery":null},{"name":"DJ
|
265
|
+
Tools","count":8866,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADJ+Tools","removeQuery":null},{"name":"Psy-Trance","count":7098,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3APsy-Trance","removeQuery":null},{"name":"Reggae
|
266
|
+
\/ Dub","count":5171,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AReggae+%2F+Dub","removeQuery":null},{"name":"Funk
|
267
|
+
\/ R&B","count":4850,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AFunk+%2F+R%26B","removeQuery":null},{"name":"Glitch
|
268
|
+
Hop","count":1727,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AGlitch+Hop","removeQuery":null},{"name":"World","count":24,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AWorld","removeQuery":null},{"name":"Vocal","count":4,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AVocal","removeQuery":null}],"performerName":[{"name":"Jason
|
269
|
+
Justiano","count":4,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJason+Justiano","removeQuery":null},{"name":"Simon
|
270
|
+
Bones","count":4,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASimon+Bones","removeQuery":null},{"name":"Ace","count":3,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAce","removeQuery":null},{"name":"Peter
|
271
|
+
Jurgens","count":3,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APeter+Jurgens","removeQuery":null},{"name":"Ze
|
272
|
+
Hangoverz","count":3,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AZe+Hangoverz","removeQuery":null},{"name":"Abe
|
273
|
+
Clements","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAbe+Clements","removeQuery":null},{"name":"Acid
|
274
|
+
Jack","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAcid+Jack","removeQuery":null},{"name":"Active
|
275
|
+
Sense","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AActive+Sense","removeQuery":null},{"name":"Al
|
276
|
+
B. Rich","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAl+B.+Rich","removeQuery":null},{"name":"Alek
|
277
|
+
Biotic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAlek+Biotic","removeQuery":null},{"name":"Andres
|
278
|
+
Honrubia","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAndres+Honrubia","removeQuery":null},{"name":"Bando
|
279
|
+
do Sul","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABando+do+Sul","removeQuery":null},{"name":"Bo
|
280
|
+
Bun Heaters","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABo+Bun+Heaters","removeQuery":null},{"name":"BossArt
|
281
|
+
Ensemble","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABossArt+Ensemble","removeQuery":null},{"name":"Brothers
|
282
|
+
Of The Mind","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABrothers+Of+The+Mind","removeQuery":null},{"name":"Cantus","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ACantus","removeQuery":null},{"name":"Carefree","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ACarefree","removeQuery":null},{"name":"Chillovers","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AChillovers","removeQuery":null},{"name":"Christian
|
283
|
+
Zanzu","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AChristian+Zanzu","removeQuery":null},{"name":"DCdigital","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADCdigital","removeQuery":null},{"name":"DJ
|
284
|
+
Erick E","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADJ+Erick+E","removeQuery":null},{"name":"DJ
|
285
|
+
MadScience","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADJ+MadScience","removeQuery":null},{"name":"DJ
|
286
|
+
Nitro","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADJ+Nitro","removeQuery":null},{"name":"Danny
|
287
|
+
Bond","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADanny+Bond","removeQuery":null},{"name":"Deborah
|
288
|
+
Dixon","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADeborah+Dixon","removeQuery":null},{"name":"Deep
|
289
|
+
House Souldiers","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADeep+House+Souldiers","removeQuery":null},{"name":"Dennis
|
290
|
+
Reich","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADennis+Reich","removeQuery":null},{"name":"Dirty
|
291
|
+
Lou","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADirty+Lou","removeQuery":null},{"name":"Dirty
|
292
|
+
Thieving Mongrels","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADirty+Thieving+Mongrels","removeQuery":null},{"name":"Dizzy
|
293
|
+
Plant","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADizzy+Plant","removeQuery":null},{"name":"Downpressor","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADownpressor","removeQuery":null},{"name":"Fabio
|
294
|
+
Amoroso","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFabio+Amoroso","removeQuery":null},{"name":"Feuersanger","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFeuersanger","removeQuery":null},{"name":"Filthy
|
295
|
+
Habits","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFilthy+Habits","removeQuery":null},{"name":"Fist
|
296
|
+
Of Fury","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFist+Of+Fury","removeQuery":null},{"name":"Francesca","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFrancesca","removeQuery":null},{"name":"Funky
|
297
|
+
Jack Robinson","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFunky+Jack+Robinson","removeQuery":null},{"name":"Ge-ology","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AGe-ology","removeQuery":null},{"name":"Gigolo
|
298
|
+
Supreme","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AGigolo+Supreme","removeQuery":null},{"name":"Groundholder","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AGroundholder","removeQuery":null},{"name":"Jamie
|
299
|
+
Taylor","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJamie+Taylor","removeQuery":null},{"name":"Jan
|
300
|
+
Kruger","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJan+Kruger","removeQuery":null},{"name":"Jeff
|
301
|
+
Varisco","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJeff+Varisco","removeQuery":null},{"name":"Jeffree
|
302
|
+
Star","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJeffree+Star","removeQuery":null},{"name":"Jeffrey
|
303
|
+
Collins","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJeffrey+Collins","removeQuery":null},{"name":"Jerome
|
304
|
+
Van Rossum","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJerome+Van+Rossum","removeQuery":null},{"name":"Jlove","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJlove","removeQuery":null},{"name":"Justin
|
305
|
+
Dahl","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJustin+Dahl","removeQuery":null},{"name":"Karmatronic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AKarmatronic","removeQuery":null},{"name":"KenWee","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AKenWee","removeQuery":null},{"name":"KhordTronix","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AKhordTronix","removeQuery":null},{"name":"Kick-Bong","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AKick-Bong","removeQuery":null},{"name":"Kike
|
306
|
+
Serrano","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AKike+Serrano","removeQuery":null},{"name":"Leo","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ALeo","removeQuery":null},{"name":"Locktown","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ALocktown","removeQuery":null},{"name":"Loopo
|
307
|
+
Inc","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ALoopo+Inc","removeQuery":null},{"name":"Luca
|
308
|
+
Binatti","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ALuca+Binatti","removeQuery":null},{"name":"MWP
|
309
|
+
Project","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMWP+Project","removeQuery":null},{"name":"Matteo
|
310
|
+
Pellino","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMatteo+Pellino","removeQuery":null},{"name":"Max
|
311
|
+
Donato","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMax+Donato","removeQuery":null},{"name":"Mayla
|
312
|
+
Da Viola","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMayla+Da+Viola","removeQuery":null},{"name":"Mekanic
|
313
|
+
Duo","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMekanic+Duo","removeQuery":null},{"name":"Microfunk","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMicrofunk","removeQuery":null},{"name":"Mr.
|
314
|
+
Wonk","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMr.+Wonk","removeQuery":null},{"name":"N''fa","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AN%27fa","removeQuery":null},{"name":"Nadsroic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ANadsroic","removeQuery":null},{"name":"Nastascha","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ANastascha","removeQuery":null},{"name":"Node1","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ANode1","removeQuery":null},{"name":"One
|
315
|
+
Soul","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AOne+Soul","removeQuery":null},{"name":"Pallid","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APallid","removeQuery":null},{"name":"Pascal
|
316
|
+
Horain","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APascal+Horain","removeQuery":null},{"name":"Phaze
|
317
|
+
Dee","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APhaze+Dee","removeQuery":null},{"name":"Phoenix''Lo","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APhoenix%27Lo","removeQuery":null},{"name":"Purplephazer","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APurplephazer","removeQuery":null},{"name":"Ricco
|
318
|
+
S","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ARicco+S","removeQuery":null},{"name":"Rzac","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ARzac","removeQuery":null},{"name":"Selfsays","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASelfsays","removeQuery":null},{"name":"Sergio
|
319
|
+
From 909","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASergio+From+909","removeQuery":null},{"name":"Sinan
|
320
|
+
Baymak","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASinan+Baymak","removeQuery":null},{"name":"SoL-RoM","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASoL-RoM","removeQuery":null},{"name":"Somnus
|
321
|
+
Corp","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASomnus+Corp","removeQuery":null},{"name":"Starkstrom","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AStarkstrom","removeQuery":null},{"name":"Static
|
322
|
+
Flux","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AStatic+Flux","removeQuery":null},{"name":"Svart1","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASvart1","removeQuery":null},{"name":"The
|
323
|
+
O''jays","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AThe+O%27jays","removeQuery":null},{"name":"The
|
324
|
+
Rurals","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AThe+Rurals","removeQuery":null},{"name":"Theo
|
325
|
+
Schwarz","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ATheo+Schwarz","removeQuery":null},{"name":"Tom
|
326
|
+
Thiel","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ATom+Thiel","removeQuery":null},{"name":"Trouser
|
327
|
+
Snakes","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ATrouser+Snakes","removeQuery":null},{"name":"Tweaked
|
328
|
+
Out","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ATweaked+Out","removeQuery":null},{"name":"Vic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVic","removeQuery":null},{"name":"Vicky
|
329
|
+
D","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVicky+D","removeQuery":null},{"name":"Victor
|
330
|
+
Event","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVictor+Event","removeQuery":null},{"name":"Wayob","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AWayob","removeQuery":null},{"name":"X
|
331
|
+
Green","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AX+Green","removeQuery":null},{"name":"Xoanna
|
332
|
+
Guilmary","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AXoanna+Guilmary","removeQuery":null},{"name":"","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A","removeQuery":null},{"name":"
|
333
|
+
53 hz","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A+53+hz","removeQuery":null},{"name":"
|
334
|
+
Jean Claude Ades","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A+Jean+Claude+Ades","removeQuery":null},{"name":"
|
335
|
+
Z.E.T.A.","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A+Z.E.T.A.","removeQuery":null}]}},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":1,"type":"artist","name":"12
|
336
|
+
Inch Thumpers","slug":"12-inch-thumpers","active":true,"lastPublishDate":"2011-03-06","biography":"","genres":[{"id":8,"name":"Hard
|
337
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1162,"type":"artist","name":"UK
|
338
|
+
Gold","slug":"uk-gold","active":true,"lastPublishDate":"2011-10-05","biography":"","genres":[{"id":8,"name":"Hard
|
339
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":10,"name":"Chill Out","slug":"chill-out","type":"genre"},{"id":12,"name":"Deep
|
340
|
+
House","slug":"deep-house","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":11,"name":"Tech
|
341
|
+
House","slug":"tech-house","type":"genre"}],"subGenres":[{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":24,"name":"Melodic","slug":"melodic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1163,"type":"artist","name":"Paul
|
342
|
+
Glazby","slug":"paul-glazby","active":true,"lastPublishDate":"2013-02-08","biography":"","genres":[{"id":8,"name":"Hard
|
343
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
344
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"},{"id":13,"name":"Psy-Trance","slug":"psy-trance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":32,"name":"Nu-NRG","slug":"nu-nrg","type":"subgenre"},{"id":28,"name":"Acid","slug":"acid","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":90,"name":"Acid","slug":"acid","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1165,"type":"artist","name":"Ilogik","slug":"ilogik","active":true,"lastPublishDate":"2012-10-07","biography":"","genres":[{"id":8,"name":"Hard
|
345
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
346
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1167,"type":"artist","name":"jOHNNYDANGEROUs","slug":"johnnydangerous","active":true,"lastPublishDate":"2012-12-03","biography":"FOREMOST
|
347
|
+
POETS aka \"jOHNNYDANGEROUs\"\rHe has been reshaping Dance, Funk and the spoken
|
348
|
+
word. Philadelphia born in 1970, USA, Raised in New Jersey, he continues to
|
349
|
+
innovate while releasing collaborations as well as some of his unreleased
|
350
|
+
remixed re-touches of Rick James, Marvin Gaye, Stevie Wonder, Enya, Dr. Buzzard''s
|
351
|
+
Original Savannah Band, The Peech Boys, San Ilya, Outkast, Jazmina & others.
|
352
|
+
He currently has singing collaborations with multiple producers & artist for
|
353
|
+
this decade like Karizma, Louie Vega, Robert Babicz, Macjam, Mr. V, Vincent
|
354
|
+
\"DJ Spinna\" Williams & many others. jOHNNYDANGEROUs, poet, producer, writer,
|
355
|
+
singer, DJ & engineer is no longer a master in the making.\r\r\"There may
|
356
|
+
be many Johnny Dangerous'', but there''s only one Foremost Poets\".","genres":[{"id":8,"name":"Hard
|
357
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":12,"name":"Deep
|
358
|
+
House","slug":"deep-house","type":"genre"},{"id":16,"name":"DJ Tools","slug":"dj-tools","type":"genre"},{"id":11,"name":"Tech
|
359
|
+
House","slug":"tech-house","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":40,"name":"Funk
|
360
|
+
\/ R&B","slug":"funk-r-and-b","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"}],"subGenres":[{"id":17,"name":"Vocal
|
361
|
+
House","slug":"vocal-house","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":19,"name":"Tribal","slug":"tribal","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5674852.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5674852.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5674852.jpg"}},"profile":null},{"id":1168,"type":"artist","name":"John
|
362
|
+
Whiteman","slug":"john-whiteman","active":true,"lastPublishDate":"2011-03-20","biography":"","genres":[{"id":8,"name":"Hard
|
363
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1181,"type":"artist","name":"Mobi
|
364
|
+
D","slug":"mobi-d","active":true,"lastPublishDate":"2010-07-01","biography":"","genres":[{"id":8,"name":"Hard
|
365
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1182,"type":"artist","name":"Jason
|
366
|
+
Nawty","slug":"jason-nawty","active":true,"lastPublishDate":"2010-07-01","biography":"","genres":[{"id":8,"name":"Hard
|
367
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1185,"type":"artist","name":"Vinyl
|
368
|
+
Coup","slug":"vinyl-coup","active":true,"lastPublishDate":"2002-07-22","biography":"","genres":[{"id":8,"name":"Hard
|
369
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1187,"type":"artist","name":"The
|
370
|
+
Boyz","slug":"the-boyz","active":true,"lastPublishDate":"2003-02-03","biography":"","genres":[{"id":8,"name":"Hard
|
371
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
326
372
|
http_version: '1.1'
|
327
|
-
recorded_at:
|
373
|
+
recorded_at: Fri, 08 Feb 2013 21:04:28 GMT
|
328
374
|
- request:
|
329
375
|
method: get
|
330
|
-
uri: http://api.beatport.com/catalog/3/
|
376
|
+
uri: http://api.beatport.com/catalog/3/most-popular/artist?id=7181
|
331
377
|
body:
|
332
378
|
encoding: US-ASCII
|
333
379
|
string: ''
|
@@ -337,54 +383,101 @@ http_interactions:
|
|
337
383
|
code: 200
|
338
384
|
message: OK
|
339
385
|
headers:
|
340
|
-
|
341
|
-
-
|
342
|
-
|
386
|
+
Date:
|
387
|
+
- Fri, 08 Feb 2013 21:06:46 GMT
|
388
|
+
Server:
|
343
389
|
- Apache
|
344
|
-
|
345
|
-
-
|
346
|
-
|
390
|
+
Expires:
|
391
|
+
- Fri, 08 Feb 2013 21:36:46 GMT
|
392
|
+
Pragma:
|
347
393
|
- public
|
348
|
-
|
394
|
+
Cache-Control:
|
349
395
|
- public, max-age=1800
|
350
|
-
|
396
|
+
Access-Control-Allow-Origin:
|
351
397
|
- ! '*'
|
352
|
-
|
353
|
-
- close
|
354
|
-
transfer-encoding:
|
398
|
+
Transfer-Encoding:
|
355
399
|
- chunked
|
356
|
-
|
400
|
+
Content-Type:
|
357
401
|
- application/json
|
358
402
|
body:
|
359
403
|
encoding: US-ASCII
|
360
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
&
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
&
|
374
|
-
House","slug":"progressive-house","type":"genre"},{"id":9,"
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
&
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
404
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/most-popular\/artist","query":"id=7181","page":1,"perPage":10,"count":76,"totalPages":8,"nextQuery":"id=7181&page=2","perPageOptions":[{"value":50,"applyQuery":"id=7181&perPage=50"},{"value":100,"applyQuery":"id=7181&perPage=100"},{"value":150,"applyQuery":"id=7181&perPage=150"}],"facets":{"fields":[]},"spellcheck":{"suggestions":[]},"date":"2013-02-08"},"results":[{"id":3181101,"selected":false,"type":"track","sku":"track-3181101","name":"You
|
405
|
+
Got To Go feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Seven
|
406
|
+
Lions Remix","title":"You Got To Go feat. Zoe Johnston (Seven Lions Remix)","slug":"you-got-to-go-feat-zoe-johnston-seven-lions-remix","isrc":"GBEWA1101240","releaseDate":"2011-12-21","publishDate":"2011-12-21","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3181101.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/3000000\/100000\/80000\/1000\/100\/0\/3181101.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3181101.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/3000000\/100000\/80000\/1000\/100\/0\/3181101.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
407
|
+
Content","length":"5:03","bpm":140,"key":{"standard":{"letter":"C","sharp":false,"flat":false,"chord":"minor"},"shortName":"Cmin"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
408
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
409
|
+
Johnston","slug":"zoe-johnston","type":"artist"},{"id":241780,"name":"Seven
|
410
|
+
Lions","slug":"seven-lions","type":"remixer"}],"genres":[{"id":18,"name":"Dubstep","slug":"dubstep","type":"genre"}],"subGenres":[],"charts":[{"id":45298,"position":1,"type":"chart"},{"id":45598,"position":10,"type":"chart"},{"id":45910,"position":3,"type":"chart"},{"id":48915,"position":7,"type":"chart"},{"id":48435,"position":5,"type":"chart"},{"id":48449,"position":9,"type":"chart"},{"id":48644,"position":6,"type":"chart"},{"id":50869,"position":10,"type":"chart"},{"id":50930,"position":10,"type":"chart"},{"id":55525,"position":6,"type":"chart"},{"id":57824,"position":4,"type":"chart"},{"id":60259,"position":6,"type":"chart"},{"id":61477,"position":2,"type":"chart"},{"id":62128,"position":7,"type":"chart"},{"id":62244,"position":8,"type":"chart"},{"id":62956,"position":3,"type":"chart"},{"id":63529,"position":1,"type":"chart"},{"id":64456,"position":9,"type":"chart"},{"id":66697,"position":5,"type":"chart"},{"id":66940,"position":6,"type":"chart"},{"id":67174,"position":7,"type":"chart"},{"id":67604,"position":4,"type":"chart"},{"id":69542,"position":2,"type":"chart"},{"id":70917,"position":5,"type":"chart"},{"id":73982,"position":9,"type":"chart"},{"id":74792,"position":1,"type":"chart"},{"id":75299,"position":6,"type":"chart"},{"id":75910,"position":9,"type":"chart"},{"id":87592,"position":10,"type":"chart"},{"id":88273,"position":1,"type":"chart"},{"id":88276,"position":1,"type":"chart"},{"id":88282,"position":1,"type":"chart"},{"id":88283,"position":1,"type":"chart"},{"id":89420,"position":2,"type":"chart"},{"id":97109,"position":10,"type":"chart"},{"id":98236,"position":6,"type":"chart"},{"id":98359,"position":3,"type":"chart"},{"id":104394,"position":4,"type":"chart"},{"id":108696,"position":7,"type":"chart"},{"id":118893,"position":5,"type":"chart"},{"id":120957,"position":5,"type":"chart"},{"id":127074,"position":8,"type":"chart"},{"id":134716,"position":6,"type":"chart"},{"id":138281,"position":4,"type":"chart"},{"id":140038,"position":5,"type":"chart"},{"id":141507,"position":8,"type":"chart"},{"id":147008,"position":7,"type":"chart"}],"release":{"id":849094,"name":"You
|
411
|
+
Got To Go (Seven Lions Remix)","type":"release","slug":"you-got-to-go-seven-lions-remix"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/4806511.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4806511.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/4806512.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4806512.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/4806513.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4806513.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/4807060.png","secureUrl":"https:\/\/media.beatport.com\/image\/4807060.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4806513.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4807060.png"}},"position":1},{"id":3626385,"selected":false,"type":"track","sku":"track-3626385","name":"Razorfish
|
412
|
+
feat. Tranquility Base","trackNumber":1,"active":true,"mixName":"Jerome Isma-Ae
|
413
|
+
Remix","title":"Razorfish feat. Tranquility Base (Jerome Isma-Ae Remix)","slug":"razorfish-feat-tranquility-base-jerome-isma-ae-remix","isrc":"GBEWA1200630","releaseDate":"2012-07-11","publishDate":"2012-07-11","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3626385.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/3000000\/600000\/20000\/6000\/300\/80\/3626385.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3626385.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/3000000\/600000\/20000\/6000\/300\/80\/3626385.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
414
|
+
Content","length":"6:29","bpm":128,"key":{"standard":{"letter":"A","sharp":false,"flat":false,"chord":"minor"},"shortName":"Amin"},"saleType":"purchase","artists":[{"id":5033,"name":"Jerome
|
415
|
+
Isma-Ae","slug":"jerome-isma-ae","type":"remixer"},{"id":6479,"name":"Tranquility
|
416
|
+
Base","slug":"tranquility-base","type":"artist"},{"id":7181,"name":"Above
|
417
|
+
& Beyond","slug":"above-and-beyond","type":"artist"}],"genres":[{"id":15,"name":"Progressive
|
418
|
+
House","slug":"progressive-house","type":"genre"}],"subGenres":[],"charts":[{"id":95745,"position":1,"type":"chart"},{"id":95769,"position":7,"type":"chart"},{"id":95781,"position":6,"type":"chart"},{"id":95494,"position":10,"type":"chart"},{"id":95877,"position":3,"type":"chart"},{"id":95967,"position":5,"type":"chart"},{"id":96124,"position":3,"type":"chart"},{"id":96284,"position":8,"type":"chart"},{"id":96537,"position":6,"type":"chart"},{"id":96768,"position":8,"type":"chart"},{"id":96812,"position":5,"type":"chart"},{"id":97164,"position":10,"type":"chart"},{"id":97229,"position":4,"type":"chart"},{"id":97346,"position":3,"type":"chart"},{"id":97279,"position":7,"type":"chart"},{"id":91107,"position":2,"type":"chart"},{"id":97752,"position":2,"type":"chart"},{"id":97790,"position":3,"type":"chart"},{"id":97833,"position":9,"type":"chart"},{"id":98120,"position":2,"type":"chart"},{"id":98133,"position":4,"type":"chart"},{"id":98138,"position":5,"type":"chart"},{"id":98197,"position":3,"type":"chart"},{"id":98225,"position":6,"type":"chart"},{"id":98545,"position":6,"type":"chart"},{"id":98780,"position":5,"type":"chart"},{"id":98876,"position":7,"type":"chart"},{"id":98950,"position":1,"type":"chart"},{"id":98951,"position":6,"type":"chart"},{"id":98979,"position":4,"type":"chart"},{"id":98985,"position":5,"type":"chart"},{"id":99008,"position":6,"type":"chart"},{"id":99055,"position":5,"type":"chart"},{"id":99076,"position":7,"type":"chart"},{"id":99193,"position":10,"type":"chart"},{"id":99574,"position":6,"type":"chart"},{"id":99621,"position":2,"type":"chart"},{"id":99669,"position":10,"type":"chart"},{"id":99840,"position":4,"type":"chart"},{"id":99945,"position":6,"type":"chart"},{"id":88227,"position":1,"type":"chart"},{"id":100011,"position":6,"type":"chart"},{"id":100177,"position":9,"type":"chart"},{"id":100875,"position":3,"type":"chart"},{"id":101095,"position":5,"type":"chart"},{"id":101197,"position":10,"type":"chart"},{"id":101220,"position":4,"type":"chart"},{"id":101362,"position":6,"type":"chart"},{"id":102145,"position":10,"type":"chart"},{"id":102248,"position":4,"type":"chart"},{"id":102704,"position":3,"type":"chart"},{"id":103172,"position":4,"type":"chart"},{"id":103392,"position":3,"type":"chart"},{"id":103426,"position":10,"type":"chart"},{"id":103510,"position":5,"type":"chart"},{"id":103672,"position":6,"type":"chart"},{"id":104177,"position":5,"type":"chart"},{"id":105137,"position":8,"type":"chart"},{"id":105204,"position":9,"type":"chart"},{"id":105281,"position":4,"type":"chart"},{"id":105600,"position":8,"type":"chart"},{"id":105871,"position":3,"type":"chart"},{"id":105947,"position":1,"type":"chart"},{"id":105971,"position":1,"type":"chart"},{"id":106299,"position":8,"type":"chart"},{"id":106562,"position":9,"type":"chart"},{"id":107646,"position":9,"type":"chart"},{"id":107742,"position":5,"type":"chart"},{"id":107760,"position":2,"type":"chart"},{"id":108306,"position":8,"type":"chart"},{"id":108478,"position":10,"type":"chart"},{"id":109928,"position":5,"type":"chart"},{"id":112879,"position":8,"type":"chart"},{"id":112905,"position":5,"type":"chart"},{"id":113005,"position":10,"type":"chart"},{"id":120007,"position":5,"type":"chart"},{"id":121631,"position":6,"type":"chart"},{"id":131245,"position":9,"type":"chart"},{"id":137372,"position":4,"type":"chart"}],"release":{"id":936414,"name":"Razorfish
|
419
|
+
(Jerome Isma-Ae Remix)","type":"release","slug":"razorfish-jerome-isma-ae-remix"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5675434.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5675434.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5675435.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5675435.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5675436.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5675436.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5672091.png","secureUrl":"https:\/\/media.beatport.com\/image\/5672091.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5675436.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5672091.png"}},"position":2},{"id":3917103,"selected":false,"type":"track","sku":"track-3917103","name":"Alchemy
|
420
|
+
feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Above & Beyond
|
421
|
+
Club Mix","title":"Alchemy feat. Zoe Johnston (Above & Beyond Club Mix)","slug":"alchemy-feat-zoe-johnston-above-and-beyond-club-mix","isrc":"GBEWA1200880","releaseDate":"2012-11-19","publishDate":"2012-11-19","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3917103.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/3000000\/900000\/10000\/7000\/100\/0\/3917103.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3917103.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/3000000\/900000\/10000\/7000\/100\/0\/3917103.LOFI"},"mp4":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3917103.LOFI.mp4","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp4:lofi_samples\/items\/volumes\/volume1\/items\/3000000\/900000\/10000\/7000\/100\/0\/3917103.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
422
|
+
Content","length":"7:37","bpm":130,"key":{"standard":{"letter":"D","sharp":false,"flat":false,"chord":"minor"},"shortName":"Dmin"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
423
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
424
|
+
Johnston","slug":"zoe-johnston","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":130300,"position":7,"type":"chart"},{"id":130291,"position":8,"type":"chart"},{"id":130527,"position":10,"type":"chart"},{"id":130566,"position":3,"type":"chart"},{"id":130683,"position":6,"type":"chart"},{"id":130827,"position":5,"type":"chart"},{"id":130853,"position":3,"type":"chart"},{"id":135812,"position":5,"type":"chart"},{"id":131130,"position":1,"type":"chart"},{"id":131424,"position":1,"type":"chart"},{"id":131866,"position":2,"type":"chart"},{"id":132007,"position":1,"type":"chart"},{"id":132059,"position":5,"type":"chart"},{"id":132117,"position":3,"type":"chart"},{"id":132159,"position":1,"type":"chart"},{"id":132262,"position":3,"type":"chart"},{"id":132302,"position":10,"type":"chart"},{"id":125834,"position":7,"type":"chart"},{"id":132426,"position":2,"type":"chart"},{"id":132629,"position":6,"type":"chart"},{"id":132725,"position":2,"type":"chart"},{"id":132856,"position":9,"type":"chart"},{"id":133029,"position":5,"type":"chart"},{"id":133041,"position":2,"type":"chart"},{"id":133044,"position":2,"type":"chart"},{"id":133410,"position":6,"type":"chart"},{"id":133641,"position":6,"type":"chart"},{"id":133802,"position":10,"type":"chart"},{"id":134175,"position":5,"type":"chart"},{"id":134272,"position":1,"type":"chart"},{"id":134816,"position":6,"type":"chart"},{"id":135160,"position":7,"type":"chart"},{"id":135373,"position":5,"type":"chart"},{"id":135450,"position":7,"type":"chart"},{"id":135918,"position":2,"type":"chart"},{"id":136927,"position":3,"type":"chart"},{"id":137196,"position":7,"type":"chart"},{"id":137417,"position":9,"type":"chart"},{"id":137437,"position":2,"type":"chart"},{"id":137889,"position":6,"type":"chart"},{"id":138343,"position":6,"type":"chart"},{"id":139084,"position":6,"type":"chart"},{"id":139707,"position":7,"type":"chart"},{"id":139756,"position":6,"type":"chart"},{"id":140566,"position":4,"type":"chart"},{"id":140715,"position":6,"type":"chart"},{"id":141126,"position":5,"type":"chart"},{"id":141415,"position":9,"type":"chart"},{"id":141607,"position":3,"type":"chart"},{"id":141757,"position":1,"type":"chart"},{"id":142685,"position":7,"type":"chart"},{"id":142849,"position":1,"type":"chart"},{"id":147734,"position":2,"type":"chart"},{"id":147802,"position":9,"type":"chart"}],"release":{"id":994640,"name":"Alchemy","type":"release","slug":"alchemy"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/6242011.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6242011.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/6242012.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6242012.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/6242013.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6242013.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/6243501.png","secureUrl":"https:\/\/media.beatport.com\/image\/6243501.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6242013.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6243501.png"}},"position":3},{"id":3363600,"selected":false,"type":"track","sku":"track-3363600","name":"Love
|
425
|
+
Is Not Enough feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Above
|
426
|
+
& Beyond Club Mix","title":"Love Is Not Enough feat. Zoe Johnston (Above &
|
427
|
+
Beyond Club Mix)","slug":"love-is-not-enough-feat-zoe-johnston-above-and-beyond-club-mix","isrc":"GBEWA1101211","releaseDate":"2012-03-26","publishDate":"2012-03-26","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3363600.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/300000\/60000\/3000\/600\/0\/3363600.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3363600.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/300000\/60000\/3000\/600\/0\/3363600.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
428
|
+
Content","length":"7:43","bpm":130,"key":{"standard":{"letter":"A","sharp":true,"flat":false,"chord":"minor"},"shortName":"A♯min"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
429
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
430
|
+
Johnston","slug":"zoe-johnston","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":54500,"position":2,"type":"chart"},{"id":54737,"position":1,"type":"chart"},{"id":54823,"position":2,"type":"chart"},{"id":55271,"position":2,"type":"chart"},{"id":55550,"position":4,"type":"chart"},{"id":55710,"position":6,"type":"chart"},{"id":55761,"position":2,"type":"chart"},{"id":55832,"position":1,"type":"chart"},{"id":55990,"position":7,"type":"chart"},{"id":56380,"position":2,"type":"chart"},{"id":56764,"position":4,"type":"chart"},{"id":56780,"position":7,"type":"chart"},{"id":57320,"position":1,"type":"chart"},{"id":57658,"position":3,"type":"chart"},{"id":58384,"position":3,"type":"chart"},{"id":58822,"position":7,"type":"chart"},{"id":58999,"position":10,"type":"chart"},{"id":60400,"position":4,"type":"chart"},{"id":61224,"position":8,"type":"chart"},{"id":61411,"position":10,"type":"chart"},{"id":61531,"position":3,"type":"chart"},{"id":61823,"position":8,"type":"chart"},{"id":61939,"position":5,"type":"chart"},{"id":62645,"position":7,"type":"chart"},{"id":62956,"position":1,"type":"chart"},{"id":62981,"position":2,"type":"chart"},{"id":64403,"position":1,"type":"chart"},{"id":64468,"position":1,"type":"chart"},{"id":64541,"position":5,"type":"chart"},{"id":65919,"position":10,"type":"chart"},{"id":66106,"position":2,"type":"chart"},{"id":66108,"position":2,"type":"chart"},{"id":66137,"position":1,"type":"chart"},{"id":66224,"position":9,"type":"chart"},{"id":66562,"position":4,"type":"chart"},{"id":67501,"position":2,"type":"chart"},{"id":68369,"position":2,"type":"chart"},{"id":68382,"position":1,"type":"chart"},{"id":69654,"position":8,"type":"chart"},{"id":70013,"position":2,"type":"chart"},{"id":70077,"position":9,"type":"chart"},{"id":70738,"position":3,"type":"chart"},{"id":73312,"position":9,"type":"chart"},{"id":73693,"position":7,"type":"chart"},{"id":73815,"position":9,"type":"chart"},{"id":73882,"position":6,"type":"chart"},{"id":74810,"position":8,"type":"chart"},{"id":75555,"position":1,"type":"chart"},{"id":74612,"position":10,"type":"chart"},{"id":76499,"position":6,"type":"chart"},{"id":77762,"position":9,"type":"chart"},{"id":78057,"position":1,"type":"chart"},{"id":82792,"position":8,"type":"chart"},{"id":84907,"position":1,"type":"chart"},{"id":87408,"position":10,"type":"chart"},{"id":91887,"position":7,"type":"chart"},{"id":93015,"position":27,"type":"chart"},{"id":100106,"position":9,"type":"chart"},{"id":140504,"position":10,"type":"chart"}],"release":{"id":884851,"name":"Love
|
431
|
+
Is Not Enough","type":"release","slug":"love-is-not-enough"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5138374.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5138374.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5138375.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5138375.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5138376.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5138376.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5138377.png","secureUrl":"https:\/\/media.beatport.com\/image\/5138377.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5138376.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5138377.png"}},"position":4},{"id":3863148,"selected":false,"type":"track","sku":"track-3863148","name":"Room
|
432
|
+
For Happiness feat. Skylar Grey","trackNumber":1,"active":true,"mixName":"Above
|
433
|
+
& Beyond Remix","title":"Room For Happiness feat. Skylar Grey (Above & Beyond
|
434
|
+
Remix)","slug":"room-for-happiness-feat-skylar-grey-above-and-beyond-remix","isrc":"USUS11200952","releaseDate":"2012-11-06","publishDate":"2012-11-06","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3863148.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":false,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/800000\/60000\/3000\/100\/40\/3863148.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3863148.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/800000\/60000\/3000\/100\/40\/3863148.LOFI"},"mp4":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3863148.LOFI.mp4","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp4:lofi_samples\/items\/volumes\/volume2\/items\/3000000\/800000\/60000\/3000\/100\/40\/3863148.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
435
|
+
Content","length":"6:56","bpm":132,"key":{"standard":{"letter":"D","sharp":false,"flat":false,"chord":"minor"},"shortName":"Dmin"},"saleType":"purchase","artists":[{"id":370,"name":"Kaskade","slug":"kaskade","type":"artist"},{"id":7181,"name":"Above
|
436
|
+
& Beyond","slug":"above-and-beyond","type":"remixer"},{"id":180356,"name":"Skylar
|
437
|
+
Grey","slug":"skylar-grey","type":"artist"}],"genres":[{"id":15,"name":"Progressive
|
438
|
+
House","slug":"progressive-house","type":"genre"}],"subGenres":[],"charts":[{"id":128172,"position":2,"type":"chart"},{"id":128452,"position":9,"type":"chart"},{"id":129003,"position":9,"type":"chart"},{"id":129293,"position":9,"type":"chart"},{"id":129463,"position":10,"type":"chart"},{"id":129920,"position":4,"type":"chart"},{"id":130066,"position":6,"type":"chart"},{"id":129526,"position":9,"type":"chart"},{"id":130652,"position":6,"type":"chart"},{"id":130964,"position":8,"type":"chart"},{"id":131117,"position":8,"type":"chart"},{"id":131243,"position":8,"type":"chart"},{"id":131187,"position":4,"type":"chart"},{"id":131424,"position":8,"type":"chart"},{"id":131910,"position":5,"type":"chart"},{"id":131952,"position":6,"type":"chart"},{"id":132007,"position":5,"type":"chart"},{"id":132090,"position":5,"type":"chart"},{"id":132117,"position":6,"type":"chart"},{"id":132426,"position":10,"type":"chart"},{"id":132446,"position":4,"type":"chart"},{"id":131169,"position":10,"type":"chart"},{"id":133169,"position":5,"type":"chart"},{"id":133166,"position":8,"type":"chart"},{"id":133310,"position":4,"type":"chart"},{"id":133429,"position":7,"type":"chart"},{"id":133728,"position":10,"type":"chart"},{"id":133852,"position":8,"type":"chart"},{"id":134272,"position":3,"type":"chart"},{"id":129648,"position":7,"type":"chart"},{"id":136336,"position":4,"type":"chart"},{"id":140715,"position":8,"type":"chart"},{"id":146467,"position":5,"type":"chart"}],"release":{"id":983607,"name":"Room
|
439
|
+
for Happiness (feat. Skylar Grey) - Above & Beyond Remix","type":"release","slug":"room-for-happiness-feat-skylar-grey-above-and-beyond-remix"},"label":{"id":907,"name":"Ultra","type":"label","slug":"ultra","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/6130812.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6130812.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/6130813.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6130813.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/6130814.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6130814.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/6135119.png","secureUrl":"https:\/\/media.beatport.com\/image\/6135119.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6130814.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6135119.png"}},"position":5},{"id":1959090,"selected":false,"type":"track","sku":"track-1959090","name":"Thing
|
440
|
+
Called Love","trackNumber":7,"active":true,"mixName":"Acapella","title":"Thing
|
441
|
+
Called Love (Acapella)","slug":"thing-called-love-acapella","isrc":"GBEWA1100336","releaseDate":"2011-06-12","publishDate":"2011-06-12","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/1959090.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/1000000\/900000\/50000\/9000\/0\/90\/1959090.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/1959090.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume7\/items\/1000000\/900000\/50000\/9000\/0\/90\/1959090.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
442
|
+
Content","length":"2:51","bpm":0,"key":{"standard":{"letter":"D","sharp":true,"flat":false,"chord":"minor"},"shortName":"D♯min"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
443
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":145342,"name":"Richard
|
444
|
+
Bedford","slug":"richard-bedford","type":"artist"}],"genres":[{"id":16,"name":"DJ
|
445
|
+
Tools","slug":"dj-tools","type":"genre"}],"subGenres":[{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"}],"charts":[{"id":79260,"position":1,"type":"chart"},{"id":103745,"position":7,"type":"chart"},{"id":122306,"position":4,"type":"chart"}],"release":{"id":380469,"name":"Thing
|
446
|
+
Called Love","type":"release","slug":"thing-called-love"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/2918178.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918178.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/2918179.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918179.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/2918180.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918180.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/2918196.png","secureUrl":"https:\/\/media.beatport.com\/image\/2918196.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918180.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918196.png"}},"position":6},{"id":1959084,"selected":false,"type":"track","sku":"track-1959084","name":"Thing
|
447
|
+
Called Love","trackNumber":1,"active":true,"mixName":"Extended Radio Mix","title":"Thing
|
448
|
+
Called Love (Extended Radio Mix)","slug":"thing-called-love-extended-radio-mix","isrc":"GBEWA1100292","releaseDate":"2011-06-12","publishDate":"2011-06-12","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/1959084.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/1000000\/900000\/50000\/9000\/0\/80\/1959084.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/1959084.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume1\/items\/1000000\/900000\/50000\/9000\/0\/80\/1959084.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
449
|
+
Content","length":"6:57","bpm":134,"key":{"standard":{"letter":"D","sharp":true,"flat":false,"chord":"minor"},"shortName":"D♯min"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
450
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":145342,"name":"Richard
|
451
|
+
Bedford","slug":"richard-bedford","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":49223,"position":4,"type":"chart"},{"id":57734,"position":4,"type":"chart"},{"id":74332,"position":6,"type":"chart"},{"id":78931,"position":5,"type":"chart"},{"id":91303,"position":8,"type":"chart"},{"id":96479,"position":10,"type":"chart"},{"id":115628,"position":2,"type":"chart"},{"id":140715,"position":7,"type":"chart"},{"id":144007,"position":10,"type":"chart"}],"release":{"id":380469,"name":"Thing
|
452
|
+
Called Love","type":"release","slug":"thing-called-love"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/2918178.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918178.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/2918179.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918179.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/2918180.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/2918180.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/2918200.png","secureUrl":"https:\/\/media.beatport.com\/image\/2918200.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918180.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/2918200.png"}},"position":7},{"id":3372108,"selected":false,"type":"track","sku":"track-3372108","name":"Love
|
453
|
+
Is Not Enough feat. Zoe Johnston","trackNumber":2,"active":true,"mixName":"Maor
|
454
|
+
Levi & Bluestone Remix","title":"Love Is Not Enough feat. Zoe Johnston (Maor
|
455
|
+
Levi & Bluestone Remix)","slug":"love-is-not-enough-feat-zoe-johnston-maor-levi-and-bluestone-remix","isrc":"GBEWA1101213","releaseDate":"2012-04-02","publishDate":"2012-04-02","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3372108.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/300000\/70000\/2000\/100\/0\/3372108.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3372108.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/300000\/70000\/2000\/100\/0\/3372108.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
456
|
+
Content","length":"7:56","bpm":130,"key":{"standard":{"letter":"A","sharp":true,"flat":false,"chord":"minor"},"shortName":"A♯min"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
457
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
458
|
+
Johnston","slug":"zoe-johnston","type":"artist"},{"id":13105,"name":"Maor
|
459
|
+
Levi","slug":"maor-levi","type":"remixer"},{"id":30189,"name":"Bluestone","slug":"bluestone","type":"remixer"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":56096,"position":9,"type":"chart"},{"id":56197,"position":4,"type":"chart"},{"id":56477,"position":9,"type":"chart"},{"id":57115,"position":1,"type":"chart"},{"id":57134,"position":6,"type":"chart"},{"id":57477,"position":7,"type":"chart"},{"id":59030,"position":10,"type":"chart"},{"id":59167,"position":4,"type":"chart"},{"id":59413,"position":6,"type":"chart"},{"id":59404,"position":1,"type":"chart"},{"id":59786,"position":4,"type":"chart"},{"id":59979,"position":6,"type":"chart"},{"id":60834,"position":3,"type":"chart"},{"id":60989,"position":4,"type":"chart"},{"id":61283,"position":4,"type":"chart"},{"id":61293,"position":4,"type":"chart"},{"id":61307,"position":9,"type":"chart"},{"id":61933,"position":7,"type":"chart"},{"id":61980,"position":2,"type":"chart"},{"id":65239,"position":7,"type":"chart"},{"id":66723,"position":3,"type":"chart"},{"id":67445,"position":4,"type":"chart"},{"id":67544,"position":3,"type":"chart"},{"id":67588,"position":6,"type":"chart"},{"id":66875,"position":4,"type":"chart"},{"id":68154,"position":4,"type":"chart"},{"id":68298,"position":5,"type":"chart"},{"id":68241,"position":9,"type":"chart"},{"id":69289,"position":7,"type":"chart"},{"id":70025,"position":10,"type":"chart"},{"id":73393,"position":4,"type":"chart"},{"id":78361,"position":2,"type":"chart"},{"id":85495,"position":4,"type":"chart"},{"id":100834,"position":2,"type":"chart"},{"id":102899,"position":23,"type":"chart"},{"id":110015,"position":1,"type":"chart"},{"id":124445,"position":10,"type":"chart"},{"id":140947,"position":6,"type":"chart"}],"release":{"id":886467,"name":"Love
|
460
|
+
Is Not Enough (The Remixes) - Beatport","type":"release","slug":"love-is-not-enough-the-remixes-beatport"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5152514.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152514.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5152515.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152515.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5152516.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152516.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5157458.png","secureUrl":"https:\/\/media.beatport.com\/image\/5157458.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5152516.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5157458.png"}},"position":8},{"id":3372107,"selected":false,"type":"track","sku":"track-3372107","name":"Love
|
461
|
+
Is Not Enough feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Kaskade
|
462
|
+
Remix","title":"Love Is Not Enough feat. Zoe Johnston (Kaskade Remix)","slug":"love-is-not-enough-feat-zoe-johnston-kaskade-remix","isrc":"GBEWA1101212","releaseDate":"2012-04-02","publishDate":"2012-04-02","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3372107.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume4\/items\/3000000\/300000\/70000\/2000\/100\/0\/3372107.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3372107.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume4\/items\/3000000\/300000\/70000\/2000\/100\/0\/3372107.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
463
|
+
Content","length":"6:47","bpm":128,"key":{"standard":{"letter":"A","sharp":true,"flat":false,"chord":"minor"},"shortName":"A♯min"},"saleType":"purchase","artists":[{"id":370,"name":"Kaskade","slug":"kaskade","type":"remixer"},{"id":7181,"name":"Above
|
464
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":196318,"name":"Zoe
|
465
|
+
Johnston","slug":"zoe-johnston","type":"artist"}],"genres":[{"id":15,"name":"Progressive
|
466
|
+
House","slug":"progressive-house","type":"genre"}],"subGenres":[],"charts":[{"id":56115,"position":4,"type":"chart"},{"id":57741,"position":2,"type":"chart"},{"id":57992,"position":2,"type":"chart"},{"id":59805,"position":1,"type":"chart"},{"id":60994,"position":8,"type":"chart"},{"id":62278,"position":6,"type":"chart"},{"id":62736,"position":6,"type":"chart"},{"id":63199,"position":10,"type":"chart"},{"id":80791,"position":10,"type":"chart"},{"id":98205,"position":4,"type":"chart"},{"id":107988,"position":10,"type":"chart"},{"id":123612,"position":7,"type":"chart"}],"release":{"id":886467,"name":"Love
|
467
|
+
Is Not Enough (The Remixes) - Beatport","type":"release","slug":"love-is-not-enough-the-remixes-beatport"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/5152514.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152514.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/5152515.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152515.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/5152516.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5152516.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/5157457.png","secureUrl":"https:\/\/media.beatport.com\/image\/5157457.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5152516.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5157457.png"}},"position":9},{"id":3958694,"selected":false,"type":"track","sku":"track-3958694","name":"Alchemy
|
468
|
+
feat. Zoe Johnston","trackNumber":1,"active":true,"mixName":"Myon & Shane
|
469
|
+
54 Redemption Mix","title":"Alchemy feat. Zoe Johnston (Myon & Shane 54 Redemption
|
470
|
+
Mix)","slug":"alchemy-feat-zoe-johnston-myon-and-shane-54-redemption-mix","isrc":"GBEWA1200884","releaseDate":"2012-12-03","publishDate":"2012-12-03","sampleUrl":"http:\/\/geo-samples.beatport.com\/lofi\/3958694.LOFI.mp3","isPreviewAvailable":true,"isAvailableForMix":true,"rtmpStreamUrl":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/900000\/50000\/8000\/600\/90\/3958694.LOFI","exclusive":false,"isPromotable":false,"preview":{"mp3":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3958694.LOFI.mp3","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp3:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/900000\/50000\/8000\/600\/90\/3958694.LOFI"},"mp4":{"http":"http:\/\/geo-samples.beatport.com\/lofi\/3958694.LOFI.mp4","rtmp":"rtmp:\/\/geo-rtmp-samples.beatport.com\/beatport\/_definst_\/mp4:lofi_samples\/items\/volumes\/volume5\/items\/3000000\/900000\/50000\/8000\/600\/90\/3958694.LOFI"}},"price":{"code":"usd","symbol":"$","value":149},"audioFormatFee":{"wav":{"code":"usd","symbol":"$","value":75},"aiff":{"code":"usd","symbol":"$","value":75}},"losslessUpgradeFormatFee":[],"currentStatus":"General
|
471
|
+
Content","length":"9:07","bpm":132,"key":{"standard":{"letter":"G","sharp":false,"flat":false,"chord":"minor"},"shortName":"Gmin"},"saleType":"purchase","artists":[{"id":7181,"name":"Above
|
472
|
+
& Beyond","slug":"above-and-beyond","type":"artist"},{"id":61954,"name":"Myon
|
473
|
+
& Shane 54","slug":"myon-and-shane-54","type":"remixer"},{"id":196318,"name":"Zoe
|
474
|
+
Johnston","slug":"zoe-johnston","type":"artist"}],"genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"}],"subGenres":[],"charts":[{"id":133686,"position":9,"type":"chart"},{"id":134528,"position":2,"type":"chart"},{"id":134510,"position":4,"type":"chart"},{"id":134649,"position":7,"type":"chart"},{"id":134727,"position":3,"type":"chart"},{"id":135540,"position":8,"type":"chart"},{"id":136039,"position":10,"type":"chart"},{"id":136206,"position":2,"type":"chart"},{"id":136297,"position":7,"type":"chart"},{"id":137406,"position":10,"type":"chart"},{"id":137702,"position":7,"type":"chart"},{"id":137794,"position":7,"type":"chart"},{"id":138622,"position":9,"type":"chart"},{"id":139684,"position":5,"type":"chart"},{"id":141532,"position":8,"type":"chart"},{"id":142607,"position":4,"type":"chart"},{"id":142850,"position":7,"type":"chart"}],"release":{"id":1002941,"name":"Alchemy
|
475
|
+
(The Remixes)","type":"release","slug":"alchemy-the-remixes"},"label":{"id":804,"name":"Anjunabeats","type":"label","slug":"anjunabeats","status":true},"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/6324629.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6324629.jpg"},"medium":{"width":60,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/6324630.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6324630.jpg"},"large":{"width":500,"height":500,"url":"http:\/\/geo-media.beatport.com\/image\/6324631.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/6324631.jpg"},"waveform":{"width":1500,"height":250,"url":"http:\/\/geo-media.beatport.com\/image\/6325900.png","secureUrl":"https:\/\/media.beatport.com\/image\/6325900.png"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6324631.jpg"},"waveform":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/6325900.png"}},"position":10}]}'
|
476
|
+
http_version:
|
477
|
+
recorded_at: Fri, 08 Feb 2013 21:06:46 GMT
|
385
478
|
- request:
|
386
479
|
method: get
|
387
|
-
uri: http://api.beatport.com/catalog/3/artists?
|
480
|
+
uri: http://api.beatport.com/catalog/3/artists?id=7181
|
388
481
|
body:
|
389
482
|
encoding: US-ASCII
|
390
483
|
string: ''
|
@@ -394,38 +487,280 @@ http_interactions:
|
|
394
487
|
code: 200
|
395
488
|
message: OK
|
396
489
|
headers:
|
397
|
-
|
398
|
-
-
|
399
|
-
|
490
|
+
Date:
|
491
|
+
- Fri, 08 Feb 2013 21:06:48 GMT
|
492
|
+
Server:
|
400
493
|
- Apache
|
401
|
-
|
402
|
-
-
|
403
|
-
|
494
|
+
Expires:
|
495
|
+
- Fri, 08 Feb 2013 21:36:48 GMT
|
496
|
+
Pragma:
|
404
497
|
- public
|
405
|
-
|
498
|
+
Cache-Control:
|
406
499
|
- public, max-age=1800
|
407
|
-
|
500
|
+
Access-Control-Allow-Origin:
|
408
501
|
- ! '*'
|
409
|
-
|
410
|
-
- close
|
411
|
-
transfer-encoding:
|
502
|
+
Transfer-Encoding:
|
412
503
|
- chunked
|
413
|
-
|
504
|
+
Content-Type:
|
505
|
+
- application/json
|
506
|
+
body:
|
507
|
+
encoding: US-ASCII
|
508
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"id=7181","page":1,"perPage":10,"count":1,"totalPages":1,"perPageOptions":[{"value":50,"applyQuery":"id=7181&perPage=50"},{"value":100,"applyQuery":"id=7181&perPage=100"},{"value":150,"applyQuery":"id=7181&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":7181,"type":"artist","name":"Above
|
509
|
+
& Beyond","slug":"above-and-beyond","active":true,"lastPublishDate":"2013-02-05","biography":"","genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":10,"name":"Chill
|
510
|
+
Out","slug":"chill-out","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":9,"name":"Breaks","slug":"breaks","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":17,"name":"Electro
|
511
|
+
House","slug":"electro-house","type":"genre"},{"id":1,"name":"Drum & Bass","slug":"drum-and-bass","type":"genre"},{"id":16,"name":"DJ
|
512
|
+
Tools","slug":"dj-tools","type":"genre"},{"id":18,"name":"Dubstep","slug":"dubstep","type":"genre"},{"id":39,"name":"Pop
|
513
|
+
\/ Rock","slug":"pop-rock","type":"genre"},{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":27,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":38,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"},{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/4686424.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4686424.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4686424.jpg"}},"profile":{"type":"profile","id":9112,"person":{"type":"person","id":40359},"url":"http:\/\/dj.beatport.com\/profile\/9112","images":[],"name":null,"genres":[],"bio":null,"joinedDate":null,"followerCount":null,"followingCount":null,"unpublishedChartCount":0,"soundcloudMode":null,"soundcloudId":null,"mixCount":false,"charts":[],"events":[],"mixes":[],"badges":[],"link":{"href":"http:\/\/dj.beatport.com\/aboveandbeyond","rel":"self"},"latestTracks":[]}}]}'
|
514
|
+
http_version:
|
515
|
+
recorded_at: Fri, 08 Feb 2013 21:06:48 GMT
|
516
|
+
- request:
|
517
|
+
method: get
|
518
|
+
uri: http://api.beatport.com/catalog/3/artists?ids%5B0%5D=7181&ids%5B1%5D=7182
|
519
|
+
body:
|
520
|
+
encoding: US-ASCII
|
521
|
+
string: ''
|
522
|
+
headers: {}
|
523
|
+
response:
|
524
|
+
status:
|
525
|
+
code: 200
|
526
|
+
message: OK
|
527
|
+
headers:
|
528
|
+
Date:
|
529
|
+
- Fri, 08 Feb 2013 21:06:50 GMT
|
530
|
+
Server:
|
531
|
+
- Apache
|
532
|
+
Expires:
|
533
|
+
- Fri, 08 Feb 2013 21:36:50 GMT
|
534
|
+
Pragma:
|
535
|
+
- public
|
536
|
+
Cache-Control:
|
537
|
+
- public, max-age=1800
|
538
|
+
Access-Control-Allow-Origin:
|
539
|
+
- ! '*'
|
540
|
+
Transfer-Encoding:
|
541
|
+
- chunked
|
542
|
+
Content-Type:
|
414
543
|
- application/json
|
415
544
|
body:
|
416
545
|
encoding: US-ASCII
|
417
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"
|
418
|
-
|
546
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"ids%5B0%5D=7181&ids%5B1%5D=7182","page":1,"perPage":10,"count":2,"totalPages":1,"perPageOptions":[{"value":50,"applyQuery":"ids%5B0%5D=7181&ids%5B1%5D=7182&perPage=50"},{"value":100,"applyQuery":"ids%5B0%5D=7181&ids%5B1%5D=7182&perPage=100"},{"value":150,"applyQuery":"ids%5B0%5D=7181&ids%5B1%5D=7182&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":7181,"type":"artist","name":"Above
|
547
|
+
& Beyond","slug":"above-and-beyond","active":true,"lastPublishDate":"2013-02-05","biography":"","genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":10,"name":"Chill
|
548
|
+
Out","slug":"chill-out","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":9,"name":"Breaks","slug":"breaks","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":17,"name":"Electro
|
549
|
+
House","slug":"electro-house","type":"genre"},{"id":1,"name":"Drum & Bass","slug":"drum-and-bass","type":"genre"},{"id":16,"name":"DJ
|
550
|
+
Tools","slug":"dj-tools","type":"genre"},{"id":18,"name":"Dubstep","slug":"dubstep","type":"genre"},{"id":39,"name":"Pop
|
551
|
+
\/ Rock","slug":"pop-rock","type":"genre"},{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":27,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":38,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"},{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/4686424.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4686424.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4686424.jpg"}},"profile":{"type":"profile","id":9112,"person":{"type":"person","id":40359},"url":"http:\/\/dj.beatport.com\/profile\/9112","images":[],"name":null,"genres":[],"bio":null,"joinedDate":null,"followerCount":null,"followingCount":null,"unpublishedChartCount":0,"soundcloudMode":null,"soundcloudId":null,"mixCount":false,"charts":[],"events":[],"mixes":[],"badges":[],"link":{"href":"http:\/\/dj.beatport.com\/aboveandbeyond","rel":"self"},"latestTracks":[]}},{"id":7182,"type":"artist","name":"Bernal
|
552
|
+
Boogie","slug":"bernal-boogie","active":true,"lastPublishDate":"2005-06-07","biography":"","genres":[{"id":38,"name":"Hip-Hop","slug":"hip-hop","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
553
|
+
http_version:
|
554
|
+
recorded_at: Fri, 08 Feb 2013 21:06:50 GMT
|
555
|
+
- request:
|
556
|
+
method: get
|
557
|
+
uri: http://api.beatport.com/catalog/3/artists?facets=artistName:Above%20%26%20Beyond
|
558
|
+
body:
|
559
|
+
encoding: US-ASCII
|
560
|
+
string: ''
|
561
|
+
headers: {}
|
562
|
+
response:
|
563
|
+
status:
|
564
|
+
code: 200
|
565
|
+
message: OK
|
566
|
+
headers:
|
567
|
+
Date:
|
568
|
+
- Fri, 08 Feb 2013 21:06:50 GMT
|
569
|
+
Server:
|
570
|
+
- Apache
|
571
|
+
Expires:
|
572
|
+
- Fri, 08 Feb 2013 21:36:50 GMT
|
573
|
+
Pragma:
|
574
|
+
- public
|
575
|
+
Cache-Control:
|
576
|
+
- public, max-age=1800
|
577
|
+
Access-Control-Allow-Origin:
|
578
|
+
- ! '*'
|
579
|
+
Transfer-Encoding:
|
580
|
+
- chunked
|
581
|
+
Content-Type:
|
582
|
+
- application/json
|
583
|
+
body:
|
584
|
+
encoding: US-ASCII
|
585
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"facets%5B0%5D=artistName%3AAbove+%26+Beyond","page":1,"perPage":10,"count":1,"totalPages":1,"perPageOptions":[{"value":50,"applyQuery":"facets%5B0%5D=artistName%3AAbove+%26+Beyond&perPage=50"},{"value":100,"applyQuery":"facets%5B0%5D=artistName%3AAbove+%26+Beyond&perPage=100"},{"value":150,"applyQuery":"facets%5B0%5D=artistName%3AAbove+%26+Beyond&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":7181,"type":"artist","name":"Above
|
586
|
+
& Beyond","slug":"above-and-beyond","active":true,"lastPublishDate":"2013-02-05","biography":"","genres":[{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":10,"name":"Chill
|
587
|
+
Out","slug":"chill-out","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":9,"name":"Breaks","slug":"breaks","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":17,"name":"Electro
|
588
|
+
House","slug":"electro-house","type":"genre"},{"id":1,"name":"Drum & Bass","slug":"drum-and-bass","type":"genre"},{"id":16,"name":"DJ
|
589
|
+
Tools","slug":"dj-tools","type":"genre"},{"id":18,"name":"Dubstep","slug":"dubstep","type":"genre"},{"id":39,"name":"Pop
|
590
|
+
\/ Rock","slug":"pop-rock","type":"genre"},{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":27,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":38,"name":"Progressive","slug":"progressive","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"},{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/4686424.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/4686424.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/4686424.jpg"}},"profile":{"type":"profile","id":9112,"person":{"type":"person","id":40359},"url":"http:\/\/dj.beatport.com\/profile\/9112","images":[],"name":null,"genres":[],"bio":null,"joinedDate":null,"followerCount":null,"followingCount":null,"unpublishedChartCount":0,"soundcloudMode":null,"soundcloudId":null,"mixCount":false,"charts":[],"events":[],"mixes":[],"badges":[],"link":{"href":"http:\/\/dj.beatport.com\/aboveandbeyond","rel":"self"},"latestTracks":[]}}]}'
|
591
|
+
http_version:
|
592
|
+
recorded_at: Fri, 08 Feb 2013 21:06:50 GMT
|
593
|
+
- request:
|
594
|
+
method: get
|
595
|
+
uri: http://api.beatport.com/catalog/3/artists?
|
596
|
+
body:
|
597
|
+
encoding: US-ASCII
|
598
|
+
string: ''
|
599
|
+
headers: {}
|
600
|
+
response:
|
601
|
+
status:
|
602
|
+
code: 200
|
603
|
+
message: OK
|
604
|
+
headers:
|
605
|
+
Date:
|
606
|
+
- Fri, 08 Feb 2013 21:06:51 GMT
|
607
|
+
Server:
|
608
|
+
- Apache
|
609
|
+
Expires:
|
610
|
+
- Fri, 08 Feb 2013 21:36:51 GMT
|
611
|
+
Pragma:
|
612
|
+
- public
|
613
|
+
Cache-Control:
|
614
|
+
- public, max-age=1800
|
615
|
+
Access-Control-Allow-Origin:
|
616
|
+
- ! '*'
|
617
|
+
Transfer-Encoding:
|
618
|
+
- chunked
|
619
|
+
Content-Type:
|
620
|
+
- application/json
|
621
|
+
body:
|
622
|
+
encoding: US-ASCII
|
623
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":false,"page":1,"perPage":10,"count":272814,"totalPages":27282,"nextQuery":"page=2","perPageOptions":[{"value":50,"applyQuery":"perPage=50"},{"value":100,"applyQuery":"perPage=100"},{"value":150,"applyQuery":"perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":1,"type":"artist","name":"12
|
624
|
+
Inch Thumpers","slug":"12-inch-thumpers","active":true,"lastPublishDate":"2011-03-06","biography":"","genres":[{"id":8,"name":"Hard
|
625
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1162,"type":"artist","name":"UK
|
626
|
+
Gold","slug":"uk-gold","active":true,"lastPublishDate":"2011-10-05","biography":"","genres":[{"id":8,"name":"Hard
|
627
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":10,"name":"Chill Out","slug":"chill-out","type":"genre"},{"id":12,"name":"Deep
|
628
|
+
House","slug":"deep-house","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":11,"name":"Tech
|
629
|
+
House","slug":"tech-house","type":"genre"}],"subGenres":[{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":24,"name":"Melodic","slug":"melodic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1163,"type":"artist","name":"Paul
|
630
|
+
Glazby","slug":"paul-glazby","active":true,"lastPublishDate":"2013-02-08","biography":"","genres":[{"id":8,"name":"Hard
|
631
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
632
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"},{"id":13,"name":"Psy-Trance","slug":"psy-trance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":32,"name":"Nu-NRG","slug":"nu-nrg","type":"subgenre"},{"id":28,"name":"Acid","slug":"acid","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":90,"name":"Acid","slug":"acid","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1165,"type":"artist","name":"Ilogik","slug":"ilogik","active":true,"lastPublishDate":"2012-10-07","biography":"","genres":[{"id":8,"name":"Hard
|
633
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
634
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1167,"type":"artist","name":"jOHNNYDANGEROUs","slug":"johnnydangerous","active":true,"lastPublishDate":"2012-12-03","biography":"FOREMOST
|
635
|
+
POETS aka \"jOHNNYDANGEROUs\"\rHe has been reshaping Dance, Funk and the spoken
|
636
|
+
word. Philadelphia born in 1970, USA, Raised in New Jersey, he continues to
|
637
|
+
innovate while releasing collaborations as well as some of his unreleased
|
638
|
+
remixed re-touches of Rick James, Marvin Gaye, Stevie Wonder, Enya, Dr. Buzzard''s
|
639
|
+
Original Savannah Band, The Peech Boys, San Ilya, Outkast, Jazmina & others.
|
640
|
+
He currently has singing collaborations with multiple producers & artist for
|
641
|
+
this decade like Karizma, Louie Vega, Robert Babicz, Macjam, Mr. V, Vincent
|
642
|
+
\"DJ Spinna\" Williams & many others. jOHNNYDANGEROUs, poet, producer, writer,
|
643
|
+
singer, DJ & engineer is no longer a master in the making.\r\r\"There may
|
644
|
+
be many Johnny Dangerous'', but there''s only one Foremost Poets\".","genres":[{"id":8,"name":"Hard
|
645
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":12,"name":"Deep
|
646
|
+
House","slug":"deep-house","type":"genre"},{"id":16,"name":"DJ Tools","slug":"dj-tools","type":"genre"},{"id":11,"name":"Tech
|
647
|
+
House","slug":"tech-house","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":40,"name":"Funk
|
648
|
+
\/ R&B","slug":"funk-r-and-b","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"}],"subGenres":[{"id":17,"name":"Vocal
|
649
|
+
House","slug":"vocal-house","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":19,"name":"Tribal","slug":"tribal","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5674852.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5674852.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5674852.jpg"}},"profile":null},{"id":1168,"type":"artist","name":"John
|
650
|
+
Whiteman","slug":"john-whiteman","active":true,"lastPublishDate":"2011-03-20","biography":"","genres":[{"id":8,"name":"Hard
|
651
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1181,"type":"artist","name":"Mobi
|
652
|
+
D","slug":"mobi-d","active":true,"lastPublishDate":"2010-07-01","biography":"","genres":[{"id":8,"name":"Hard
|
653
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1182,"type":"artist","name":"Jason
|
654
|
+
Nawty","slug":"jason-nawty","active":true,"lastPublishDate":"2010-07-01","biography":"","genres":[{"id":8,"name":"Hard
|
655
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1185,"type":"artist","name":"Vinyl
|
656
|
+
Coup","slug":"vinyl-coup","active":true,"lastPublishDate":"2002-07-22","biography":"","genres":[{"id":8,"name":"Hard
|
657
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1187,"type":"artist","name":"The
|
658
|
+
Boyz","slug":"the-boyz","active":true,"lastPublishDate":"2003-02-03","biography":"","genres":[{"id":8,"name":"Hard
|
659
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
660
|
+
http_version:
|
661
|
+
recorded_at: Fri, 08 Feb 2013 21:06:51 GMT
|
662
|
+
- request:
|
663
|
+
method: get
|
664
|
+
uri: http://api.beatport.com/catalog/3/artists?page=1&perPage=5
|
665
|
+
body:
|
666
|
+
encoding: US-ASCII
|
667
|
+
string: ''
|
668
|
+
headers: {}
|
669
|
+
response:
|
670
|
+
status:
|
671
|
+
code: 200
|
672
|
+
message: OK
|
673
|
+
headers:
|
674
|
+
Date:
|
675
|
+
- Fri, 08 Feb 2013 21:06:51 GMT
|
676
|
+
Server:
|
677
|
+
- Apache
|
678
|
+
Expires:
|
679
|
+
- Fri, 08 Feb 2013 21:36:51 GMT
|
680
|
+
Pragma:
|
681
|
+
- public
|
682
|
+
Cache-Control:
|
683
|
+
- public, max-age=1800
|
684
|
+
Access-Control-Allow-Origin:
|
685
|
+
- ! '*'
|
686
|
+
Transfer-Encoding:
|
687
|
+
- chunked
|
688
|
+
Content-Type:
|
689
|
+
- application/json
|
690
|
+
body:
|
691
|
+
encoding: US-ASCII
|
692
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"perPage=5","page":1,"perPage":5,"count":272814,"totalPages":54563,"nextQuery":"perPage=5&page=2","perPageOptions":[{"value":50,"applyQuery":"perPage=50"},{"value":100,"applyQuery":"perPage=100"},{"value":150,"applyQuery":"perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":1,"type":"artist","name":"12
|
693
|
+
Inch Thumpers","slug":"12-inch-thumpers","active":true,"lastPublishDate":"2011-03-06","biography":"","genres":[{"id":8,"name":"Hard
|
694
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1162,"type":"artist","name":"UK
|
695
|
+
Gold","slug":"uk-gold","active":true,"lastPublishDate":"2011-10-05","biography":"","genres":[{"id":8,"name":"Hard
|
696
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":10,"name":"Chill Out","slug":"chill-out","type":"genre"},{"id":12,"name":"Deep
|
697
|
+
House","slug":"deep-house","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":11,"name":"Tech
|
698
|
+
House","slug":"tech-house","type":"genre"}],"subGenres":[{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":24,"name":"Melodic","slug":"melodic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1163,"type":"artist","name":"Paul
|
699
|
+
Glazby","slug":"paul-glazby","active":true,"lastPublishDate":"2013-02-08","biography":"","genres":[{"id":8,"name":"Hard
|
700
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
701
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"},{"id":13,"name":"Psy-Trance","slug":"psy-trance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":32,"name":"Nu-NRG","slug":"nu-nrg","type":"subgenre"},{"id":28,"name":"Acid","slug":"acid","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":90,"name":"Acid","slug":"acid","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1165,"type":"artist","name":"Ilogik","slug":"ilogik","active":true,"lastPublishDate":"2012-10-07","biography":"","genres":[{"id":8,"name":"Hard
|
702
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
703
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1167,"type":"artist","name":"jOHNNYDANGEROUs","slug":"johnnydangerous","active":true,"lastPublishDate":"2012-12-03","biography":"FOREMOST
|
704
|
+
POETS aka \"jOHNNYDANGEROUs\"\rHe has been reshaping Dance, Funk and the spoken
|
705
|
+
word. Philadelphia born in 1970, USA, Raised in New Jersey, he continues to
|
706
|
+
innovate while releasing collaborations as well as some of his unreleased
|
707
|
+
remixed re-touches of Rick James, Marvin Gaye, Stevie Wonder, Enya, Dr. Buzzard''s
|
708
|
+
Original Savannah Band, The Peech Boys, San Ilya, Outkast, Jazmina & others.
|
709
|
+
He currently has singing collaborations with multiple producers & artist for
|
710
|
+
this decade like Karizma, Louie Vega, Robert Babicz, Macjam, Mr. V, Vincent
|
711
|
+
\"DJ Spinna\" Williams & many others. jOHNNYDANGEROUs, poet, producer, writer,
|
712
|
+
singer, DJ & engineer is no longer a master in the making.\r\r\"There may
|
713
|
+
be many Johnny Dangerous'', but there''s only one Foremost Poets\".","genres":[{"id":8,"name":"Hard
|
714
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":12,"name":"Deep
|
715
|
+
House","slug":"deep-house","type":"genre"},{"id":16,"name":"DJ Tools","slug":"dj-tools","type":"genre"},{"id":11,"name":"Tech
|
716
|
+
House","slug":"tech-house","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":40,"name":"Funk
|
717
|
+
\/ R&B","slug":"funk-r-and-b","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"}],"subGenres":[{"id":17,"name":"Vocal
|
718
|
+
House","slug":"vocal-house","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":19,"name":"Tribal","slug":"tribal","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5674852.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5674852.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5674852.jpg"}},"profile":null}]}'
|
719
|
+
http_version:
|
720
|
+
recorded_at: Fri, 08 Feb 2013 21:06:51 GMT
|
721
|
+
- request:
|
722
|
+
method: get
|
723
|
+
uri: http://api.beatport.com/catalog/3/artists?genreId=5&page=1&perPage=5&sortBy=publishDate%20asc,artistId%20asc
|
724
|
+
body:
|
725
|
+
encoding: US-ASCII
|
726
|
+
string: ''
|
727
|
+
headers: {}
|
728
|
+
response:
|
729
|
+
status:
|
730
|
+
code: 200
|
731
|
+
message: OK
|
732
|
+
headers:
|
733
|
+
Date:
|
734
|
+
- Fri, 08 Feb 2013 21:06:52 GMT
|
735
|
+
Server:
|
736
|
+
- Apache
|
737
|
+
Expires:
|
738
|
+
- Fri, 08 Feb 2013 21:36:52 GMT
|
739
|
+
Pragma:
|
740
|
+
- public
|
741
|
+
Cache-Control:
|
742
|
+
- public, max-age=1800
|
743
|
+
Access-Control-Allow-Origin:
|
744
|
+
- ! '*'
|
745
|
+
Transfer-Encoding:
|
746
|
+
- chunked
|
747
|
+
Content-Type:
|
748
|
+
- application/json
|
749
|
+
body:
|
750
|
+
encoding: US-ASCII
|
751
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=5","page":1,"perPage":5,"count":272814,"totalPages":54563,"nextQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=5&page=2","perPageOptions":[{"value":50,"applyQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=50"},{"value":100,"applyQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=100"},{"value":150,"applyQuery":"sortBy=publishDate+asc%2CartistId+asc&genreId=5&perPage=150"}],"facets":{"fields":[]},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":210376,"type":"artist","name":"The
|
752
|
+
Disco Express","slug":"the-disco-express","active":true,"lastPublishDate":"1976-01-01","biography":"","genres":[{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":309820,"type":"artist","name":"Arthur
|
753
|
+
Prysock","slug":"arthur-prysock","active":true,"lastPublishDate":"1976-07-18","biography":"","genres":[{"id":37,"name":"Indie
|
754
|
+
Dance \/ Nu Disco","slug":"indie-dance-nu-disco","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":202864,"type":"artist","name":"Amber
|
419
755
|
Route","slug":"amber-route","active":true,"lastPublishDate":"1980-05-05","biography":"","genres":[{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":298330,"type":"artist","name":"Colin
|
420
756
|
Newman","slug":"colin-newman","active":true,"lastPublishDate":"1981-01-01","biography":"","genres":[{"id":39,"name":"Pop
|
421
757
|
\/ Rock","slug":"pop-rock","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":202928,"type":"artist","name":"George
|
422
|
-
Higton","slug":"george-higton","active":true,"lastPublishDate":"1983-05-25","biography":"","genres":[{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":13,"name":"IDM","slug":"idm","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}
|
423
|
-
|
424
|
-
|
425
|
-
recorded_at: Sat, 22 Dec 2012 22:33:54 GMT
|
758
|
+
Higton","slug":"george-higton","active":true,"lastPublishDate":"1983-05-25","biography":"","genres":[{"id":3,"name":"Electronica","slug":"electronica","type":"genre"}],"subGenres":[{"id":13,"name":"IDM","slug":"idm","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
759
|
+
http_version:
|
760
|
+
recorded_at: Fri, 08 Feb 2013 21:06:52 GMT
|
426
761
|
- request:
|
427
762
|
method: get
|
428
|
-
uri: http://api.beatport.com/catalog/3/artists?returnFacets=genreName
|
763
|
+
uri: http://api.beatport.com/catalog/3/artists?returnFacets=genreName,performerName
|
429
764
|
body:
|
430
765
|
encoding: US-ASCII
|
431
766
|
string: ''
|
@@ -435,53 +770,49 @@ http_interactions:
|
|
435
770
|
code: 200
|
436
771
|
message: OK
|
437
772
|
headers:
|
438
|
-
|
439
|
-
-
|
440
|
-
|
773
|
+
Date:
|
774
|
+
- Fri, 08 Feb 2013 21:06:52 GMT
|
775
|
+
Server:
|
441
776
|
- Apache
|
442
|
-
|
443
|
-
-
|
444
|
-
|
777
|
+
Expires:
|
778
|
+
- Fri, 08 Feb 2013 21:36:52 GMT
|
779
|
+
Pragma:
|
445
780
|
- public
|
446
|
-
|
781
|
+
Cache-Control:
|
447
782
|
- public, max-age=1800
|
448
|
-
|
783
|
+
Access-Control-Allow-Origin:
|
449
784
|
- ! '*'
|
450
|
-
|
451
|
-
- close
|
452
|
-
transfer-encoding:
|
785
|
+
Transfer-Encoding:
|
453
786
|
- chunked
|
454
|
-
|
787
|
+
Content-Type:
|
455
788
|
- application/json
|
456
789
|
body:
|
457
790
|
encoding: US-ASCII
|
458
|
-
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"returnFacets=genreName%2CperformerName","page":1,"perPage":10,"count":
|
459
|
-
House","count":
|
460
|
-
House","count":
|
461
|
-
House","count":
|
462
|
-
House","count":
|
463
|
-
Out","count":
|
464
|
-
Dance \/ Nu Disco","count":
|
465
|
-
& Bass","count":
|
466
|
-
\/ Rock","count":
|
467
|
-
Dance","count":
|
468
|
-
\/ Hard Techno","count":
|
469
|
-
Tools","count":
|
470
|
-
\/ Dub","count":
|
471
|
-
\/ R&B","count":
|
472
|
-
Hop","count":
|
791
|
+
string: ! '{"metadata":{"host":"api.beatport.com","path":"\/catalog\/artists","query":"returnFacets=genreName%2CperformerName","page":1,"perPage":10,"count":272814,"totalPages":27282,"nextQuery":"returnFacets=genreName%2CperformerName&page=2","perPageOptions":[{"value":50,"applyQuery":"returnFacets=genreName%2CperformerName&perPage=50"},{"value":100,"applyQuery":"returnFacets=genreName%2CperformerName&perPage=100"},{"value":150,"applyQuery":"returnFacets=genreName%2CperformerName&perPage=150"}],"facets":{"fields":{"genreName":[{"name":"House","count":84577,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHouse","removeQuery":null},{"name":"Progressive
|
792
|
+
House","count":61071,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AProgressive+House","removeQuery":null},{"name":"Tech
|
793
|
+
House","count":57224,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ATech+House","removeQuery":null},{"name":"Electro
|
794
|
+
House","count":48290,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AElectro+House","removeQuery":null},{"name":"Techno","count":45607,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ATechno","removeQuery":null},{"name":"Electronica","count":38443,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AElectronica","removeQuery":null},{"name":"Deep
|
795
|
+
House","count":38208,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADeep+House","removeQuery":null},{"name":"Trance","count":33268,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ATrance","removeQuery":null},{"name":"Chill
|
796
|
+
Out","count":31512,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AChill+Out","removeQuery":null},{"name":"Minimal","count":21960,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AMinimal","removeQuery":null},{"name":"Hip-Hop","count":18532,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHip-Hop","removeQuery":null},{"name":"Breaks","count":16865,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ABreaks","removeQuery":null},{"name":"Indie
|
797
|
+
Dance \/ Nu Disco","count":16484,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AIndie+Dance+%2F+Nu+Disco","removeQuery":null},{"name":"Dubstep","count":15128,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADubstep","removeQuery":null},{"name":"Drum
|
798
|
+
& Bass","count":13572,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADrum+%26+Bass","removeQuery":null},{"name":"Pop
|
799
|
+
\/ Rock","count":10539,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3APop+%2F+Rock","removeQuery":null},{"name":"Hard
|
800
|
+
Dance","count":10469,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHard+Dance","removeQuery":null},{"name":"Hardcore
|
801
|
+
\/ Hard Techno","count":8968,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AHardcore+%2F+Hard+Techno","removeQuery":null},{"name":"DJ
|
802
|
+
Tools","count":8866,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3ADJ+Tools","removeQuery":null},{"name":"Psy-Trance","count":7098,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3APsy-Trance","removeQuery":null},{"name":"Reggae
|
803
|
+
\/ Dub","count":5171,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AReggae+%2F+Dub","removeQuery":null},{"name":"Funk
|
804
|
+
\/ R&B","count":4850,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AFunk+%2F+R%26B","removeQuery":null},{"name":"Glitch
|
805
|
+
Hop","count":1727,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AGlitch+Hop","removeQuery":null},{"name":"World","count":24,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AWorld","removeQuery":null},{"name":"Vocal","count":4,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=genreName%3AVocal","removeQuery":null}],"performerName":[{"name":"Jason
|
473
806
|
Justiano","count":4,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AJason+Justiano","removeQuery":null},{"name":"Simon
|
474
807
|
Bones","count":4,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASimon+Bones","removeQuery":null},{"name":"Ace","count":3,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAce","removeQuery":null},{"name":"Peter
|
475
808
|
Jurgens","count":3,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APeter+Jurgens","removeQuery":null},{"name":"Ze
|
476
809
|
Hangoverz","count":3,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AZe+Hangoverz","removeQuery":null},{"name":"Abe
|
477
810
|
Clements","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAbe+Clements","removeQuery":null},{"name":"Acid
|
478
811
|
Jack","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAcid+Jack","removeQuery":null},{"name":"Active
|
479
|
-
Sense","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AActive+Sense","removeQuery":null},{"name":"
|
480
|
-
Oland","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAdam+Oland","removeQuery":null},{"name":"Al
|
812
|
+
Sense","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AActive+Sense","removeQuery":null},{"name":"Al
|
481
813
|
B. Rich","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAl+B.+Rich","removeQuery":null},{"name":"Alek
|
482
814
|
Biotic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAlek+Biotic","removeQuery":null},{"name":"Andres
|
483
|
-
Honrubia","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAndres+Honrubia","removeQuery":null},{"name":"
|
484
|
-
Stevens","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAntony+Stevens","removeQuery":null},{"name":"Bando
|
815
|
+
Honrubia","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AAndres+Honrubia","removeQuery":null},{"name":"Bando
|
485
816
|
do Sul","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABando+do+Sul","removeQuery":null},{"name":"Bo
|
486
817
|
Bun Heaters","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABo+Bun+Heaters","removeQuery":null},{"name":"BossArt
|
487
818
|
Ensemble","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ABossArt+Ensemble","removeQuery":null},{"name":"Brothers
|
@@ -496,7 +827,7 @@ http_interactions:
|
|
496
827
|
Reich","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADennis+Reich","removeQuery":null},{"name":"Dirty
|
497
828
|
Lou","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADirty+Lou","removeQuery":null},{"name":"Dirty
|
498
829
|
Thieving Mongrels","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADirty+Thieving+Mongrels","removeQuery":null},{"name":"Dizzy
|
499
|
-
Plant","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADizzy+Plant","removeQuery":null},{"name":"Downpressor","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADownpressor","removeQuery":null},{"name":"
|
830
|
+
Plant","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADizzy+Plant","removeQuery":null},{"name":"Downpressor","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ADownpressor","removeQuery":null},{"name":"Fabio
|
500
831
|
Amoroso","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFabio+Amoroso","removeQuery":null},{"name":"Feuersanger","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFeuersanger","removeQuery":null},{"name":"Filthy
|
501
832
|
Habits","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFilthy+Habits","removeQuery":null},{"name":"Fist
|
502
833
|
Of Fury","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFist+Of+Fury","removeQuery":null},{"name":"Francesca","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AFrancesca","removeQuery":null},{"name":"Funky
|
@@ -520,8 +851,7 @@ http_interactions:
|
|
520
851
|
Wonk","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AMr.+Wonk","removeQuery":null},{"name":"N''fa","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AN%27fa","removeQuery":null},{"name":"Nadsroic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ANadsroic","removeQuery":null},{"name":"Nastascha","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ANastascha","removeQuery":null},{"name":"Node1","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ANode1","removeQuery":null},{"name":"One
|
521
852
|
Soul","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AOne+Soul","removeQuery":null},{"name":"Pallid","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APallid","removeQuery":null},{"name":"Pascal
|
522
853
|
Horain","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APascal+Horain","removeQuery":null},{"name":"Phaze
|
523
|
-
Dee","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APhaze+Dee","removeQuery":null},{"name":"Phoenix''Lo","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APhoenix%27Lo","removeQuery":null},{"name":"
|
524
|
-
Enemy vs. Ferry Corsten","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APublic+Enemy+vs.+Ferry+Corsten","removeQuery":null},{"name":"Purplephazer","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APurplephazer","removeQuery":null},{"name":"Ricco
|
854
|
+
Dee","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APhaze+Dee","removeQuery":null},{"name":"Phoenix''Lo","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APhoenix%27Lo","removeQuery":null},{"name":"Purplephazer","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3APurplephazer","removeQuery":null},{"name":"Ricco
|
525
855
|
S","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ARicco+S","removeQuery":null},{"name":"Rzac","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ARzac","removeQuery":null},{"name":"Selfsays","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASelfsays","removeQuery":null},{"name":"Sergio
|
526
856
|
From 909","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASergio+From+909","removeQuery":null},{"name":"Sinan
|
527
857
|
Baymak","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASinan+Baymak","removeQuery":null},{"name":"SoL-RoM","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ASoL-RoM","removeQuery":null},{"name":"Somnus
|
@@ -534,42 +864,48 @@ http_interactions:
|
|
534
864
|
Snakes","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ATrouser+Snakes","removeQuery":null},{"name":"Tweaked
|
535
865
|
Out","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3ATweaked+Out","removeQuery":null},{"name":"Vic","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVic","removeQuery":null},{"name":"Vicky
|
536
866
|
D","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVicky+D","removeQuery":null},{"name":"Victor
|
537
|
-
Event","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVictor+Event","removeQuery":null},{"name":"
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
867
|
+
Event","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AVictor+Event","removeQuery":null},{"name":"Wayob","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AWayob","removeQuery":null},{"name":"X
|
868
|
+
Green","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AX+Green","removeQuery":null},{"name":"Xoanna
|
869
|
+
Guilmary","count":2,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3AXoanna+Guilmary","removeQuery":null},{"name":"","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A","removeQuery":null},{"name":"
|
870
|
+
53 hz","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A+53+hz","removeQuery":null},{"name":"
|
871
|
+
Jean Claude Ades","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A+Jean+Claude+Ades","removeQuery":null},{"name":"
|
872
|
+
Z.E.T.A.","count":1,"applied":false,"applyQuery":"returnFacets=genreName%2CperformerName&facets%5B0%5D=performerName%3A+Z.E.T.A.","removeQuery":null}]}},"appliedFacets":[],"spellcheck":{"suggestions":[]}},"results":[{"id":1,"type":"artist","name":"12
|
873
|
+
Inch Thumpers","slug":"12-inch-thumpers","active":true,"lastPublishDate":"2011-03-06","biography":"","genres":[{"id":8,"name":"Hard
|
874
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1162,"type":"artist","name":"UK
|
875
|
+
Gold","slug":"uk-gold","active":true,"lastPublishDate":"2011-10-05","biography":"","genres":[{"id":8,"name":"Hard
|
876
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":10,"name":"Chill Out","slug":"chill-out","type":"genre"},{"id":12,"name":"Deep
|
877
|
+
House","slug":"deep-house","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":11,"name":"Tech
|
878
|
+
House","slug":"tech-house","type":"genre"}],"subGenres":[{"id":39,"name":"Downtempo","slug":"downtempo","type":"subgenre"},{"id":24,"name":"Melodic","slug":"melodic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1163,"type":"artist","name":"Paul
|
879
|
+
Glazby","slug":"paul-glazby","active":true,"lastPublishDate":"2013-02-08","biography":"","genres":[{"id":8,"name":"Hard
|
880
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
881
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"},{"id":13,"name":"Psy-Trance","slug":"psy-trance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":32,"name":"Nu-NRG","slug":"nu-nrg","type":"subgenre"},{"id":28,"name":"Acid","slug":"acid","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":90,"name":"Acid","slug":"acid","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1165,"type":"artist","name":"Ilogik","slug":"ilogik","active":true,"lastPublishDate":"2012-10-07","biography":"","genres":[{"id":8,"name":"Hard
|
882
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":7,"name":"Trance","slug":"trance","type":"genre"},{"id":2,"name":"Hardcore
|
883
|
+
\/ Hard Techno","slug":"hardcore-hard-techno","type":"genre"}],"subGenres":[{"id":31,"name":"Hard","slug":"hard","type":"subgenre"},{"id":12,"name":"Happy","slug":"happy","type":"subgenre"},{"id":30,"name":"Epic","slug":"epic","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1167,"type":"artist","name":"jOHNNYDANGEROUs","slug":"johnnydangerous","active":true,"lastPublishDate":"2012-12-03","biography":"FOREMOST
|
884
|
+
POETS aka \"jOHNNYDANGEROUs\"\rHe has been reshaping Dance, Funk and the spoken
|
885
|
+
word. Philadelphia born in 1970, USA, Raised in New Jersey, he continues to
|
886
|
+
innovate while releasing collaborations as well as some of his unreleased
|
887
|
+
remixed re-touches of Rick James, Marvin Gaye, Stevie Wonder, Enya, Dr. Buzzard''s
|
888
|
+
Original Savannah Band, The Peech Boys, San Ilya, Outkast, Jazmina & others.
|
889
|
+
He currently has singing collaborations with multiple producers & artist for
|
890
|
+
this decade like Karizma, Louie Vega, Robert Babicz, Macjam, Mr. V, Vincent
|
891
|
+
\"DJ Spinna\" Williams & many others. jOHNNYDANGEROUs, poet, producer, writer,
|
892
|
+
singer, DJ & engineer is no longer a master in the making.\r\r\"There may
|
893
|
+
be many Johnny Dangerous'', but there''s only one Foremost Poets\".","genres":[{"id":8,"name":"Hard
|
894
|
+
Dance","slug":"hard-dance","type":"genre"},{"id":5,"name":"House","slug":"house","type":"genre"},{"id":12,"name":"Deep
|
895
|
+
House","slug":"deep-house","type":"genre"},{"id":16,"name":"DJ Tools","slug":"dj-tools","type":"genre"},{"id":11,"name":"Tech
|
896
|
+
House","slug":"tech-house","type":"genre"},{"id":15,"name":"Progressive House","slug":"progressive-house","type":"genre"},{"id":40,"name":"Funk
|
897
|
+
\/ R&B","slug":"funk-r-and-b","type":"genre"},{"id":6,"name":"Techno","slug":"techno","type":"genre"}],"subGenres":[{"id":17,"name":"Vocal
|
898
|
+
House","slug":"vocal-house","type":"subgenre"},{"id":46,"name":"Acapellas","slug":"acapellas","type":"subgenre"},{"id":19,"name":"Tribal","slug":"tribal","type":"subgenre"},{"id":18,"name":"Disco","slug":"disco","type":"subgenre"}],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5674852.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5674852.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5674852.jpg"}},"profile":null},{"id":1168,"type":"artist","name":"John
|
899
|
+
Whiteman","slug":"john-whiteman","active":true,"lastPublishDate":"2011-03-20","biography":"","genres":[{"id":8,"name":"Hard
|
900
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1181,"type":"artist","name":"Mobi
|
901
|
+
D","slug":"mobi-d","active":true,"lastPublishDate":"2010-07-01","biography":"","genres":[{"id":8,"name":"Hard
|
902
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1182,"type":"artist","name":"Jason
|
903
|
+
Nawty","slug":"jason-nawty","active":true,"lastPublishDate":"2010-07-01","biography":"","genres":[{"id":8,"name":"Hard
|
904
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1185,"type":"artist","name":"Vinyl
|
905
|
+
Coup","slug":"vinyl-coup","active":true,"lastPublishDate":"2002-07-22","biography":"","genres":[{"id":8,"name":"Hard
|
906
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null},{"id":1187,"type":"artist","name":"The
|
907
|
+
Boyz","slug":"the-boyz","active":true,"lastPublishDate":"2003-02-03","biography":"","genres":[{"id":8,"name":"Hard
|
908
|
+
Dance","slug":"hard-dance","type":"genre"}],"subGenres":[],"images":{"small":{"width":30,"height":30,"url":"http:\/\/geo-media.beatport.com\/image\/491527.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491527.jpg"},"medium":{"width":88,"height":60,"url":"http:\/\/geo-media.beatport.com\/image\/491530.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/491530.jpg"},"large":{"width":590,"height":404,"url":"http:\/\/geo-media.beatport.com\/image\/5539565.jpg","secureUrl":"https:\/\/media.beatport.com\/image\/5539565.jpg"}},"dynamicImages":{"main":{"url":"\/\/geo-media.beatport.com\/image_size{hq}\/{w}x{h}\/5539565.jpg"}},"profile":null}]}'
|
909
|
+
http_version:
|
910
|
+
recorded_at: Fri, 08 Feb 2013 21:06:53 GMT
|
911
|
+
recorded_with: VCR 2.4.0
|