billboard 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History +1 -0
- data/LICENSE +20 -0
- data/README.markdown +37 -0
- data/Rakefile +91 -0
- data/VERSION.yml +4 -0
- data/lib/billboard.rb +47 -0
- data/lib/billboard/client.rb +85 -0
- data/test/billboard/client_test.rb +36 -0
- data/test/fixtures/album_charts.json +257 -0
- data/test/fixtures/artist_search_with_date_range.json +905 -0
- data/test/fixtures/chart.json +143 -0
- data/test/fixtures/song_search.json +759 -0
- data/test/test_helper.rb +36 -0
- metadata +138 -0
@@ -0,0 +1,143 @@
|
|
1
|
+
{
|
2
|
+
"chart": {
|
3
|
+
"issueDate": "2006-03-04",
|
4
|
+
"description": "Chart",
|
5
|
+
"chartItems": {
|
6
|
+
"firstPosition": 1,
|
7
|
+
"totalReturned": 10,
|
8
|
+
"totalRecords": 25,
|
9
|
+
"chartItem": [{
|
10
|
+
"peak": 1,
|
11
|
+
"artistName": "Luther Vandross",
|
12
|
+
"catalogNo": "66068",
|
13
|
+
"rank": 1,
|
14
|
+
"exrank": 6,
|
15
|
+
"distribution": "Sony Music",
|
16
|
+
"promotion": "Legacy\/Epic",
|
17
|
+
"song": "Greatest Hits",
|
18
|
+
"weeksOn": 95,
|
19
|
+
"albumId": 391812,
|
20
|
+
"artistId": 5945
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"peak": 1,
|
24
|
+
"artistName": "50 Cent",
|
25
|
+
"catalogNo": "493544*",
|
26
|
+
"rank": 2,
|
27
|
+
"exrank": 2,
|
28
|
+
"distribution": "Interscope",
|
29
|
+
"promotion": "Shady\/Aftermath",
|
30
|
+
"song": "Get Rich Or Die Tryin'",
|
31
|
+
"weeksOn": 159,
|
32
|
+
"albumId": 567925,
|
33
|
+
"artistId": 340706
|
34
|
+
},
|
35
|
+
{
|
36
|
+
"peak": 1,
|
37
|
+
"artistName": "Stevie Wonder",
|
38
|
+
"catalogNo": "066164",
|
39
|
+
"rank": 3,
|
40
|
+
"exrank": 1,
|
41
|
+
"distribution": "UMe",
|
42
|
+
"promotion": "Motown\/UTV",
|
43
|
+
"song": "The Definitive Collection",
|
44
|
+
"weeksOn": 110,
|
45
|
+
"albumId": 555471,
|
46
|
+
"artistId": 116778
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"peak": 4,
|
50
|
+
"artistName": "Mary J. Blige",
|
51
|
+
"catalogNo": "111156*",
|
52
|
+
"rank": 4,
|
53
|
+
"exrank": 11,
|
54
|
+
"distribution": "Interscope",
|
55
|
+
"promotion": "MCA\/Geffen",
|
56
|
+
"song": "My Life",
|
57
|
+
"weeksOn": 220,
|
58
|
+
"albumId": 158889,
|
59
|
+
"artistId": 43746
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"peak": 1,
|
63
|
+
"artistName": "Al Green",
|
64
|
+
"catalogNo": "30800",
|
65
|
+
"rank": 5,
|
66
|
+
"exrank": 8,
|
67
|
+
"distribution": "Capitol",
|
68
|
+
"promotion": "HI\/The Right Stuff",
|
69
|
+
"song": "Greatest Hits",
|
70
|
+
"weeksOn": 544,
|
71
|
+
"albumId": 33150,
|
72
|
+
"artistId": 4749
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"peak": 1,
|
76
|
+
"artistName": "Beyonce",
|
77
|
+
"catalogNo": "86386*",
|
78
|
+
"rank": 6,
|
79
|
+
"exrank": 4,
|
80
|
+
"distribution": "Sony Music",
|
81
|
+
"promotion": "Columbia",
|
82
|
+
"song": "Dangerously In Love",
|
83
|
+
"weeksOn": 36,
|
84
|
+
"albumId": 583221,
|
85
|
+
"artistId": 317670
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"peak": 3,
|
89
|
+
"artistName": "Keith Sweat",
|
90
|
+
"catalogNo": "73954",
|
91
|
+
"rank": 7,
|
92
|
+
"exrank": 3,
|
93
|
+
"distribution": "Rhino",
|
94
|
+
"promotion": "Elektra",
|
95
|
+
"song": "The Best Of Keith Sweat: Make You Sweat",
|
96
|
+
"weeksOn": 6,
|
97
|
+
"albumId": 615746,
|
98
|
+
"artistId": 5795
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"peak": 1,
|
102
|
+
"artistName": "2Pac",
|
103
|
+
"catalogNo": "490301*",
|
104
|
+
"rank": 8,
|
105
|
+
"exrank": 12,
|
106
|
+
"distribution": "Interscope",
|
107
|
+
"promotion": "Amaru\/Death Row",
|
108
|
+
"song": "Greatest Hits",
|
109
|
+
"weeksOn": 374,
|
110
|
+
"albumId": 330080,
|
111
|
+
"artistId": 37157
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"peak": 1,
|
115
|
+
"artistName": "Jaheim",
|
116
|
+
"catalogNo": "47452*",
|
117
|
+
"rank": 9,
|
118
|
+
"exrank": 20,
|
119
|
+
"distribution": "Warner Bros.",
|
120
|
+
"promotion": "Divine Mill",
|
121
|
+
"song": "[Ghetto Love]",
|
122
|
+
"weeksOn": 183,
|
123
|
+
"albumId": 463407,
|
124
|
+
"artistId": 422032
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"peak": 1,
|
128
|
+
"artistName": "Sade",
|
129
|
+
"catalogNo": "85287",
|
130
|
+
"rank": 10,
|
131
|
+
"exrank": 21,
|
132
|
+
"distribution": "Sony Music",
|
133
|
+
"promotion": "Epic",
|
134
|
+
"song": "The Best Of Sade",
|
135
|
+
"weeksOn": 493,
|
136
|
+
"albumId": 158822,
|
137
|
+
"artistId": 5590
|
138
|
+
}]
|
139
|
+
},
|
140
|
+
"name": "Top R&B\/Hip-Hop Catalog Albums",
|
141
|
+
"id": 3064446
|
142
|
+
}
|
143
|
+
}
|
@@ -0,0 +1,759 @@
|
|
1
|
+
{
|
2
|
+
"searchResults": {
|
3
|
+
"firstPosition": 1,
|
4
|
+
"totalReturned": 36,
|
5
|
+
"totalRecords": 36,
|
6
|
+
"chartItem": [{
|
7
|
+
"peak": 0,
|
8
|
+
"rank": 42,
|
9
|
+
"exrank": 0,
|
10
|
+
"chart": {
|
11
|
+
"specType": "Year-end Singles",
|
12
|
+
"issueDate": "1986-12-31",
|
13
|
+
"specId": 411,
|
14
|
+
"name": "The Billboard Hot 100",
|
15
|
+
"id": 3077247
|
16
|
+
},
|
17
|
+
"promotion": "Columbia",
|
18
|
+
"song": "Danger Zone",
|
19
|
+
"artist": "Kenny Loggins",
|
20
|
+
"weeksOn": 0,
|
21
|
+
"id": 9015417
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"producer": "G.Moroder",
|
25
|
+
"chart": {
|
26
|
+
"specType": "Singles",
|
27
|
+
"issueDate": "1986-09-27",
|
28
|
+
"specId": 379,
|
29
|
+
"name": "The Billboard Hot 100",
|
30
|
+
"id": 3005274
|
31
|
+
},
|
32
|
+
"artist": "Kenny Loggins",
|
33
|
+
"promotion": "Columbia",
|
34
|
+
"weeksOn": 21,
|
35
|
+
"id": 6247941,
|
36
|
+
"peak": 2,
|
37
|
+
"rank": 94,
|
38
|
+
"catalogNo": "38-05893",
|
39
|
+
"exrank": 79,
|
40
|
+
"distribution": "Columbia",
|
41
|
+
"writer": "G.Moroder,T.Whitlock",
|
42
|
+
"song": "Danger Zone"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"producer": "G.Moroder",
|
46
|
+
"chart": {
|
47
|
+
"specType": "Singles",
|
48
|
+
"issueDate": "1986-09-20",
|
49
|
+
"specId": 379,
|
50
|
+
"name": "The Billboard Hot 100",
|
51
|
+
"id": 3005273
|
52
|
+
},
|
53
|
+
"artist": "Kenny Loggins",
|
54
|
+
"promotion": "Columbia",
|
55
|
+
"weeksOn": 21,
|
56
|
+
"id": 6247846,
|
57
|
+
"peak": 2,
|
58
|
+
"rank": 79,
|
59
|
+
"catalogNo": "38-05893",
|
60
|
+
"exrank": 70,
|
61
|
+
"distribution": "Columbia",
|
62
|
+
"writer": "G.Moroder,T.Whitlock",
|
63
|
+
"song": "Danger Zone"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"producer": "G.Moroder",
|
67
|
+
"chart": {
|
68
|
+
"specType": "Singles",
|
69
|
+
"issueDate": "1986-09-13",
|
70
|
+
"specId": 379,
|
71
|
+
"name": "The Billboard Hot 100",
|
72
|
+
"id": 3005272
|
73
|
+
},
|
74
|
+
"artist": "Kenny Loggins",
|
75
|
+
"promotion": "Columbia",
|
76
|
+
"weeksOn": 21,
|
77
|
+
"id": 6247771,
|
78
|
+
"peak": 2,
|
79
|
+
"rank": 70,
|
80
|
+
"catalogNo": "38-05893",
|
81
|
+
"exrank": 57,
|
82
|
+
"distribution": "Columbia",
|
83
|
+
"writer": "G.Moroder,T.Whitlock",
|
84
|
+
"song": "Danger Zone"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"producer": "G.Moroder",
|
88
|
+
"chart": {
|
89
|
+
"specType": "Singles",
|
90
|
+
"issueDate": "1986-09-06",
|
91
|
+
"specId": 379,
|
92
|
+
"name": "The Billboard Hot 100",
|
93
|
+
"id": 3005271
|
94
|
+
},
|
95
|
+
"artist": "Kenny Loggins",
|
96
|
+
"promotion": "Columbia",
|
97
|
+
"weeksOn": 21,
|
98
|
+
"id": 6247652,
|
99
|
+
"peak": 2,
|
100
|
+
"rank": 57,
|
101
|
+
"catalogNo": "38-05893",
|
102
|
+
"exrank": 38,
|
103
|
+
"distribution": "Columbia",
|
104
|
+
"writer": "G.Moroder,T.Whitlock",
|
105
|
+
"song": "Danger Zone"
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"producer": "G.Moroder",
|
109
|
+
"chart": {
|
110
|
+
"specType": "Singles",
|
111
|
+
"issueDate": "1986-08-30",
|
112
|
+
"specId": 379,
|
113
|
+
"name": "The Billboard Hot 100",
|
114
|
+
"id": 3005224
|
115
|
+
},
|
116
|
+
"artist": "Kenny Loggins",
|
117
|
+
"promotion": "Columbia",
|
118
|
+
"weeksOn": 21,
|
119
|
+
"id": 6244693,
|
120
|
+
"peak": 2,
|
121
|
+
"rank": 38,
|
122
|
+
"catalogNo": "38-05893",
|
123
|
+
"exrank": 26,
|
124
|
+
"distribution": "Columbia",
|
125
|
+
"writer": "G.Moroder,T.Whitlock",
|
126
|
+
"song": "Danger Zone"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"producer": "G.Moroder",
|
130
|
+
"chart": {
|
131
|
+
"specType": "Singles",
|
132
|
+
"issueDate": "1986-08-23",
|
133
|
+
"specId": 379,
|
134
|
+
"name": "The Billboard Hot 100",
|
135
|
+
"id": 3005223
|
136
|
+
},
|
137
|
+
"artist": "Kenny Loggins",
|
138
|
+
"promotion": "Columbia",
|
139
|
+
"weeksOn": 21,
|
140
|
+
"id": 6244570,
|
141
|
+
"peak": 2,
|
142
|
+
"rank": 26,
|
143
|
+
"catalogNo": "38-05893",
|
144
|
+
"exrank": 16,
|
145
|
+
"distribution": "Columbia",
|
146
|
+
"writer": "G.Moroder,T.Whitlock",
|
147
|
+
"song": "Danger Zone"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"producer": "G.Moroder",
|
151
|
+
"chart": {
|
152
|
+
"specType": "Singles",
|
153
|
+
"issueDate": "1986-08-16",
|
154
|
+
"specId": 379,
|
155
|
+
"name": "The Billboard Hot 100",
|
156
|
+
"id": 3005222
|
157
|
+
},
|
158
|
+
"artist": "Kenny Loggins",
|
159
|
+
"promotion": "Columbia",
|
160
|
+
"weeksOn": 21,
|
161
|
+
"id": 6244429,
|
162
|
+
"peak": 2,
|
163
|
+
"rank": 16,
|
164
|
+
"catalogNo": "38-05893",
|
165
|
+
"exrank": 7,
|
166
|
+
"distribution": "Columbia",
|
167
|
+
"writer": "G.Moroder,T.Whitlock",
|
168
|
+
"song": "Danger Zone"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"producer": "G.Moroder",
|
172
|
+
"chart": {
|
173
|
+
"specType": "Singles",
|
174
|
+
"issueDate": "1986-08-09",
|
175
|
+
"specId": 379,
|
176
|
+
"name": "The Billboard Hot 100",
|
177
|
+
"id": 3005221
|
178
|
+
},
|
179
|
+
"artist": "Kenny Loggins",
|
180
|
+
"promotion": "Columbia",
|
181
|
+
"weeksOn": 21,
|
182
|
+
"id": 6244424,
|
183
|
+
"peak": 2,
|
184
|
+
"rank": 7,
|
185
|
+
"catalogNo": "38-05893",
|
186
|
+
"exrank": 3,
|
187
|
+
"distribution": "Columbia",
|
188
|
+
"writer": "G.Moroder,T.Whitlock",
|
189
|
+
"song": "Danger Zone"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"producer": "G.Moroder",
|
193
|
+
"chart": {
|
194
|
+
"specType": "Singles",
|
195
|
+
"issueDate": "1986-08-02",
|
196
|
+
"specId": 379,
|
197
|
+
"name": "The Billboard Hot 100",
|
198
|
+
"id": 3005220
|
199
|
+
},
|
200
|
+
"artist": "Kenny Loggins",
|
201
|
+
"promotion": "Columbia",
|
202
|
+
"weeksOn": 21,
|
203
|
+
"id": 6244325,
|
204
|
+
"peak": 2,
|
205
|
+
"rank": 3,
|
206
|
+
"catalogNo": "38-05893",
|
207
|
+
"exrank": 2,
|
208
|
+
"distribution": "Columbia",
|
209
|
+
"writer": "G.Moroder,T.Whitlock",
|
210
|
+
"song": "Danger Zone"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"producer": "Not Listed",
|
214
|
+
"chart": {
|
215
|
+
"specType": "Singles",
|
216
|
+
"issueDate": "1986-08-02",
|
217
|
+
"specId": 376,
|
218
|
+
"name": "Hot Mainstream Rock Tracks",
|
219
|
+
"id": 3005225
|
220
|
+
},
|
221
|
+
"artist": "Kenny Loggins",
|
222
|
+
"promotion": "Columbia",
|
223
|
+
"weeksOn": 11,
|
224
|
+
"id": 6244760,
|
225
|
+
"peak": 7,
|
226
|
+
"rank": 34,
|
227
|
+
"catalogNo": "Charted",
|
228
|
+
"exrank": 25,
|
229
|
+
"distribution": "Columbia",
|
230
|
+
"writer": "Not Listed",
|
231
|
+
"song": "Danger Zone"
|
232
|
+
},
|
233
|
+
{
|
234
|
+
"producer": "Not Listed",
|
235
|
+
"chart": {
|
236
|
+
"specType": "Singles",
|
237
|
+
"issueDate": "1986-07-26",
|
238
|
+
"specId": 376,
|
239
|
+
"name": "Hot Mainstream Rock Tracks",
|
240
|
+
"id": 3005163
|
241
|
+
},
|
242
|
+
"artist": "Kenny Loggins",
|
243
|
+
"promotion": "Columbia",
|
244
|
+
"weeksOn": 11,
|
245
|
+
"id": 6240995,
|
246
|
+
"peak": 7,
|
247
|
+
"rank": 25,
|
248
|
+
"catalogNo": "Charted",
|
249
|
+
"exrank": 15,
|
250
|
+
"distribution": "Columbia",
|
251
|
+
"writer": "Not Listed",
|
252
|
+
"song": "Danger Zone"
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"producer": "G.Moroder",
|
256
|
+
"chart": {
|
257
|
+
"specType": "Singles",
|
258
|
+
"issueDate": "1986-07-26",
|
259
|
+
"specId": 379,
|
260
|
+
"name": "The Billboard Hot 100",
|
261
|
+
"id": 3005159
|
262
|
+
},
|
263
|
+
"artist": "Kenny Loggins",
|
264
|
+
"promotion": "Columbia",
|
265
|
+
"weeksOn": 21,
|
266
|
+
"id": 6240752,
|
267
|
+
"peak": 2,
|
268
|
+
"rank": 2,
|
269
|
+
"catalogNo": "38-05893",
|
270
|
+
"exrank": 4,
|
271
|
+
"distribution": "Columbia",
|
272
|
+
"writer": "G.Moroder,T.Whitlock",
|
273
|
+
"song": "Danger Zone"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"producer": "Not Listed",
|
277
|
+
"chart": {
|
278
|
+
"specType": "Singles",
|
279
|
+
"issueDate": "1986-07-19",
|
280
|
+
"specId": 376,
|
281
|
+
"name": "Hot Mainstream Rock Tracks",
|
282
|
+
"id": 3005162
|
283
|
+
},
|
284
|
+
"artist": "Kenny Loggins",
|
285
|
+
"promotion": "Columbia",
|
286
|
+
"weeksOn": 11,
|
287
|
+
"id": 6240945,
|
288
|
+
"peak": 7,
|
289
|
+
"rank": 15,
|
290
|
+
"catalogNo": "Charted",
|
291
|
+
"exrank": 7,
|
292
|
+
"distribution": "Columbia",
|
293
|
+
"writer": "Not Listed",
|
294
|
+
"song": "Danger Zone"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"producer": "G.Moroder",
|
298
|
+
"chart": {
|
299
|
+
"specType": "Singles",
|
300
|
+
"issueDate": "1986-07-19",
|
301
|
+
"specId": 379,
|
302
|
+
"name": "The Billboard Hot 100",
|
303
|
+
"id": 3005158
|
304
|
+
},
|
305
|
+
"artist": "Kenny Loggins",
|
306
|
+
"promotion": "Columbia",
|
307
|
+
"weeksOn": 21,
|
308
|
+
"id": 6240654,
|
309
|
+
"peak": 2,
|
310
|
+
"rank": 4,
|
311
|
+
"catalogNo": "38-05893",
|
312
|
+
"exrank": 7,
|
313
|
+
"distribution": "Columbia",
|
314
|
+
"writer": "G.Moroder,T.Whitlock",
|
315
|
+
"song": "Danger Zone"
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"producer": "G.Moroder",
|
319
|
+
"chart": {
|
320
|
+
"specType": "Singles",
|
321
|
+
"issueDate": "1986-07-12",
|
322
|
+
"specId": 379,
|
323
|
+
"name": "The Billboard Hot 100",
|
324
|
+
"id": 3005157
|
325
|
+
},
|
326
|
+
"artist": "Kenny Loggins",
|
327
|
+
"promotion": "Columbia",
|
328
|
+
"weeksOn": 21,
|
329
|
+
"id": 6240649,
|
330
|
+
"peak": 2,
|
331
|
+
"rank": 7,
|
332
|
+
"catalogNo": "38-05893",
|
333
|
+
"exrank": 10,
|
334
|
+
"distribution": "Columbia",
|
335
|
+
"writer": "G.Moroder,T.Whitlock",
|
336
|
+
"song": "Danger Zone"
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"producer": "Not Listed",
|
340
|
+
"chart": {
|
341
|
+
"specType": "Singles",
|
342
|
+
"issueDate": "1986-07-12",
|
343
|
+
"specId": 376,
|
344
|
+
"name": "Hot Mainstream Rock Tracks",
|
345
|
+
"id": 3005161
|
346
|
+
},
|
347
|
+
"artist": "Kenny Loggins",
|
348
|
+
"promotion": "Columbia",
|
349
|
+
"weeksOn": 11,
|
350
|
+
"id": 6240897,
|
351
|
+
"peak": 7,
|
352
|
+
"rank": 7,
|
353
|
+
"catalogNo": "Charted",
|
354
|
+
"exrank": 7,
|
355
|
+
"distribution": "Columbia",
|
356
|
+
"writer": "Not Listed",
|
357
|
+
"song": "Danger Zone"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"producer": "G.Moroder",
|
361
|
+
"chart": {
|
362
|
+
"specType": "Singles",
|
363
|
+
"issueDate": "1986-07-05",
|
364
|
+
"specId": 379,
|
365
|
+
"name": "The Billboard Hot 100",
|
366
|
+
"id": 3005156
|
367
|
+
},
|
368
|
+
"artist": "Kenny Loggins",
|
369
|
+
"promotion": "Columbia",
|
370
|
+
"weeksOn": 21,
|
371
|
+
"id": 6240547,
|
372
|
+
"peak": 2,
|
373
|
+
"rank": 10,
|
374
|
+
"catalogNo": "38-05893",
|
375
|
+
"exrank": 14,
|
376
|
+
"distribution": "Columbia",
|
377
|
+
"writer": "G.Moroder,T.Whitlock",
|
378
|
+
"song": "Danger Zone"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"producer": "Not Listed",
|
382
|
+
"chart": {
|
383
|
+
"specType": "Singles",
|
384
|
+
"issueDate": "1986-07-05",
|
385
|
+
"specId": 376,
|
386
|
+
"name": "Hot Mainstream Rock Tracks",
|
387
|
+
"id": 3005160
|
388
|
+
},
|
389
|
+
"artist": "Kenny Loggins",
|
390
|
+
"promotion": "Columbia",
|
391
|
+
"weeksOn": 11,
|
392
|
+
"id": 6240857,
|
393
|
+
"peak": 7,
|
394
|
+
"rank": 7,
|
395
|
+
"catalogNo": "Charted",
|
396
|
+
"exrank": 8,
|
397
|
+
"distribution": "Columbia",
|
398
|
+
"writer": "Not Listed",
|
399
|
+
"song": "Danger Zone"
|
400
|
+
},
|
401
|
+
{
|
402
|
+
"producer": "Not Listed",
|
403
|
+
"chart": {
|
404
|
+
"specType": "Singles",
|
405
|
+
"issueDate": "1986-06-28",
|
406
|
+
"specId": 376,
|
407
|
+
"name": "Hot Mainstream Rock Tracks",
|
408
|
+
"id": 3005109
|
409
|
+
},
|
410
|
+
"artist": "Kenny Loggins",
|
411
|
+
"promotion": "Columbia",
|
412
|
+
"weeksOn": 11,
|
413
|
+
"id": 6237555,
|
414
|
+
"peak": 7,
|
415
|
+
"rank": 8,
|
416
|
+
"catalogNo": "Charted",
|
417
|
+
"exrank": 11,
|
418
|
+
"distribution": "Columbia",
|
419
|
+
"writer": "Not Listed",
|
420
|
+
"song": "Danger Zone"
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"producer": "G.Moroder",
|
424
|
+
"chart": {
|
425
|
+
"specType": "Singles",
|
426
|
+
"issueDate": "1986-06-28",
|
427
|
+
"specId": 379,
|
428
|
+
"name": "The Billboard Hot 100",
|
429
|
+
"id": 3005105
|
430
|
+
},
|
431
|
+
"artist": "Kenny Loggins",
|
432
|
+
"promotion": "Columbia",
|
433
|
+
"weeksOn": 21,
|
434
|
+
"id": 6237402,
|
435
|
+
"peak": 2,
|
436
|
+
"rank": 14,
|
437
|
+
"catalogNo": "38-05893",
|
438
|
+
"exrank": 22,
|
439
|
+
"distribution": "Columbia",
|
440
|
+
"writer": "G.Moroder,T.Whitlock",
|
441
|
+
"song": "Danger Zone"
|
442
|
+
},
|
443
|
+
{
|
444
|
+
"producer": "G.Moroder",
|
445
|
+
"chart": {
|
446
|
+
"specType": "Singles",
|
447
|
+
"issueDate": "1986-06-21",
|
448
|
+
"specId": 379,
|
449
|
+
"name": "The Billboard Hot 100",
|
450
|
+
"id": 3005104
|
451
|
+
},
|
452
|
+
"artist": "Kenny Loggins",
|
453
|
+
"promotion": "Columbia",
|
454
|
+
"weeksOn": 21,
|
455
|
+
"id": 6237239,
|
456
|
+
"peak": 2,
|
457
|
+
"rank": 22,
|
458
|
+
"catalogNo": "38-05893",
|
459
|
+
"exrank": 28,
|
460
|
+
"distribution": "Columbia",
|
461
|
+
"writer": "G.Moroder,T.Whitlock",
|
462
|
+
"song": "Danger Zone"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"producer": "Not Listed",
|
466
|
+
"chart": {
|
467
|
+
"specType": "Singles",
|
468
|
+
"issueDate": "1986-06-21",
|
469
|
+
"specId": 376,
|
470
|
+
"name": "Hot Mainstream Rock Tracks",
|
471
|
+
"id": 3005108
|
472
|
+
},
|
473
|
+
"artist": "Kenny Loggins",
|
474
|
+
"promotion": "Columbia",
|
475
|
+
"weeksOn": 11,
|
476
|
+
"id": 6237518,
|
477
|
+
"peak": 7,
|
478
|
+
"rank": 11,
|
479
|
+
"catalogNo": "Charted",
|
480
|
+
"exrank": 19,
|
481
|
+
"distribution": "Columbia",
|
482
|
+
"writer": "Not Listed",
|
483
|
+
"song": "Danger Zone"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"producer": "G.Moroder",
|
487
|
+
"chart": {
|
488
|
+
"specType": "Singles",
|
489
|
+
"issueDate": "1986-06-14",
|
490
|
+
"specId": 379,
|
491
|
+
"name": "The Billboard Hot 100",
|
492
|
+
"id": 3005103
|
493
|
+
},
|
494
|
+
"artist": "Kenny Loggins",
|
495
|
+
"promotion": "Columbia",
|
496
|
+
"weeksOn": 21,
|
497
|
+
"id": 6237159,
|
498
|
+
"peak": 2,
|
499
|
+
"rank": 28,
|
500
|
+
"catalogNo": "38-05893",
|
501
|
+
"exrank": 34,
|
502
|
+
"distribution": "Columbia",
|
503
|
+
"writer": "G.Moroder,T.Whitlock",
|
504
|
+
"song": "Danger Zone"
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"producer": "Not Listed",
|
508
|
+
"chart": {
|
509
|
+
"specType": "Singles",
|
510
|
+
"issueDate": "1986-06-14",
|
511
|
+
"specId": 376,
|
512
|
+
"name": "Hot Mainstream Rock Tracks",
|
513
|
+
"id": 3005107
|
514
|
+
},
|
515
|
+
"artist": "Kenny Loggins",
|
516
|
+
"promotion": "Columbia",
|
517
|
+
"weeksOn": 11,
|
518
|
+
"id": 6237486,
|
519
|
+
"peak": 7,
|
520
|
+
"rank": 19,
|
521
|
+
"catalogNo": "Charted",
|
522
|
+
"exrank": 24,
|
523
|
+
"distribution": "Columbia",
|
524
|
+
"writer": "Not Listed",
|
525
|
+
"song": "Danger Zone"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"producer": "Not Listed",
|
529
|
+
"chart": {
|
530
|
+
"specType": "Singles",
|
531
|
+
"issueDate": "1986-06-07",
|
532
|
+
"specId": 376,
|
533
|
+
"name": "Hot Mainstream Rock Tracks",
|
534
|
+
"id": 3005106
|
535
|
+
},
|
536
|
+
"artist": "Kenny Loggins",
|
537
|
+
"promotion": "Columbia",
|
538
|
+
"weeksOn": 11,
|
539
|
+
"id": 6237451,
|
540
|
+
"peak": 7,
|
541
|
+
"rank": 24,
|
542
|
+
"catalogNo": "Charted",
|
543
|
+
"exrank": 34,
|
544
|
+
"distribution": "Columbia",
|
545
|
+
"writer": "Not Listed",
|
546
|
+
"song": "Danger Zone"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"producer": "G.Moroder",
|
550
|
+
"chart": {
|
551
|
+
"specType": "Singles",
|
552
|
+
"issueDate": "1986-06-07",
|
553
|
+
"specId": 379,
|
554
|
+
"name": "The Billboard Hot 100",
|
555
|
+
"id": 3005102
|
556
|
+
},
|
557
|
+
"artist": "Kenny Loggins",
|
558
|
+
"promotion": "Columbia",
|
559
|
+
"weeksOn": 21,
|
560
|
+
"id": 6237116,
|
561
|
+
"peak": 2,
|
562
|
+
"rank": 34,
|
563
|
+
"catalogNo": "38-05893",
|
564
|
+
"exrank": 43,
|
565
|
+
"distribution": "Columbia",
|
566
|
+
"writer": "G.Moroder,T.Whitlock",
|
567
|
+
"song": "Danger Zone"
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"producer": "Not Listed",
|
571
|
+
"chart": {
|
572
|
+
"specType": "Singles",
|
573
|
+
"issueDate": "1986-05-31",
|
574
|
+
"specId": 376,
|
575
|
+
"name": "Hot Mainstream Rock Tracks",
|
576
|
+
"id": 3005048
|
577
|
+
},
|
578
|
+
"artist": "Kenny Loggins",
|
579
|
+
"promotion": "Columbia",
|
580
|
+
"weeksOn": 11,
|
581
|
+
"id": 6233724,
|
582
|
+
"peak": 7,
|
583
|
+
"rank": 34,
|
584
|
+
"catalogNo": "Charted",
|
585
|
+
"exrank": 42,
|
586
|
+
"distribution": "Columbia",
|
587
|
+
"writer": "Not Listed",
|
588
|
+
"song": "Danger Zone"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"producer": "G.Moroder",
|
592
|
+
"chart": {
|
593
|
+
"specType": "Singles",
|
594
|
+
"issueDate": "1986-05-31",
|
595
|
+
"specId": 379,
|
596
|
+
"name": "The Billboard Hot 100",
|
597
|
+
"id": 3005043
|
598
|
+
},
|
599
|
+
"artist": "Kenny Loggins",
|
600
|
+
"promotion": "Columbia",
|
601
|
+
"weeksOn": 21,
|
602
|
+
"id": 6233506,
|
603
|
+
"peak": 2,
|
604
|
+
"rank": 43,
|
605
|
+
"catalogNo": "38-05893",
|
606
|
+
"exrank": 49,
|
607
|
+
"distribution": "Columbia",
|
608
|
+
"writer": "G.Moroder,T.Whitlock",
|
609
|
+
"song": "Danger Zone"
|
610
|
+
},
|
611
|
+
{
|
612
|
+
"producer": "G.Moroder",
|
613
|
+
"chart": {
|
614
|
+
"specType": "Singles",
|
615
|
+
"issueDate": "1986-05-24",
|
616
|
+
"specId": 379,
|
617
|
+
"name": "The Billboard Hot 100",
|
618
|
+
"id": 3005042
|
619
|
+
},
|
620
|
+
"artist": "Kenny Loggins",
|
621
|
+
"promotion": "Columbia",
|
622
|
+
"weeksOn": 21,
|
623
|
+
"id": 6233353,
|
624
|
+
"peak": 2,
|
625
|
+
"rank": 49,
|
626
|
+
"catalogNo": "38-05893",
|
627
|
+
"exrank": 60,
|
628
|
+
"distribution": "Columbia",
|
629
|
+
"writer": "G.Moroder,T.Whitlock",
|
630
|
+
"song": "Danger Zone"
|
631
|
+
},
|
632
|
+
{
|
633
|
+
"producer": "G.Moroder",
|
634
|
+
"chart": {
|
635
|
+
"specType": "Singles",
|
636
|
+
"issueDate": "1986-05-17",
|
637
|
+
"specId": 379,
|
638
|
+
"name": "The Billboard Hot 100",
|
639
|
+
"id": 3005041
|
640
|
+
},
|
641
|
+
"artist": "Kenny Loggins",
|
642
|
+
"promotion": "Columbia",
|
643
|
+
"weeksOn": 21,
|
644
|
+
"id": 6233269,
|
645
|
+
"peak": 2,
|
646
|
+
"rank": 60,
|
647
|
+
"catalogNo": "38-05893",
|
648
|
+
"exrank": 85,
|
649
|
+
"distribution": "Columbia",
|
650
|
+
"writer": "G.Moroder,T.Whitlock",
|
651
|
+
"song": "Danger Zone"
|
652
|
+
},
|
653
|
+
{
|
654
|
+
"producer": "G.Moroder",
|
655
|
+
"chart": {
|
656
|
+
"specType": "Singles",
|
657
|
+
"issueDate": "1986-05-10",
|
658
|
+
"specId": 379,
|
659
|
+
"name": "The Billboard Hot 100",
|
660
|
+
"id": 3005040
|
661
|
+
},
|
662
|
+
"artist": "Kenny Loggins",
|
663
|
+
"promotion": "Columbia",
|
664
|
+
"weeksOn": 21,
|
665
|
+
"id": 6233185,
|
666
|
+
"peak": 2,
|
667
|
+
"rank": 85,
|
668
|
+
"catalogNo": "38-05893",
|
669
|
+
"exrank": 0,
|
670
|
+
"distribution": "Columbia",
|
671
|
+
"writer": "G.Moroder,T.Whitlock",
|
672
|
+
"song": "Danger Zone"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"producer": "J.Kennedy,R.Peoples,Maines Bros.",
|
676
|
+
"chart": {
|
677
|
+
"specType": "Singles",
|
678
|
+
"issueDate": "1986-04-12",
|
679
|
+
"specId": 357,
|
680
|
+
"name": "Hot Country Songs",
|
681
|
+
"id": 3004955
|
682
|
+
},
|
683
|
+
"artist": "The Maines Brothers Band",
|
684
|
+
"promotion": "PolyGram",
|
685
|
+
"weeksOn": 7,
|
686
|
+
"id": 6228200,
|
687
|
+
"peak": 59,
|
688
|
+
"rank": 72,
|
689
|
+
"catalogNo": "884 483-7",
|
690
|
+
"exrank": 59,
|
691
|
+
"distribution": "Mercury",
|
692
|
+
"writer": "J.L.Wallace,T.Skinner",
|
693
|
+
"song": "Danger Zone"
|
694
|
+
},
|
695
|
+
{
|
696
|
+
"producer": "J.Kennedy,R.Peoples,Maines Bros.",
|
697
|
+
"chart": {
|
698
|
+
"specType": "Singles",
|
699
|
+
"issueDate": "1986-04-05",
|
700
|
+
"specId": 357,
|
701
|
+
"name": "Hot Country Songs",
|
702
|
+
"id": 3004954
|
703
|
+
},
|
704
|
+
"artist": "The Maines Brothers Band",
|
705
|
+
"promotion": "PolyGram",
|
706
|
+
"weeksOn": 7,
|
707
|
+
"id": 6228137,
|
708
|
+
"peak": 59,
|
709
|
+
"rank": 59,
|
710
|
+
"catalogNo": "884 483-7",
|
711
|
+
"exrank": 60,
|
712
|
+
"distribution": "Mercury",
|
713
|
+
"writer": "J.L.Wallace,T.Skinner",
|
714
|
+
"song": "Danger Zone"
|
715
|
+
},
|
716
|
+
{
|
717
|
+
"producer": "J.Kennedy,R.Peoples,Maines Bros.",
|
718
|
+
"chart": {
|
719
|
+
"specType": "Singles",
|
720
|
+
"issueDate": "1986-03-29",
|
721
|
+
"specId": 357,
|
722
|
+
"name": "Hot Country Songs",
|
723
|
+
"id": 3004897
|
724
|
+
},
|
725
|
+
"artist": "The Maines Brothers Band",
|
726
|
+
"promotion": "PolyGram",
|
727
|
+
"weeksOn": 7,
|
728
|
+
"id": 6224662,
|
729
|
+
"peak": 59,
|
730
|
+
"rank": 60,
|
731
|
+
"catalogNo": "884 483-7",
|
732
|
+
"exrank": 67,
|
733
|
+
"distribution": "Mercury",
|
734
|
+
"writer": "J.L.Wallace,T.Skinner",
|
735
|
+
"song": "Danger Zone"
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"producer": "J.Kennedy,R.Peoples,Maines Bros.",
|
739
|
+
"chart": {
|
740
|
+
"specType": "Singles",
|
741
|
+
"issueDate": "1986-03-22",
|
742
|
+
"specId": 357,
|
743
|
+
"name": "Hot Country Songs",
|
744
|
+
"id": 3004896
|
745
|
+
},
|
746
|
+
"artist": "The Maines Brothers Band",
|
747
|
+
"promotion": "PolyGram",
|
748
|
+
"weeksOn": 7,
|
749
|
+
"id": 6224599,
|
750
|
+
"peak": 59,
|
751
|
+
"rank": 67,
|
752
|
+
"catalogNo": "884 483-7",
|
753
|
+
"exrank": 76,
|
754
|
+
"distribution": "Mercury",
|
755
|
+
"writer": "J.L.Wallace,T.Skinner",
|
756
|
+
"song": "Danger Zone"
|
757
|
+
}]
|
758
|
+
}
|
759
|
+
}
|