trubl 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. data/.yardopts +8 -0
  2. data/LICENSE.md +20 -0
  3. data/README.md +72 -0
  4. data/Rakefile +11 -0
  5. data/lib/trubl.rb +30 -0
  6. data/lib/trubl/api/category.rb +33 -0
  7. data/lib/trubl/api/channel.rb +32 -0
  8. data/lib/trubl/api/conversation.rb +31 -0
  9. data/lib/trubl/api/hashtags.rb +45 -0
  10. data/lib/trubl/api/me.rb +68 -0
  11. data/lib/trubl/api/search.rb +35 -0
  12. data/lib/trubl/api/streams.rb +14 -0
  13. data/lib/trubl/api/suggested_users.rb +16 -0
  14. data/lib/trubl/api/touts.rb +143 -0
  15. data/lib/trubl/api/users.rb +79 -0
  16. data/lib/trubl/authorization.rb +7 -0
  17. data/lib/trubl/authorizations.rb +8 -0
  18. data/lib/trubl/base.rb +37 -0
  19. data/lib/trubl/category.rb +7 -0
  20. data/lib/trubl/channel.rb +7 -0
  21. data/lib/trubl/client.rb +252 -0
  22. data/lib/trubl/collection.rb +43 -0
  23. data/lib/trubl/conversation.rb +7 -0
  24. data/lib/trubl/hashtag.rb +7 -0
  25. data/lib/trubl/hashtags.rb +8 -0
  26. data/lib/trubl/oauth.rb +56 -0
  27. data/lib/trubl/pagination.rb +17 -0
  28. data/lib/trubl/tout.rb +29 -0
  29. data/lib/trubl/touts.rb +8 -0
  30. data/lib/trubl/user.rb +29 -0
  31. data/lib/trubl/users.rb +8 -0
  32. data/lib/trubl/version.rb +16 -0
  33. data/lib/trubl/widget.rb +15 -0
  34. data/lib/trubl/widgets.rb +8 -0
  35. data/spec/fixtures/category_response.json +1 -0
  36. data/spec/fixtures/category_touts_response.json +689 -0
  37. data/spec/fixtures/category_users_response.json +1709 -0
  38. data/spec/fixtures/channel_response.json +1 -0
  39. data/spec/fixtures/channel_touts_response.json +1 -0
  40. data/spec/fixtures/channel_users_response.json +1 -0
  41. data/spec/fixtures/client1_auth_resp.json +1 -0
  42. data/spec/fixtures/client2_auth_resp.json +1 -0
  43. data/spec/fixtures/conversation_authors_response.json +37 -0
  44. data/spec/fixtures/conversation_response.json +41 -0
  45. data/spec/fixtures/conversation_touts_response.json +107 -0
  46. data/spec/fixtures/featured_touts_response.json +4249 -0
  47. data/spec/fixtures/hashtag_response.json +1 -0
  48. data/spec/fixtures/hashtags_touts_response.json +304 -0
  49. data/spec/fixtures/latest_touts_response.json +3600 -0
  50. data/spec/fixtures/like_tout_response.json +109 -0
  51. data/spec/fixtures/me_authorizations_response.json +14 -0
  52. data/spec/fixtures/me_fb_sharing_response.json +21 -0
  53. data/spec/fixtures/me_friends_response.json +121 -0
  54. data/spec/fixtures/me_retrieve_user_friends_response.json +174 -0
  55. data/spec/fixtures/me_retrieve_user_liked_touts_response.json +1255 -0
  56. data/spec/fixtures/me_retrieve_user_touts_response.json +479 -0
  57. data/spec/fixtures/retout_tout_response.json +99 -0
  58. data/spec/fixtures/retrieve_me_response.json +35 -0
  59. data/spec/fixtures/retrieve_tout.json +98 -0
  60. data/spec/fixtures/retrieve_tout_response.json +98 -0
  61. data/spec/fixtures/search_hashtags_response.json +100 -0
  62. data/spec/fixtures/search_touts_response.json +304 -0
  63. data/spec/fixtures/search_users_response.json +37 -0
  64. data/spec/fixtures/suggested_hashtags_response.json +137 -0
  65. data/spec/fixtures/suggested_users_response.json +1 -0
  66. data/spec/fixtures/test.mp4 +0 -0
  67. data/spec/fixtures/tout.json +98 -0
  68. data/spec/fixtures/tout_conversation_response.json +41 -0
  69. data/spec/fixtures/touts_liked_by_response.json +65 -0
  70. data/spec/fixtures/touts_liked_by_user_response.json +106 -0
  71. data/spec/fixtures/touts_me_updates_response.json +357 -0
  72. data/spec/fixtures/touts_search_results.json +304 -0
  73. data/spec/fixtures/trending_hashtags_response.json +149 -0
  74. data/spec/fixtures/unlike_tout_response.json +109 -0
  75. data/spec/fixtures/update_me_response.json +35 -0
  76. data/spec/fixtures/user.json +28 -0
  77. data/spec/fixtures/user_followers.json +1409 -0
  78. data/spec/fixtures/user_touts_response.json +479 -0
  79. data/spec/fixtures/user_with_utf8.json +29 -0
  80. data/spec/fixtures/users.json +58 -0
  81. data/spec/fixtures/users_search_results.json +37 -0
  82. data/spec/fixtures/widgets.json +142 -0
  83. data/spec/spec_helper.rb +61 -0
  84. data/spec/trubl/api/category_spec.rb +39 -0
  85. data/spec/trubl/api/channel_spec.rb +39 -0
  86. data/spec/trubl/api/conversation_spec.rb +38 -0
  87. data/spec/trubl/api/hashtags_spec.rb +60 -0
  88. data/spec/trubl/api/me_spec.rb +98 -0
  89. data/spec/trubl/api/search_spec.rb +40 -0
  90. data/spec/trubl/api/streams_spec.rb +18 -0
  91. data/spec/trubl/api/suggested_users_spec.rb +17 -0
  92. data/spec/trubl/api/touts_spec.rb +215 -0
  93. data/spec/trubl/api/users_spec.rb +122 -0
  94. data/spec/trubl/base_spec.rb +88 -0
  95. data/spec/trubl/category_spec.rb +15 -0
  96. data/spec/trubl/channel_spec.rb +16 -0
  97. data/spec/trubl/client_spec.rb +141 -0
  98. data/spec/trubl/conversation_spec.rb +13 -0
  99. data/spec/trubl/hashtag_spec.rb +11 -0
  100. data/spec/trubl/oauth_spec.rb +27 -0
  101. data/spec/trubl/tout_spec.rb +41 -0
  102. data/spec/trubl/user_spec.rb +65 -0
  103. data/spec/trubl_spec.rb +23 -0
  104. data/trubl.gemspec +41 -0
  105. metadata +494 -0
@@ -0,0 +1,1709 @@
1
+ {
2
+ "users": [
3
+ {
4
+ "user": {
5
+ "username": "rowenmusic",
6
+ "uid": "rowenmusic",
7
+ "fullname": "Rowen",
8
+ "verified": false,
9
+ "location": "Prague, Czech Republic, at least for now...",
10
+ "headline": "Think Tori Amos, Fiona Apple and a hint of the cheeky sarcasm of Lily Allen. That's my music. www.rowenbridler.com",
11
+ "bio": "Rowen Bridler is a singer-songwriter and actress. She lives in Prague in the Czech Republic but would prefer to be more of a nomad, travelling across the US and Europe on a rotational basis, meeting people and pianos. She is currently working on a couple of films, one of which is a Danish production, '1864', where she plays Johanna von Bismarck. When not recording her 'minisongs' series of snippets of her own songs performed in front of her Macbook, she can be found wearing Cookie Monster t-shirts and pearls, working out to pop songs and reading old copies of Vogue.\r\n\r\nwww.rowenbridler.com\r\nwww.howtosingforyourlife.com",
12
+ "friendly_name": "Rowen",
13
+ "touts_count": 16,
14
+ "followers_count": 215,
15
+ "friends_count": 10,
16
+ "last_tout_recorded_at": "2013-05-03T13:58:25Z",
17
+ "created_at": "2012-11-14T11:47:00Z",
18
+ "avatar": {
19
+ "profile": {
20
+ "http_url": "http://avatars.tout.com/u/3c6814786898ca7cc35903410e34dbc0/profile/Square4TwitterMeB_Wpianokeys.jpg"
21
+ },
22
+ "large": {
23
+ "http_url": "http://avatars.tout.com/u/3c6814786898ca7cc35903410e34dbc0/large/Square4TwitterMeB_Wpianokeys.jpg"
24
+ },
25
+ "medium": {
26
+ "http_url": "http://avatars.tout.com/u/3c6814786898ca7cc35903410e34dbc0/medium/Square4TwitterMeB_Wpianokeys.jpg"
27
+ },
28
+ "small": {
29
+ "http_url": "http://avatars.tout.com/u/3c6814786898ca7cc35903410e34dbc0/small/Square4TwitterMeB_Wpianokeys.jpg"
30
+ }
31
+ },
32
+ "following": false,
33
+ "followed_by": false,
34
+ "blocking": false
35
+ }
36
+ },
37
+ {
38
+ "user": {
39
+ "username": "Myspace",
40
+ "uid": "myspace",
41
+ "fullname": "Myspace",
42
+ "verified": true,
43
+ "location": "",
44
+ "headline": "Myspace is where you go to watch music videos, connect with artists & promote your art online.",
45
+ "bio": "With the largest music library that you can listen to for free, Myspace is where you go to watch music videos, connect with artists & promote your art online.",
46
+ "friendly_name": "Myspace",
47
+ "touts_count": 37,
48
+ "followers_count": 1412,
49
+ "friends_count": 9,
50
+ "last_tout_recorded_at": "2012-03-28T20:09:34Z",
51
+ "created_at": "2012-03-07T18:45:43Z",
52
+ "avatar": {
53
+ "profile": {
54
+ "http_url": "http://avatars.tout.com/u/10198dfc96f40ece0e50c395a3d552d0/profile/FA7F504C-6DF3-49DD-8DA0-B66932BAD735.png"
55
+ },
56
+ "large": {
57
+ "http_url": "http://avatars.tout.com/u/10198dfc96f40ece0e50c395a3d552d0/large/FA7F504C-6DF3-49DD-8DA0-B66932BAD735.png"
58
+ },
59
+ "medium": {
60
+ "http_url": "http://avatars.tout.com/u/10198dfc96f40ece0e50c395a3d552d0/medium/FA7F504C-6DF3-49DD-8DA0-B66932BAD735.png"
61
+ },
62
+ "small": {
63
+ "http_url": "http://avatars.tout.com/u/10198dfc96f40ece0e50c395a3d552d0/small/FA7F504C-6DF3-49DD-8DA0-B66932BAD735.png"
64
+ }
65
+ },
66
+ "following": false,
67
+ "followed_by": false,
68
+ "blocking": false
69
+ }
70
+ },
71
+ {
72
+ "user": {
73
+ "username": "Mr106",
74
+ "uid": "mr106",
75
+ "fullname": "BOW WOW ",
76
+ "verified": true,
77
+ "location": "",
78
+ "headline": "Official Twitter of Rapper/Actor Bow Wow Host and Consultant for BET's 106&Park YMCMB",
79
+ "bio": "Official Twitter of Rapper/Actor Bow Wow Host and Consultant for BET's 106&Park YMCMB\r\nBET's 106 & Park Mon-Fri 6pm · http://youtube.com/princebowwow",
80
+ "friendly_name": "BOW WOW ",
81
+ "touts_count": 18,
82
+ "followers_count": 7106,
83
+ "friends_count": 2,
84
+ "last_tout_recorded_at": "2013-04-19T07:03:04Z",
85
+ "created_at": "2011-09-26T18:12:05Z",
86
+ "avatar": {
87
+ "profile": {
88
+ "http_url": "http://avatars.tout.com/u/57e9d8cfc32cad62dfbe0c5b88eb44ce/profile/3DD6B964-F929-459D-9A2E-0E1DE6C45AF6.png"
89
+ },
90
+ "large": {
91
+ "http_url": "http://avatars.tout.com/u/57e9d8cfc32cad62dfbe0c5b88eb44ce/large/3DD6B964-F929-459D-9A2E-0E1DE6C45AF6.png"
92
+ },
93
+ "medium": {
94
+ "http_url": "http://avatars.tout.com/u/57e9d8cfc32cad62dfbe0c5b88eb44ce/medium/3DD6B964-F929-459D-9A2E-0E1DE6C45AF6.png"
95
+ },
96
+ "small": {
97
+ "http_url": "http://avatars.tout.com/u/57e9d8cfc32cad62dfbe0c5b88eb44ce/small/3DD6B964-F929-459D-9A2E-0E1DE6C45AF6.png"
98
+ }
99
+ },
100
+ "following": false,
101
+ "followed_by": false,
102
+ "blocking": false
103
+ }
104
+ },
105
+ {
106
+ "user": {
107
+ "username": "SXSW",
108
+ "uid": "sxsw",
109
+ "fullname": "#SXSW",
110
+ "verified": true,
111
+ "location": "Austin, TX",
112
+ "headline": "",
113
+ "bio": "",
114
+ "friendly_name": "#SXSW",
115
+ "touts_count": 326,
116
+ "followers_count": 2059,
117
+ "friends_count": 0,
118
+ "last_tout_recorded_at": "2013-03-15T19:07:22Z",
119
+ "created_at": "2013-03-04T19:05:10Z",
120
+ "avatar": {
121
+ "profile": {
122
+ "http_url": "http://avatars.tout.com/u/bad9eb28ebedfdb7b17947484ec2c074/profile/sxsw.jpg"
123
+ },
124
+ "large": {
125
+ "http_url": "http://avatars.tout.com/u/bad9eb28ebedfdb7b17947484ec2c074/large/sxsw.jpg"
126
+ },
127
+ "medium": {
128
+ "http_url": "http://avatars.tout.com/u/bad9eb28ebedfdb7b17947484ec2c074/medium/sxsw.jpg"
129
+ },
130
+ "small": {
131
+ "http_url": "http://avatars.tout.com/u/bad9eb28ebedfdb7b17947484ec2c074/small/sxsw.jpg"
132
+ }
133
+ },
134
+ "following": false,
135
+ "followed_by": false,
136
+ "blocking": false
137
+ }
138
+ },
139
+ {
140
+ "user": {
141
+ "username": "SophieSerafino",
142
+ "uid": "sophieserafino",
143
+ "fullname": "Sophie Serafino",
144
+ "verified": true,
145
+ "location": "Calgary, Alberta, Canada",
146
+ "headline": "Violinist, Singer, Composer. Passionate, fearless, intriguing. ",
147
+ "bio": "Aussie Violinist in Canada. Fearless, Passionate Performer. Explorer + Dancer + Loves Cooking + Christian + @OvarianCanada Ambassador + @everywomanfest Founder\r\nCalgary · http://www.sophieserafino.com",
148
+ "friendly_name": "Sophie Serafino",
149
+ "touts_count": 17,
150
+ "followers_count": 739,
151
+ "friends_count": 12,
152
+ "last_tout_recorded_at": "2013-03-09T15:46:47Z",
153
+ "created_at": "2012-12-08T18:58:08Z",
154
+ "avatar": {
155
+ "profile": {
156
+ "http_url": "http://avatars.tout.com/u/3bc354713b3a9a95af48620d502d3589/profile/New_SS_profile_shot.jpg"
157
+ },
158
+ "large": {
159
+ "http_url": "http://avatars.tout.com/u/3bc354713b3a9a95af48620d502d3589/large/New_SS_profile_shot.jpg"
160
+ },
161
+ "medium": {
162
+ "http_url": "http://avatars.tout.com/u/3bc354713b3a9a95af48620d502d3589/medium/New_SS_profile_shot.jpg"
163
+ },
164
+ "small": {
165
+ "http_url": "http://avatars.tout.com/u/3bc354713b3a9a95af48620d502d3589/small/New_SS_profile_shot.jpg"
166
+ }
167
+ },
168
+ "following": false,
169
+ "followed_by": false,
170
+ "blocking": false
171
+ }
172
+ },
173
+ {
174
+ "user": {
175
+ "username": "WALKTHEMOONband",
176
+ "uid": "walkthemoonband",
177
+ "fullname": "Walk The Moon",
178
+ "verified": true,
179
+ "location": "",
180
+ "headline": "sleeping on couches running through fields dancing like a bird beating drums so many voices beards into bumblebees and jean jackets and i want! i want!",
181
+ "bio": "sleeping on couches running through fields dancing like a bird beating drums so many voices beards into bumblebees and jean jackets and i want! i want!\r\nOH, USA · http://walkthemoonband.com",
182
+ "friendly_name": "Walk The Moon",
183
+ "touts_count": 4,
184
+ "followers_count": 226,
185
+ "friends_count": 0,
186
+ "last_tout_recorded_at": "2013-02-06T01:48:26Z",
187
+ "created_at": "2013-01-27T19:50:59Z",
188
+ "avatar": {
189
+ "profile": {
190
+ "http_url": "http://avatars.tout.com/u/77e5a489594ac764873d243d674e2890/profile/walkthemoon.jpg"
191
+ },
192
+ "large": {
193
+ "http_url": "http://avatars.tout.com/u/77e5a489594ac764873d243d674e2890/large/walkthemoon.jpg"
194
+ },
195
+ "medium": {
196
+ "http_url": "http://avatars.tout.com/u/77e5a489594ac764873d243d674e2890/medium/walkthemoon.jpg"
197
+ },
198
+ "small": {
199
+ "http_url": "http://avatars.tout.com/u/77e5a489594ac764873d243d674e2890/small/walkthemoon.jpg"
200
+ }
201
+ },
202
+ "following": false,
203
+ "followed_by": false,
204
+ "blocking": false
205
+ }
206
+ },
207
+ {
208
+ "user": {
209
+ "username": "hollywoodendingband",
210
+ "uid": "hollywoodendingband",
211
+ "fullname": "Hollywood Ending",
212
+ "verified": true,
213
+ "location": "",
214
+ "headline": "The Official Tout Page of Hollywood Ending",
215
+ "bio": "Hollywood Ending is a five-piece band formed in summer 2011. The band consists of Tyler Wilson (vocals, 17), Cameron Byrd (guitar & vocals, 17), Dan Geraghty (guitar, 17), Chris Bourne (bass, 19), and Mike Montalbono (drums, 18)",
216
+ "friendly_name": "Hollywood Ending",
217
+ "touts_count": 11,
218
+ "followers_count": 1231,
219
+ "friends_count": 0,
220
+ "last_tout_recorded_at": "2012-06-21T03:18:38Z",
221
+ "created_at": "2012-04-15T02:02:33Z",
222
+ "avatar": {
223
+ "profile": {
224
+ "http_url": "http://avatars.tout.com/u/93761b089643367ea900932bdfbd67e3/profile/0EE7DFDE-A4A8-4A4F-9937-42D0FF20E243.png"
225
+ },
226
+ "large": {
227
+ "http_url": "http://avatars.tout.com/u/93761b089643367ea900932bdfbd67e3/large/0EE7DFDE-A4A8-4A4F-9937-42D0FF20E243.png"
228
+ },
229
+ "medium": {
230
+ "http_url": "http://avatars.tout.com/u/93761b089643367ea900932bdfbd67e3/medium/0EE7DFDE-A4A8-4A4F-9937-42D0FF20E243.png"
231
+ },
232
+ "small": {
233
+ "http_url": "http://avatars.tout.com/u/93761b089643367ea900932bdfbd67e3/small/0EE7DFDE-A4A8-4A4F-9937-42D0FF20E243.png"
234
+ }
235
+ },
236
+ "following": false,
237
+ "followed_by": false,
238
+ "blocking": false
239
+ }
240
+ },
241
+ {
242
+ "user": {
243
+ "username": "jamesbourne",
244
+ "uid": "jamesbourne",
245
+ "fullname": "James Bourne",
246
+ "verified": true,
247
+ "location": "",
248
+ "headline": "",
249
+ "bio": "",
250
+ "friendly_name": "James Bourne",
251
+ "touts_count": 1,
252
+ "followers_count": 156,
253
+ "friends_count": 0,
254
+ "last_tout_recorded_at": "2012-05-11T11:12:19Z",
255
+ "created_at": "2012-05-11T11:04:02Z",
256
+ "avatar": {
257
+ "profile": {
258
+ "http_url": "http://avatars.tout.com/u/dcce281c5d6acde29e5731ff130b542e/profile/9801F9D8-5920-4699-963B-33EAC9969C44.png"
259
+ },
260
+ "large": {
261
+ "http_url": "http://avatars.tout.com/u/dcce281c5d6acde29e5731ff130b542e/large/9801F9D8-5920-4699-963B-33EAC9969C44.png"
262
+ },
263
+ "medium": {
264
+ "http_url": "http://avatars.tout.com/u/dcce281c5d6acde29e5731ff130b542e/medium/9801F9D8-5920-4699-963B-33EAC9969C44.png"
265
+ },
266
+ "small": {
267
+ "http_url": "http://avatars.tout.com/u/dcce281c5d6acde29e5731ff130b542e/small/9801F9D8-5920-4699-963B-33EAC9969C44.png"
268
+ }
269
+ },
270
+ "following": false,
271
+ "followed_by": false,
272
+ "blocking": false
273
+ }
274
+ },
275
+ {
276
+ "user": {
277
+ "username": "KQ103",
278
+ "uid": "kq103",
279
+ "fullname": "KQ103",
280
+ "verified": true,
281
+ "location": "Orlando, FL",
282
+ "headline": "KQ103 el ritmo joven de Orlando",
283
+ "bio": "#radio #entertainment #music",
284
+ "friendly_name": "KQ103",
285
+ "touts_count": 407,
286
+ "followers_count": 230,
287
+ "friends_count": 41,
288
+ "last_tout_recorded_at": "2013-05-01T21:05:27Z",
289
+ "created_at": "2012-08-06T21:14:55Z",
290
+ "avatar": {
291
+ "profile": {
292
+ "http_url": "http://avatars.tout.com/u/b6e82acc353e7fc86c0c8a300ec8fe4c/profile/PROFILETOUT.jpg"
293
+ },
294
+ "large": {
295
+ "http_url": "http://avatars.tout.com/u/b6e82acc353e7fc86c0c8a300ec8fe4c/large/PROFILETOUT.jpg"
296
+ },
297
+ "medium": {
298
+ "http_url": "http://avatars.tout.com/u/b6e82acc353e7fc86c0c8a300ec8fe4c/medium/PROFILETOUT.jpg"
299
+ },
300
+ "small": {
301
+ "http_url": "http://avatars.tout.com/u/b6e82acc353e7fc86c0c8a300ec8fe4c/small/PROFILETOUT.jpg"
302
+ }
303
+ },
304
+ "following": false,
305
+ "followed_by": false,
306
+ "blocking": false
307
+ }
308
+ },
309
+ {
310
+ "user": {
311
+ "username": "asilentfilm",
312
+ "uid": "asilentfilm",
313
+ "fullname": "A Silent Film",
314
+ "verified": true,
315
+ "location": "Oxford, UK",
316
+ "headline": "http://www.asilentfilm.com",
317
+ "bio": "Robert Stevenson - Vocals/Piano \r\nKarl Bareham - Guitar \r\nAli Hussain - Bass \r\nSpencer Walker - Drums",
318
+ "friendly_name": "A Silent Film",
319
+ "touts_count": 11,
320
+ "followers_count": 351,
321
+ "friends_count": 0,
322
+ "last_tout_recorded_at": "2013-01-27T08:08:39Z",
323
+ "created_at": "2012-05-08T17:16:10Z",
324
+ "avatar": {
325
+ "profile": {
326
+ "http_url": "http://avatars.tout.com/u/914532181740f0b666681eadcbcf06c2/profile/ASF_35.jpg"
327
+ },
328
+ "large": {
329
+ "http_url": "http://avatars.tout.com/u/914532181740f0b666681eadcbcf06c2/large/ASF_35.jpg"
330
+ },
331
+ "medium": {
332
+ "http_url": "http://avatars.tout.com/u/914532181740f0b666681eadcbcf06c2/medium/ASF_35.jpg"
333
+ },
334
+ "small": {
335
+ "http_url": "http://avatars.tout.com/u/914532181740f0b666681eadcbcf06c2/small/ASF_35.jpg"
336
+ }
337
+ },
338
+ "blocking": false,
339
+ "following": false,
340
+ "followed_by": false
341
+ }
342
+ },
343
+ {
344
+ "user": {
345
+ "username": "DezDuron",
346
+ "uid": "dezduron",
347
+ "fullname": "Dez Duron",
348
+ "verified": true,
349
+ "location": "",
350
+ "headline": "Leap and the net will appear",
351
+ "bio": "Leap and the net will appear\r\nFrom LA to Yale to L.A. · http://facebook.com/dezduronmusic",
352
+ "friendly_name": "Dez Duron",
353
+ "touts_count": 6,
354
+ "followers_count": 1626,
355
+ "friends_count": 0,
356
+ "last_tout_recorded_at": "2012-12-17T20:37:03Z",
357
+ "created_at": "2012-12-01T21:13:33Z",
358
+ "avatar": {
359
+ "profile": {
360
+ "http_url": "http://avatars.tout.com/u/f0580bc0adc31fc4537c574bcc389f79/profile/A4ECBE6B-CBF6-4D2F-9D7F-122F29DBCC04.png"
361
+ },
362
+ "large": {
363
+ "http_url": "http://avatars.tout.com/u/f0580bc0adc31fc4537c574bcc389f79/large/A4ECBE6B-CBF6-4D2F-9D7F-122F29DBCC04.png"
364
+ },
365
+ "medium": {
366
+ "http_url": "http://avatars.tout.com/u/f0580bc0adc31fc4537c574bcc389f79/medium/A4ECBE6B-CBF6-4D2F-9D7F-122F29DBCC04.png"
367
+ },
368
+ "small": {
369
+ "http_url": "http://avatars.tout.com/u/f0580bc0adc31fc4537c574bcc389f79/small/A4ECBE6B-CBF6-4D2F-9D7F-122F29DBCC04.png"
370
+ }
371
+ },
372
+ "following": false,
373
+ "followed_by": false,
374
+ "blocking": false
375
+ }
376
+ },
377
+ {
378
+ "user": {
379
+ "username": "RadioBDC",
380
+ "uid": "radiobdc",
381
+ "fullname": "Radio BDC",
382
+ "verified": true,
383
+ "location": "Boston",
384
+ "headline": "Radio Reinvented",
385
+ "bio": "Listen to RadioBDC -- www.boston.com/radio",
386
+ "friendly_name": "Radio BDC",
387
+ "touts_count": 70,
388
+ "followers_count": 811,
389
+ "friends_count": 3,
390
+ "last_tout_recorded_at": "2013-04-13T22:26:47Z",
391
+ "created_at": "2012-11-05T18:25:53Z",
392
+ "avatar": {
393
+ "profile": {
394
+ "http_url": "http://avatars.tout.com/u/33351ecbbf66f678a1f8bb5c63d86110/profile/bdc_logo_512_mobileapp_.png"
395
+ },
396
+ "large": {
397
+ "http_url": "http://avatars.tout.com/u/33351ecbbf66f678a1f8bb5c63d86110/large/bdc_logo_512_mobileapp_.png"
398
+ },
399
+ "medium": {
400
+ "http_url": "http://avatars.tout.com/u/33351ecbbf66f678a1f8bb5c63d86110/medium/bdc_logo_512_mobileapp_.png"
401
+ },
402
+ "small": {
403
+ "http_url": "http://avatars.tout.com/u/33351ecbbf66f678a1f8bb5c63d86110/small/bdc_logo_512_mobileapp_.png"
404
+ }
405
+ },
406
+ "following": false,
407
+ "followed_by": false,
408
+ "blocking": false
409
+ }
410
+ },
411
+ {
412
+ "user": {
413
+ "username": "StrangeMusicInc",
414
+ "uid": "strangemusicinc",
415
+ "fullname": "Strange Music Inc",
416
+ "verified": false,
417
+ "location": "",
418
+ "headline": "",
419
+ "bio": "",
420
+ "friendly_name": "Strange Music Inc",
421
+ "touts_count": 2,
422
+ "followers_count": 324,
423
+ "friends_count": 3,
424
+ "last_tout_recorded_at": "2012-12-06T19:29:48Z",
425
+ "created_at": "2012-11-20T15:59:40Z",
426
+ "avatar": {
427
+ "profile": {
428
+ "http_url": "http://avatars.tout.com/u/3582723f38635a1a721a4e5293174eb5/profile/snakeAndbatLogo.jpg"
429
+ },
430
+ "large": {
431
+ "http_url": "http://avatars.tout.com/u/3582723f38635a1a721a4e5293174eb5/large/snakeAndbatLogo.jpg"
432
+ },
433
+ "medium": {
434
+ "http_url": "http://avatars.tout.com/u/3582723f38635a1a721a4e5293174eb5/medium/snakeAndbatLogo.jpg"
435
+ },
436
+ "small": {
437
+ "http_url": "http://avatars.tout.com/u/3582723f38635a1a721a4e5293174eb5/small/snakeAndbatLogo.jpg"
438
+ }
439
+ },
440
+ "following": false,
441
+ "followed_by": false,
442
+ "blocking": false
443
+ }
444
+ },
445
+ {
446
+ "user": {
447
+ "username": "DallasKsoc",
448
+ "uid": "dallasksoc",
449
+ "fullname": "Old School 94.5",
450
+ "verified": false,
451
+ "location": "",
452
+ "headline": "",
453
+ "bio": "",
454
+ "friendly_name": "Old School 94.5",
455
+ "touts_count": 7,
456
+ "followers_count": 84,
457
+ "friends_count": 4,
458
+ "last_tout_recorded_at": "2013-04-06T20:45:20Z",
459
+ "created_at": "2013-04-02T15:06:44Z",
460
+ "avatar": {
461
+ "profile": {
462
+ "http_url": "http://avatars.tout.com/u/3668f0463e7cc6d91215b10dac982158/profile/oldschool945.jpeg"
463
+ },
464
+ "large": {
465
+ "http_url": "http://avatars.tout.com/u/3668f0463e7cc6d91215b10dac982158/large/oldschool945.jpeg"
466
+ },
467
+ "medium": {
468
+ "http_url": "http://avatars.tout.com/u/3668f0463e7cc6d91215b10dac982158/medium/oldschool945.jpeg"
469
+ },
470
+ "small": {
471
+ "http_url": "http://avatars.tout.com/u/3668f0463e7cc6d91215b10dac982158/small/oldschool945.jpeg"
472
+ }
473
+ },
474
+ "following": false,
475
+ "followed_by": false,
476
+ "blocking": false
477
+ }
478
+ },
479
+ {
480
+ "user": {
481
+ "username": "Donwarbucks",
482
+ "uid": "donwarbucks",
483
+ "fullname": "Don Warbucks",
484
+ "verified": false,
485
+ "location": "",
486
+ "headline": null,
487
+ "bio": null,
488
+ "friendly_name": "Don Warbucks",
489
+ "touts_count": 4,
490
+ "followers_count": 44,
491
+ "friends_count": 88,
492
+ "last_tout_recorded_at": "2013-04-02T17:50:53Z",
493
+ "created_at": "2012-11-02T18:36:25Z",
494
+ "avatar": {
495
+ "profile": {
496
+ "http_url": "http://avatars.tout.com/u/e18642f35aa5a1b7e3e768f024d7ab6c/profile/8D0D66AA-C31F-490C-8949-CB56595439EC.png"
497
+ },
498
+ "large": {
499
+ "http_url": "http://avatars.tout.com/u/e18642f35aa5a1b7e3e768f024d7ab6c/large/8D0D66AA-C31F-490C-8949-CB56595439EC.png"
500
+ },
501
+ "medium": {
502
+ "http_url": "http://avatars.tout.com/u/e18642f35aa5a1b7e3e768f024d7ab6c/medium/8D0D66AA-C31F-490C-8949-CB56595439EC.png"
503
+ },
504
+ "small": {
505
+ "http_url": "http://avatars.tout.com/u/e18642f35aa5a1b7e3e768f024d7ab6c/small/8D0D66AA-C31F-490C-8949-CB56595439EC.png"
506
+ }
507
+ },
508
+ "blocking": false,
509
+ "following": false,
510
+ "followed_by": false
511
+ }
512
+ },
513
+ {
514
+ "user": {
515
+ "username": "thejeffAdamsShow",
516
+ "uid": "thejeffadamsshow",
517
+ "fullname": "Creative Internet Broadcast sermonizer, Tech Head, 20 year music vet Artist Management I am also the the creative director at Jamthehype.com",
518
+ "verified": true,
519
+ "location": "",
520
+ "headline": "YO! Mtv raps? ",
521
+ "bio": "Artist Management Work with many great artist check us out! 220entertainmentgroup.com I am also the the creative director at Jamthehype.com",
522
+ "friendly_name": "Creative Internet Broadcast sermonizer, Tech Head, 20 year music vet Artist Management I am also the the creative director at Jamthehype.com",
523
+ "touts_count": 43,
524
+ "followers_count": 181,
525
+ "friends_count": 118,
526
+ "last_tout_recorded_at": "2013-04-29T21:32:52Z",
527
+ "created_at": "2012-02-28T21:36:04Z",
528
+ "avatar": {
529
+ "profile": {
530
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/profile/7B16D215-6BA9-4BC3-9DE3-80C36C2EC31E.png"
531
+ },
532
+ "large": {
533
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/large/7B16D215-6BA9-4BC3-9DE3-80C36C2EC31E.png"
534
+ },
535
+ "medium": {
536
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/medium/7B16D215-6BA9-4BC3-9DE3-80C36C2EC31E.png"
537
+ },
538
+ "small": {
539
+ "http_url": "http://avatars.tout.com/u/ea37f4ba7115dca9bd6e64b59ef372ea/small/7B16D215-6BA9-4BC3-9DE3-80C36C2EC31E.png"
540
+ }
541
+ },
542
+ "following": false,
543
+ "followed_by": false,
544
+ "blocking": false
545
+ }
546
+ },
547
+ {
548
+ "user": {
549
+ "username": "Bowwow",
550
+ "uid": "bowwow",
551
+ "fullname": "Bow Wow",
552
+ "verified": true,
553
+ "location": "Ohio/ATL",
554
+ "headline": "Cash Money Young Money",
555
+ "bio": "Actor/Rapper Cash Money Records YMCMB\r\nFOLLOW on Twitter @Bowwow\r\nhttp://BowwowToday.com ",
556
+ "friendly_name": "Bow Wow",
557
+ "touts_count": 82,
558
+ "followers_count": 12524,
559
+ "friends_count": 7,
560
+ "last_tout_recorded_at": "2012-08-19T20:24:50Z",
561
+ "created_at": "2011-06-02T17:37:31Z",
562
+ "avatar": {
563
+ "profile": {
564
+ "http_url": "http://avatars.tout.com/u/3d6897cf056963fe0201ddf582fcfa84/profile/bow-wow-we-in-da-club-itunes-version-2012-1.jpeg"
565
+ },
566
+ "large": {
567
+ "http_url": "http://avatars.tout.com/u/3d6897cf056963fe0201ddf582fcfa84/large/bow-wow-we-in-da-club-itunes-version-2012-1.jpeg"
568
+ },
569
+ "medium": {
570
+ "http_url": "http://avatars.tout.com/u/3d6897cf056963fe0201ddf582fcfa84/medium/bow-wow-we-in-da-club-itunes-version-2012-1.jpeg"
571
+ },
572
+ "small": {
573
+ "http_url": "http://avatars.tout.com/u/3d6897cf056963fe0201ddf582fcfa84/small/bow-wow-we-in-da-club-itunes-version-2012-1.jpeg"
574
+ }
575
+ },
576
+ "following": false,
577
+ "followed_by": false,
578
+ "blocking": false
579
+ }
580
+ },
581
+ {
582
+ "user": {
583
+ "username": "Karmin",
584
+ "uid": "karmin",
585
+ "fullname": "Amy & Nick",
586
+ "verified": true,
587
+ "location": "",
588
+ "headline": "The Little Band with a Big Sound",
589
+ "bio": "\"My favorite $#*! ever\" - Questlove\r\n\r\nKarmin is Amy Ellis' pronounced rap flow and searing R&B influenced pop vocals married with Nick Noonan's multi-instrumental talent and smooth harmonies. The duo's dynamic chemistry results in a perfect ble",
590
+ "friendly_name": "Amy & Nick",
591
+ "touts_count": 28,
592
+ "followers_count": 2493,
593
+ "friends_count": 2,
594
+ "last_tout_recorded_at": "2012-03-17T00:35:59Z",
595
+ "created_at": "2011-06-20T18:23:51Z",
596
+ "avatar": {
597
+ "profile": {
598
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/profile/TwitterIcon2.jpg"
599
+ },
600
+ "large": {
601
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/large/TwitterIcon2.jpg"
602
+ },
603
+ "medium": {
604
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/medium/TwitterIcon2.jpg"
605
+ },
606
+ "small": {
607
+ "http_url": "http://avatars.tout.com/u/d5dec37b9602443a03aaf9203949998b/small/TwitterIcon2.jpg"
608
+ }
609
+ },
610
+ "following": false,
611
+ "followed_by": false,
612
+ "blocking": false
613
+ }
614
+ },
615
+ {
616
+ "user": {
617
+ "username": "LeliaBroussard",
618
+ "uid": "leliabroussard",
619
+ "fullname": "Lelia Broussard",
620
+ "verified": true,
621
+ "location": "",
622
+ "headline": "songwriter, singer, french fry enthusiast",
623
+ "bio": "http://www.pledgemusic.com/projects/leliabroussard",
624
+ "friendly_name": "Lelia Broussard",
625
+ "touts_count": 6,
626
+ "followers_count": 719,
627
+ "friends_count": 0,
628
+ "last_tout_recorded_at": "2012-01-17T00:41:52Z",
629
+ "created_at": "2011-08-16T21:52:24Z",
630
+ "avatar": {
631
+ "profile": {
632
+ "http_url": "http://avatars.tout.com/u/ba8a9c15af17e1ece65f8feffc207ae2/profile/leliabroussard_100x100.jpg"
633
+ },
634
+ "large": {
635
+ "http_url": "http://avatars.tout.com/u/ba8a9c15af17e1ece65f8feffc207ae2/large/leliabroussard_100x100.jpg"
636
+ },
637
+ "medium": {
638
+ "http_url": "http://avatars.tout.com/u/ba8a9c15af17e1ece65f8feffc207ae2/medium/leliabroussard_100x100.jpg"
639
+ },
640
+ "small": {
641
+ "http_url": "http://avatars.tout.com/u/ba8a9c15af17e1ece65f8feffc207ae2/small/leliabroussard_100x100.jpg"
642
+ }
643
+ },
644
+ "following": false,
645
+ "followed_by": false,
646
+ "blocking": false
647
+ }
648
+ },
649
+ {
650
+ "user": {
651
+ "username": "KathrynSoapes",
652
+ "uid": "kathrynsoapes",
653
+ "fullname": "Kathryn Soapes",
654
+ "verified": true,
655
+ "location": "",
656
+ "headline": "Country Singer",
657
+ "bio": "Kathryn Soapes is a country singer based out of Albuquerque, NM and is top talent in the State of New Mexico!",
658
+ "friendly_name": "Kathryn Soapes",
659
+ "touts_count": 42,
660
+ "followers_count": 899,
661
+ "friends_count": 124,
662
+ "last_tout_recorded_at": "2013-04-28T20:37:26Z",
663
+ "created_at": "2011-08-07T13:11:55Z",
664
+ "avatar": {
665
+ "profile": {
666
+ "http_url": "http://avatars.tout.com/u/ba787b2c7ddef113f7b79e19630f725e/profile/DSCN4071Twittereditweb.jpg"
667
+ },
668
+ "large": {
669
+ "http_url": "http://avatars.tout.com/u/ba787b2c7ddef113f7b79e19630f725e/large/DSCN4071Twittereditweb.jpg"
670
+ },
671
+ "medium": {
672
+ "http_url": "http://avatars.tout.com/u/ba787b2c7ddef113f7b79e19630f725e/medium/DSCN4071Twittereditweb.jpg"
673
+ },
674
+ "small": {
675
+ "http_url": "http://avatars.tout.com/u/ba787b2c7ddef113f7b79e19630f725e/small/DSCN4071Twittereditweb.jpg"
676
+ }
677
+ },
678
+ "following": false,
679
+ "followed_by": false,
680
+ "blocking": false
681
+ }
682
+ },
683
+ {
684
+ "user": {
685
+ "username": "AltPress",
686
+ "uid": "altpress",
687
+ "fullname": "Alternative Press",
688
+ "verified": true,
689
+ "location": "",
690
+ "headline": "Celebrating 27 years of being the nation’s leading voice on underground, alternative and punk music both in print and online. Follow us for news, music + more!",
691
+ "bio": "Celebrating 27 years of being the nation’s leading voice on underground, alternative and punk music both in print and online. Follow us for news, music + more!",
692
+ "friendly_name": "Alternative Press",
693
+ "touts_count": 8,
694
+ "followers_count": 1873,
695
+ "friends_count": 1,
696
+ "last_tout_recorded_at": "2012-09-16T00:15:26Z",
697
+ "created_at": "2012-08-30T15:33:54Z",
698
+ "avatar": {
699
+ "profile": {
700
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/profile/AlternativePressAvatar.png"
701
+ },
702
+ "large": {
703
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/large/AlternativePressAvatar.png"
704
+ },
705
+ "medium": {
706
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/medium/AlternativePressAvatar.png"
707
+ },
708
+ "small": {
709
+ "http_url": "http://avatars.tout.com/u/1dc6b10c9795db269f88c3547c3b4cc2/small/AlternativePressAvatar.png"
710
+ }
711
+ },
712
+ "blocking": false,
713
+ "following": false,
714
+ "followed_by": false
715
+ }
716
+ },
717
+ {
718
+ "user": {
719
+ "username": "John_forte",
720
+ "uid": "john_forte",
721
+ "fullname": "John Forte",
722
+ "verified": true,
723
+ "location": "Here and There ",
724
+ "headline": "Trying to make something beautiful (every day)",
725
+ "bio": "It gets better",
726
+ "friendly_name": "John Forte",
727
+ "touts_count": 25,
728
+ "followers_count": 1083,
729
+ "friends_count": 10,
730
+ "last_tout_recorded_at": "2012-01-19T03:37:56Z",
731
+ "created_at": "2011-07-03T15:40:35Z",
732
+ "avatar": {
733
+ "profile": {
734
+ "http_url": "http://avatars.tout.com/u/70a47d0b144905aa9e71d9811e02345a/profile/cumbprofilepic.jpg"
735
+ },
736
+ "large": {
737
+ "http_url": "http://avatars.tout.com/u/70a47d0b144905aa9e71d9811e02345a/large/cumbprofilepic.jpg"
738
+ },
739
+ "medium": {
740
+ "http_url": "http://avatars.tout.com/u/70a47d0b144905aa9e71d9811e02345a/medium/cumbprofilepic.jpg"
741
+ },
742
+ "small": {
743
+ "http_url": "http://avatars.tout.com/u/70a47d0b144905aa9e71d9811e02345a/small/cumbprofilepic.jpg"
744
+ }
745
+ },
746
+ "following": false,
747
+ "followed_by": false,
748
+ "blocking": false
749
+ }
750
+ },
751
+ {
752
+ "user": {
753
+ "username": "Pandora",
754
+ "uid": "pandora",
755
+ "fullname": "Pandora Radio",
756
+ "verified": true,
757
+ "location": "",
758
+ "headline": "",
759
+ "bio": "",
760
+ "friendly_name": "Pandora Radio",
761
+ "touts_count": 6,
762
+ "followers_count": 3247,
763
+ "friends_count": 0,
764
+ "last_tout_recorded_at": "2012-05-11T19:27:07Z",
765
+ "created_at": "2012-02-16T22:34:58Z",
766
+ "avatar": {
767
+ "profile": {
768
+ "http_url": "http://avatars.tout.com/u/35a355b031a8e0cdea4791658641d3df/profile/7284785E-9DF7-4775-8F3E-079EBF5DC9AE.png"
769
+ },
770
+ "large": {
771
+ "http_url": "http://avatars.tout.com/u/35a355b031a8e0cdea4791658641d3df/large/7284785E-9DF7-4775-8F3E-079EBF5DC9AE.png"
772
+ },
773
+ "medium": {
774
+ "http_url": "http://avatars.tout.com/u/35a355b031a8e0cdea4791658641d3df/medium/7284785E-9DF7-4775-8F3E-079EBF5DC9AE.png"
775
+ },
776
+ "small": {
777
+ "http_url": "http://avatars.tout.com/u/35a355b031a8e0cdea4791658641d3df/small/7284785E-9DF7-4775-8F3E-079EBF5DC9AE.png"
778
+ }
779
+ },
780
+ "following": false,
781
+ "followed_by": false,
782
+ "blocking": false
783
+ }
784
+ },
785
+ {
786
+ "user": {
787
+ "username": "OfficialTLopez",
788
+ "uid": "officialtlopez",
789
+ "fullname": "T Lopez",
790
+ "verified": false,
791
+ "location": "Los Angeles, CA",
792
+ "headline": "FB & Twitter: @officialTLopez",
793
+ "bio": "Cash Money Recording Artist/ Producer/ Host of LatiNation & Vive Tu Musica/ Actress/ Trouble. **I can fly, I can fight, and I can crow.**",
794
+ "friendly_name": "T Lopez",
795
+ "touts_count": 33,
796
+ "followers_count": 535,
797
+ "friends_count": 24,
798
+ "last_tout_recorded_at": "2012-08-13T02:24:07Z",
799
+ "created_at": "2012-01-02T01:54:44Z",
800
+ "avatar": {
801
+ "profile": {
802
+ "http_url": "http://avatars.tout.com/u/cdf368e6581d0ccf509bbbddc6a15487/profile/n1665828770_130179_7455832.jpg"
803
+ },
804
+ "large": {
805
+ "http_url": "http://avatars.tout.com/u/cdf368e6581d0ccf509bbbddc6a15487/large/n1665828770_130179_7455832.jpg"
806
+ },
807
+ "medium": {
808
+ "http_url": "http://avatars.tout.com/u/cdf368e6581d0ccf509bbbddc6a15487/medium/n1665828770_130179_7455832.jpg"
809
+ },
810
+ "small": {
811
+ "http_url": "http://avatars.tout.com/u/cdf368e6581d0ccf509bbbddc6a15487/small/n1665828770_130179_7455832.jpg"
812
+ }
813
+ },
814
+ "following": false,
815
+ "followed_by": false,
816
+ "blocking": false
817
+ }
818
+ },
819
+ {
820
+ "user": {
821
+ "username": "auraharewood",
822
+ "uid": "auraharewood",
823
+ "fullname": "Aura Harewood",
824
+ "verified": false,
825
+ "location": null,
826
+ "headline": null,
827
+ "bio": null,
828
+ "friendly_name": "Aura Harewood",
829
+ "touts_count": 15,
830
+ "followers_count": 194,
831
+ "friends_count": 3,
832
+ "last_tout_recorded_at": "2013-01-01T03:52:15Z",
833
+ "created_at": "2012-03-04T05:15:51Z",
834
+ "avatar": {
835
+ "profile": {
836
+ "http_url": "http://avatars.tout.com/u/94f65b2cdd8c88bba7cde09e0ee4541f/profile/495D6A5B-EEFB-4CC3-B466-3F1973079567.png"
837
+ },
838
+ "large": {
839
+ "http_url": "http://avatars.tout.com/u/94f65b2cdd8c88bba7cde09e0ee4541f/large/495D6A5B-EEFB-4CC3-B466-3F1973079567.png"
840
+ },
841
+ "medium": {
842
+ "http_url": "http://avatars.tout.com/u/94f65b2cdd8c88bba7cde09e0ee4541f/medium/495D6A5B-EEFB-4CC3-B466-3F1973079567.png"
843
+ },
844
+ "small": {
845
+ "http_url": "http://avatars.tout.com/u/94f65b2cdd8c88bba7cde09e0ee4541f/small/495D6A5B-EEFB-4CC3-B466-3F1973079567.png"
846
+ }
847
+ },
848
+ "following": false,
849
+ "followed_by": false,
850
+ "blocking": false
851
+ }
852
+ },
853
+ {
854
+ "user": {
855
+ "username": "STEVEONJ",
856
+ "uid": "steveonj",
857
+ "fullname": "",
858
+ "verified": false,
859
+ "location": "Los Angeles, CA",
860
+ "headline": "Live.Love.Live.Rinse.&.Repeat",
861
+ "bio": "Artist Manager | Tour Manager | AR for Dark Horse Percussion | AR for Alien Ears | Production Manager for AMP Musicians | Song Writer | Drummer | Traveler | www.iamsteveo.com | STEVEONJ @me.com",
862
+ "friendly_name": "STEVEONJ",
863
+ "touts_count": 2,
864
+ "followers_count": 138,
865
+ "friends_count": 2,
866
+ "last_tout_recorded_at": "2012-06-08T11:53:13Z",
867
+ "created_at": "2012-05-14T20:25:47Z",
868
+ "avatar": {
869
+ "profile": {
870
+ "http_url": "http://avatars.tout.com/u/c8cda9ca0410b0e0236db1fafc1cd3c8/profile/229190_1812584390409_1113990008_31745419_208003_n.jpg"
871
+ },
872
+ "large": {
873
+ "http_url": "http://avatars.tout.com/u/c8cda9ca0410b0e0236db1fafc1cd3c8/large/229190_1812584390409_1113990008_31745419_208003_n.jpg"
874
+ },
875
+ "medium": {
876
+ "http_url": "http://avatars.tout.com/u/c8cda9ca0410b0e0236db1fafc1cd3c8/medium/229190_1812584390409_1113990008_31745419_208003_n.jpg"
877
+ },
878
+ "small": {
879
+ "http_url": "http://avatars.tout.com/u/c8cda9ca0410b0e0236db1fafc1cd3c8/small/229190_1812584390409_1113990008_31745419_208003_n.jpg"
880
+ }
881
+ },
882
+ "following": false,
883
+ "followed_by": false,
884
+ "blocking": false
885
+ }
886
+ },
887
+ {
888
+ "user": {
889
+ "username": "KiddLeow",
890
+ "uid": "kiddleow",
891
+ "fullname": "Kidd Leow",
892
+ "verified": true,
893
+ "location": "TAMPA, FL",
894
+ "headline": "VJ Kidd Leow - facebook.com/vjkiddleow",
895
+ "bio": "Syndicated radio mixer WFLZ, WXRK, WIHT, KKWD, WFKS, WKSI, WKXJ, WMKS, WZEE, WKMX, KHTT, WZNY, KDHT, Spin*Cycle iHeart radio WNCI, WRNW, WKQI | http://www.kiddleow.com",
896
+ "friendly_name": "Kidd Leow",
897
+ "touts_count": 196,
898
+ "followers_count": 1064,
899
+ "friends_count": 2744,
900
+ "last_tout_recorded_at": "2012-12-30T05:41:11Z",
901
+ "created_at": "2011-04-13T16:44:24Z",
902
+ "avatar": {
903
+ "profile": {
904
+ "http_url": "http://avatars.tout.com/u/330a9103516dd7110b58da8e4907563c/profile/18D15149-2C1D-4B96-9265-A440D4691F77.png"
905
+ },
906
+ "large": {
907
+ "http_url": "http://avatars.tout.com/u/330a9103516dd7110b58da8e4907563c/large/18D15149-2C1D-4B96-9265-A440D4691F77.png"
908
+ },
909
+ "medium": {
910
+ "http_url": "http://avatars.tout.com/u/330a9103516dd7110b58da8e4907563c/medium/18D15149-2C1D-4B96-9265-A440D4691F77.png"
911
+ },
912
+ "small": {
913
+ "http_url": "http://avatars.tout.com/u/330a9103516dd7110b58da8e4907563c/small/18D15149-2C1D-4B96-9265-A440D4691F77.png"
914
+ }
915
+ },
916
+ "following": false,
917
+ "followed_by": false,
918
+ "blocking": false
919
+ }
920
+ },
921
+ {
922
+ "user": {
923
+ "username": "TheSwayback",
924
+ "uid": "theswayback",
925
+ "fullname": "The Swayback",
926
+ "verified": false,
927
+ "location": "Denver",
928
+ "headline": "http://theswayback.com/",
929
+ "bio": "",
930
+ "friendly_name": "The Swayback",
931
+ "touts_count": 32,
932
+ "followers_count": 118,
933
+ "friends_count": 5,
934
+ "last_tout_recorded_at": "2013-01-12T16:10:52Z",
935
+ "created_at": "2012-03-05T00:44:04Z",
936
+ "avatar": {
937
+ "profile": {
938
+ "http_url": "http://avatars.tout.com/u/f4dc3e6ca22a093b464cf8a3996ec431/profile/22C48DA5-8315-4D71-A9F5-1517779BEB99.png"
939
+ },
940
+ "large": {
941
+ "http_url": "http://avatars.tout.com/u/f4dc3e6ca22a093b464cf8a3996ec431/large/22C48DA5-8315-4D71-A9F5-1517779BEB99.png"
942
+ },
943
+ "medium": {
944
+ "http_url": "http://avatars.tout.com/u/f4dc3e6ca22a093b464cf8a3996ec431/medium/22C48DA5-8315-4D71-A9F5-1517779BEB99.png"
945
+ },
946
+ "small": {
947
+ "http_url": "http://avatars.tout.com/u/f4dc3e6ca22a093b464cf8a3996ec431/small/22C48DA5-8315-4D71-A9F5-1517779BEB99.png"
948
+ }
949
+ },
950
+ "following": false,
951
+ "followed_by": false,
952
+ "blocking": false
953
+ }
954
+ },
955
+ {
956
+ "user": {
957
+ "username": "GroovelineHorns",
958
+ "uid": "groovelinehorns",
959
+ "fullname": "Grooveline Horns",
960
+ "verified": false,
961
+ "location": "Earth",
962
+ "headline": "Grooveline Horns",
963
+ "bio": "",
964
+ "friendly_name": "Grooveline Horns",
965
+ "touts_count": 5,
966
+ "followers_count": 111,
967
+ "friends_count": 0,
968
+ "last_tout_recorded_at": "2012-04-04T22:16:24Z",
969
+ "created_at": "2012-03-19T23:28:02Z",
970
+ "avatar": {
971
+ "profile": {
972
+ "http_url": "http://avatars.tout.com/u/4d97cbff220fb6e68b75d066de2773e7/profile/maxmed.jpg"
973
+ },
974
+ "large": {
975
+ "http_url": "http://avatars.tout.com/u/4d97cbff220fb6e68b75d066de2773e7/large/maxmed.jpg"
976
+ },
977
+ "medium": {
978
+ "http_url": "http://avatars.tout.com/u/4d97cbff220fb6e68b75d066de2773e7/medium/maxmed.jpg"
979
+ },
980
+ "small": {
981
+ "http_url": "http://avatars.tout.com/u/4d97cbff220fb6e68b75d066de2773e7/small/maxmed.jpg"
982
+ }
983
+ },
984
+ "following": false,
985
+ "followed_by": false,
986
+ "blocking": false
987
+ }
988
+ },
989
+ {
990
+ "user": {
991
+ "username": "Jimmieallen",
992
+ "uid": "jimmieallen",
993
+ "fullname": "Jimmie Allen",
994
+ "verified": false,
995
+ "location": "Nashville ",
996
+ "headline": "Listen close through the music, u will here a story ",
997
+ "bio": "Weird guy from Delaware, \r\n\r\nI Love Greys Anotomy, Private Practice\r\n\r\nCried when Harry Potter was over\r\n\r\nFavorite Movie \"Mary Poppins\"\r\n\r\ni Love Musical Theatre \r\n\r\nStill have my stuffed animals i had since i was 3\r\n\r\nI love my Mommy :)",
998
+ "friendly_name": "Jimmie Allen",
999
+ "touts_count": 20,
1000
+ "followers_count": 162,
1001
+ "friends_count": 3,
1002
+ "last_tout_recorded_at": "2013-04-27T21:16:49Z",
1003
+ "created_at": "2011-07-09T05:37:02Z",
1004
+ "avatar": {
1005
+ "profile": {
1006
+ "http_url": "http://avatars.tout.com/u/c02a284f7ac2cdb4d14257334f4470ba/profile/34276_459384693992_592513992_5994147_7806484_n.jpg"
1007
+ },
1008
+ "large": {
1009
+ "http_url": "http://avatars.tout.com/u/c02a284f7ac2cdb4d14257334f4470ba/large/34276_459384693992_592513992_5994147_7806484_n.jpg"
1010
+ },
1011
+ "medium": {
1012
+ "http_url": "http://avatars.tout.com/u/c02a284f7ac2cdb4d14257334f4470ba/medium/34276_459384693992_592513992_5994147_7806484_n.jpg"
1013
+ },
1014
+ "small": {
1015
+ "http_url": "http://avatars.tout.com/u/c02a284f7ac2cdb4d14257334f4470ba/small/34276_459384693992_592513992_5994147_7806484_n.jpg"
1016
+ }
1017
+ },
1018
+ "following": false,
1019
+ "followed_by": false,
1020
+ "blocking": false
1021
+ }
1022
+ },
1023
+ {
1024
+ "user": {
1025
+ "username": "TheRealChadB",
1026
+ "uid": "therealchadb",
1027
+ "fullname": "Chad B ",
1028
+ "verified": false,
1029
+ "location": null,
1030
+ "headline": null,
1031
+ "bio": null,
1032
+ "friendly_name": "Chad B ",
1033
+ "touts_count": 2,
1034
+ "followers_count": 128,
1035
+ "friends_count": 0,
1036
+ "last_tout_recorded_at": "2012-01-27T05:44:50Z",
1037
+ "created_at": "2012-01-26T19:53:02Z",
1038
+ "avatar": {
1039
+ "profile": {
1040
+ "http_url": "http://avatars.tout.com/u/1d19f67a211f23d2e596e9835007cdba/profile/D5BF0342-65C4-462D-9B04-100083D5BFAC.png"
1041
+ },
1042
+ "large": {
1043
+ "http_url": "http://avatars.tout.com/u/1d19f67a211f23d2e596e9835007cdba/large/D5BF0342-65C4-462D-9B04-100083D5BFAC.png"
1044
+ },
1045
+ "medium": {
1046
+ "http_url": "http://avatars.tout.com/u/1d19f67a211f23d2e596e9835007cdba/medium/D5BF0342-65C4-462D-9B04-100083D5BFAC.png"
1047
+ },
1048
+ "small": {
1049
+ "http_url": "http://avatars.tout.com/u/1d19f67a211f23d2e596e9835007cdba/small/D5BF0342-65C4-462D-9B04-100083D5BFAC.png"
1050
+ }
1051
+ },
1052
+ "blocking": false,
1053
+ "following": false,
1054
+ "followed_by": false
1055
+ }
1056
+ },
1057
+ {
1058
+ "user": {
1059
+ "username": "JennGrauer",
1060
+ "uid": "jenngrauer",
1061
+ "fullname": "Jenn Grauer",
1062
+ "verified": false,
1063
+ "location": "NYC",
1064
+ "headline": "http://www.jenngrauer.com",
1065
+ "bio": "singer of songs, flaneur of the streets, producer at HBO",
1066
+ "friendly_name": "Jenn Grauer",
1067
+ "touts_count": 31,
1068
+ "followers_count": 151,
1069
+ "friends_count": 20,
1070
+ "last_tout_recorded_at": "2012-06-03T20:51:01Z",
1071
+ "created_at": "2012-01-28T17:00:05Z",
1072
+ "avatar": {
1073
+ "profile": {
1074
+ "http_url": "http://avatars.tout.com/u/622e2b15aa13667b4c2bab18c0df20d2/profile/499B7E35-8AB1-49DF-88B6-C2F1D05BE190.png"
1075
+ },
1076
+ "large": {
1077
+ "http_url": "http://avatars.tout.com/u/622e2b15aa13667b4c2bab18c0df20d2/large/499B7E35-8AB1-49DF-88B6-C2F1D05BE190.png"
1078
+ },
1079
+ "medium": {
1080
+ "http_url": "http://avatars.tout.com/u/622e2b15aa13667b4c2bab18c0df20d2/medium/499B7E35-8AB1-49DF-88B6-C2F1D05BE190.png"
1081
+ },
1082
+ "small": {
1083
+ "http_url": "http://avatars.tout.com/u/622e2b15aa13667b4c2bab18c0df20d2/small/499B7E35-8AB1-49DF-88B6-C2F1D05BE190.png"
1084
+ }
1085
+ },
1086
+ "following": false,
1087
+ "followed_by": false,
1088
+ "blocking": false
1089
+ }
1090
+ },
1091
+ {
1092
+ "user": {
1093
+ "username": "flashlightsband",
1094
+ "uid": "flashlightsband",
1095
+ "fullname": "",
1096
+ "verified": false,
1097
+ "location": "Denver, Colorado",
1098
+ "headline": "We make electro-pop music in Denver - www.flashlights.bandcamp.com",
1099
+ "bio": "Described as deliciously sweet Glo-Fi basement party jams,\" Denverites Ethan and Alex are electronic duo Flashlights. The lush soundscapes and pop twinged melodies hint just as much to great Brit-pop of yesteryear as they do to more recent contemporaries such as Teen Daze or Memoryhouse. Their constructive, multi-layered songwriting suggest that the band is really just getting started. Known for their impressive light shows and live performances, Flashlights have been featured in NME's Buzzworthy Artists, named one of Westword Magazines 12 acts to watch in 2011, and have been playing high profile shows with the likes of Toro Y Moi, Youth Lagoon, and Miami Horror. With their continuous festival participation (SXSW, Westword, The UMS, Goldrush, CMJ, Snowball, Treefort) as well as embarking on a West Coast tour this past fall, it’s clear that Flashlights are among Denver’s hardest working musicians. As of this December, Flashlights have finished recording their follow up to last years “Hidden Behind Trees EP” - named one of Westword’s best releases of 2011. This new release entitled “So Close To Midnight” is a more dance-oriented collection out March 1st, 2012.",
1100
+ "friendly_name": "flashlightsband",
1101
+ "touts_count": 1,
1102
+ "followers_count": 105,
1103
+ "friends_count": 0,
1104
+ "last_tout_recorded_at": "2012-03-12T23:37:38Z",
1105
+ "created_at": "2012-03-12T23:26:57Z",
1106
+ "avatar": {
1107
+ "profile": {
1108
+ "http_url": "http://avatars.tout.com/u/50cfee1f4a9a0b97c1f3e6014ea82fa6/profile/Ethan_SnowBall_1.jpg"
1109
+ },
1110
+ "large": {
1111
+ "http_url": "http://avatars.tout.com/u/50cfee1f4a9a0b97c1f3e6014ea82fa6/large/Ethan_SnowBall_1.jpg"
1112
+ },
1113
+ "medium": {
1114
+ "http_url": "http://avatars.tout.com/u/50cfee1f4a9a0b97c1f3e6014ea82fa6/medium/Ethan_SnowBall_1.jpg"
1115
+ },
1116
+ "small": {
1117
+ "http_url": "http://avatars.tout.com/u/50cfee1f4a9a0b97c1f3e6014ea82fa6/small/Ethan_SnowBall_1.jpg"
1118
+ }
1119
+ },
1120
+ "blocking": false,
1121
+ "following": false,
1122
+ "followed_by": false
1123
+ }
1124
+ },
1125
+ {
1126
+ "user": {
1127
+ "username": "iamkevinbryant",
1128
+ "uid": "iamkevinbryant",
1129
+ "fullname": "Kevin Bryant",
1130
+ "verified": false,
1131
+ "location": "USA",
1132
+ "headline": "INTERNATIONAL SUPER STAR!!",
1133
+ "bio": "Charismatic, Talented, Diversified, Flavorful, Soulful, Flamboyant, Poised, Heart Stopping, Scintillating, Electrifying Artist!!\r\n\r\nI am Music, I am Dance\r\n\r\nIamKevinBryant!!\r\n\r\nA Musical Messiah!!!\r\n",
1134
+ "friendly_name": "Kevin Bryant",
1135
+ "touts_count": 7,
1136
+ "followers_count": 145,
1137
+ "friends_count": 13,
1138
+ "last_tout_recorded_at": "2012-09-06T19:59:21Z",
1139
+ "created_at": "2012-03-15T10:44:23Z",
1140
+ "avatar": {
1141
+ "profile": {
1142
+ "http_url": "http://avatars.tout.com/u/9bd2a7489f27e52b4a9bb2a57cdc93ca/profile/DSC_0075.JPG"
1143
+ },
1144
+ "large": {
1145
+ "http_url": "http://avatars.tout.com/u/9bd2a7489f27e52b4a9bb2a57cdc93ca/large/DSC_0075.JPG"
1146
+ },
1147
+ "medium": {
1148
+ "http_url": "http://avatars.tout.com/u/9bd2a7489f27e52b4a9bb2a57cdc93ca/medium/DSC_0075.JPG"
1149
+ },
1150
+ "small": {
1151
+ "http_url": "http://avatars.tout.com/u/9bd2a7489f27e52b4a9bb2a57cdc93ca/small/DSC_0075.JPG"
1152
+ }
1153
+ },
1154
+ "following": false,
1155
+ "followed_by": false,
1156
+ "blocking": false
1157
+ }
1158
+ },
1159
+ {
1160
+ "user": {
1161
+ "username": "ahouseforlions",
1162
+ "uid": "ahouseforlions",
1163
+ "fullname": "A House For Lions",
1164
+ "verified": false,
1165
+ "location": "Los Angeles, CA",
1166
+ "headline": "",
1167
+ "bio": "\"With the band's catchy, emotive sound -- equal parts dusty alt-country and lovelorn late '90s alt-rock -- we're surprised debut EP track 'Let Back' isn't as big a hit as 'Pumped Up Kicks'. \" -–L.A. Times",
1168
+ "friendly_name": "A House For Lions",
1169
+ "touts_count": 16,
1170
+ "followers_count": 114,
1171
+ "friends_count": 2,
1172
+ "last_tout_recorded_at": "2012-03-16T19:04:27Z",
1173
+ "created_at": "2012-03-11T20:09:11Z",
1174
+ "avatar": {
1175
+ "profile": {
1176
+ "http_url": "http://avatars.tout.com/u/29150fe9dca5e2312bf53ed9f1d90265/profile/AHFL_PRESS_2012_web.jpg"
1177
+ },
1178
+ "large": {
1179
+ "http_url": "http://avatars.tout.com/u/29150fe9dca5e2312bf53ed9f1d90265/large/AHFL_PRESS_2012_web.jpg"
1180
+ },
1181
+ "medium": {
1182
+ "http_url": "http://avatars.tout.com/u/29150fe9dca5e2312bf53ed9f1d90265/medium/AHFL_PRESS_2012_web.jpg"
1183
+ },
1184
+ "small": {
1185
+ "http_url": "http://avatars.tout.com/u/29150fe9dca5e2312bf53ed9f1d90265/small/AHFL_PRESS_2012_web.jpg"
1186
+ }
1187
+ },
1188
+ "following": false,
1189
+ "followed_by": false,
1190
+ "blocking": false
1191
+ }
1192
+ },
1193
+ {
1194
+ "user": {
1195
+ "username": "mrlevel10",
1196
+ "uid": "mrlevel10",
1197
+ "fullname": "Justin Spaulding",
1198
+ "verified": false,
1199
+ "location": "USA",
1200
+ "headline": "DJ JUS AKA MR LEVEL 10",
1201
+ "bio": "CAN I LIVE?",
1202
+ "friendly_name": "Justin Spaulding",
1203
+ "touts_count": 13,
1204
+ "followers_count": 289,
1205
+ "friends_count": 4,
1206
+ "last_tout_recorded_at": "2012-02-23T07:21:33Z",
1207
+ "created_at": "2011-08-04T08:38:16Z",
1208
+ "avatar": {
1209
+ "profile": {
1210
+ "http_url": "http://avatars.tout.com/u/994a1f7d492208a3783f1238cb2fa0fe/profile/E80D3931-4CBF-403E-9F93-A0FA7A3391C3.png"
1211
+ },
1212
+ "large": {
1213
+ "http_url": "http://avatars.tout.com/u/994a1f7d492208a3783f1238cb2fa0fe/large/E80D3931-4CBF-403E-9F93-A0FA7A3391C3.png"
1214
+ },
1215
+ "medium": {
1216
+ "http_url": "http://avatars.tout.com/u/994a1f7d492208a3783f1238cb2fa0fe/medium/E80D3931-4CBF-403E-9F93-A0FA7A3391C3.png"
1217
+ },
1218
+ "small": {
1219
+ "http_url": "http://avatars.tout.com/u/994a1f7d492208a3783f1238cb2fa0fe/small/E80D3931-4CBF-403E-9F93-A0FA7A3391C3.png"
1220
+ }
1221
+ },
1222
+ "following": false,
1223
+ "followed_by": false,
1224
+ "blocking": false
1225
+ }
1226
+ },
1227
+ {
1228
+ "user": {
1229
+ "username": "gentlemenhall",
1230
+ "uid": "gentlemenhall",
1231
+ "fullname": "GH",
1232
+ "verified": false,
1233
+ "location": "Bosstown",
1234
+ "headline": "tout a trout ",
1235
+ "bio": "",
1236
+ "friendly_name": "GH",
1237
+ "touts_count": 25,
1238
+ "followers_count": 99,
1239
+ "friends_count": 1,
1240
+ "last_tout_recorded_at": "2012-04-26T03:08:49Z",
1241
+ "created_at": "2012-02-18T04:07:36Z",
1242
+ "avatar": {
1243
+ "profile": {
1244
+ "http_url": "http://avatars.tout.com/u/f23beacb32efb82564c2d7b8048e751c/profile/3CB65754-4E2D-4B4C-BAC4-CE6580EE592C.png"
1245
+ },
1246
+ "large": {
1247
+ "http_url": "http://avatars.tout.com/u/f23beacb32efb82564c2d7b8048e751c/large/3CB65754-4E2D-4B4C-BAC4-CE6580EE592C.png"
1248
+ },
1249
+ "medium": {
1250
+ "http_url": "http://avatars.tout.com/u/f23beacb32efb82564c2d7b8048e751c/medium/3CB65754-4E2D-4B4C-BAC4-CE6580EE592C.png"
1251
+ },
1252
+ "small": {
1253
+ "http_url": "http://avatars.tout.com/u/f23beacb32efb82564c2d7b8048e751c/small/3CB65754-4E2D-4B4C-BAC4-CE6580EE592C.png"
1254
+ }
1255
+ },
1256
+ "following": false,
1257
+ "followed_by": false,
1258
+ "blocking": false
1259
+ }
1260
+ },
1261
+ {
1262
+ "user": {
1263
+ "username": "djspider",
1264
+ "uid": "djspider",
1265
+ "fullname": "DJ Spider",
1266
+ "verified": false,
1267
+ "location": null,
1268
+ "headline": null,
1269
+ "bio": null,
1270
+ "friendly_name": "DJ Spider",
1271
+ "touts_count": 10,
1272
+ "followers_count": 163,
1273
+ "friends_count": 3,
1274
+ "last_tout_recorded_at": "2012-02-15T09:51:37Z",
1275
+ "created_at": "2012-02-02T12:05:45Z",
1276
+ "avatar": {
1277
+ "profile": {
1278
+ "http_url": "http://avatars.tout.com/u/d295d1d4a73c76dab33d5e91a541e1e6/profile/08F467BA-95D1-4896-87CB-2A79F77E3830.png"
1279
+ },
1280
+ "large": {
1281
+ "http_url": "http://avatars.tout.com/u/d295d1d4a73c76dab33d5e91a541e1e6/large/08F467BA-95D1-4896-87CB-2A79F77E3830.png"
1282
+ },
1283
+ "medium": {
1284
+ "http_url": "http://avatars.tout.com/u/d295d1d4a73c76dab33d5e91a541e1e6/medium/08F467BA-95D1-4896-87CB-2A79F77E3830.png"
1285
+ },
1286
+ "small": {
1287
+ "http_url": "http://avatars.tout.com/u/d295d1d4a73c76dab33d5e91a541e1e6/small/08F467BA-95D1-4896-87CB-2A79F77E3830.png"
1288
+ }
1289
+ },
1290
+ "following": false,
1291
+ "followed_by": false,
1292
+ "blocking": false
1293
+ }
1294
+ },
1295
+ {
1296
+ "user": {
1297
+ "username": "LAURASTYLEZ",
1298
+ "uid": "laurastylez",
1299
+ "fullname": "Laura Stylez",
1300
+ "verified": true,
1301
+ "location": "",
1302
+ "headline": "HEAVY HITTERS, HOT97 NYC, SIRIUS XM, part of the HENNESSY DJ Collective annnd CERTIFIED CLUB QUEEN! ",
1303
+ "bio": "HEAVY HITTERS, HOT97 NYC, SIRIUS XM, part of the HENNESSY DJ Collective annnd CERTIFIED CLUB QUEEN! ",
1304
+ "friendly_name": "Laura Stylez",
1305
+ "touts_count": 10,
1306
+ "followers_count": 587,
1307
+ "friends_count": 12,
1308
+ "last_tout_recorded_at": "2012-04-09T00:48:36Z",
1309
+ "created_at": "2012-01-18T22:03:28Z",
1310
+ "avatar": {
1311
+ "profile": {
1312
+ "http_url": "http://avatars.tout.com/u/448ab649c38884418005510b96886d00/profile/221ABCD4-A79F-4615-8558-F1D951D84949.png"
1313
+ },
1314
+ "large": {
1315
+ "http_url": "http://avatars.tout.com/u/448ab649c38884418005510b96886d00/large/221ABCD4-A79F-4615-8558-F1D951D84949.png"
1316
+ },
1317
+ "medium": {
1318
+ "http_url": "http://avatars.tout.com/u/448ab649c38884418005510b96886d00/medium/221ABCD4-A79F-4615-8558-F1D951D84949.png"
1319
+ },
1320
+ "small": {
1321
+ "http_url": "http://avatars.tout.com/u/448ab649c38884418005510b96886d00/small/221ABCD4-A79F-4615-8558-F1D951D84949.png"
1322
+ }
1323
+ },
1324
+ "following": false,
1325
+ "followed_by": false,
1326
+ "blocking": false
1327
+ }
1328
+ },
1329
+ {
1330
+ "user": {
1331
+ "username": "djjuanyto",
1332
+ "uid": "djjuanyto",
1333
+ "fullname": "Dj Juanyto",
1334
+ "verified": false,
1335
+ "location": null,
1336
+ "headline": null,
1337
+ "bio": null,
1338
+ "friendly_name": "Dj Juanyto",
1339
+ "touts_count": 61,
1340
+ "followers_count": 214,
1341
+ "friends_count": 32,
1342
+ "last_tout_recorded_at": "2012-04-13T20:05:34Z",
1343
+ "created_at": "2012-01-16T13:38:17Z",
1344
+ "avatar": {
1345
+ "profile": {
1346
+ "http_url": "http://avatars.tout.com/u/09a2bfe480e9903f7504a17dd0a2fa68/profile/54C876C9-40ED-429A-83C0-5D1030F3DA48.png"
1347
+ },
1348
+ "large": {
1349
+ "http_url": "http://avatars.tout.com/u/09a2bfe480e9903f7504a17dd0a2fa68/large/54C876C9-40ED-429A-83C0-5D1030F3DA48.png"
1350
+ },
1351
+ "medium": {
1352
+ "http_url": "http://avatars.tout.com/u/09a2bfe480e9903f7504a17dd0a2fa68/medium/54C876C9-40ED-429A-83C0-5D1030F3DA48.png"
1353
+ },
1354
+ "small": {
1355
+ "http_url": "http://avatars.tout.com/u/09a2bfe480e9903f7504a17dd0a2fa68/small/54C876C9-40ED-429A-83C0-5D1030F3DA48.png"
1356
+ }
1357
+ },
1358
+ "following": false,
1359
+ "followed_by": false,
1360
+ "blocking": false
1361
+ }
1362
+ },
1363
+ {
1364
+ "user": {
1365
+ "username": "tatwza",
1366
+ "uid": "tatwza",
1367
+ "fullname": "Tat WZA",
1368
+ "verified": true,
1369
+ "location": "",
1370
+ "headline": "http://inflexwetrust.com/",
1371
+ "bio": "Co-Manager of #IFWT, Film/Video Dir, Producer for Hot 97/ Funk Flex, Straight Stuntin Mag Writer, Tech Blogger-Best Across the Board like Tat & Them- Joell Ortiz ",
1372
+ "friendly_name": "Tat WZA",
1373
+ "touts_count": 197,
1374
+ "followers_count": 587,
1375
+ "friends_count": 126,
1376
+ "last_tout_recorded_at": "2012-02-23T14:58:54Z",
1377
+ "created_at": "2012-01-13T05:12:21Z",
1378
+ "avatar": {
1379
+ "profile": {
1380
+ "http_url": "http://avatars.tout.com/u/8a640599a47d0e8ccd9904e79b3db9e4/profile/80270BDA-B1B0-4F3A-9815-2A0254C03B21.png"
1381
+ },
1382
+ "large": {
1383
+ "http_url": "http://avatars.tout.com/u/8a640599a47d0e8ccd9904e79b3db9e4/large/80270BDA-B1B0-4F3A-9815-2A0254C03B21.png"
1384
+ },
1385
+ "medium": {
1386
+ "http_url": "http://avatars.tout.com/u/8a640599a47d0e8ccd9904e79b3db9e4/medium/80270BDA-B1B0-4F3A-9815-2A0254C03B21.png"
1387
+ },
1388
+ "small": {
1389
+ "http_url": "http://avatars.tout.com/u/8a640599a47d0e8ccd9904e79b3db9e4/small/80270BDA-B1B0-4F3A-9815-2A0254C03B21.png"
1390
+ }
1391
+ },
1392
+ "following": false,
1393
+ "followed_by": false,
1394
+ "blocking": false
1395
+ }
1396
+ },
1397
+ {
1398
+ "user": {
1399
+ "username": "djcamilo",
1400
+ "uid": "djcamilo",
1401
+ "fullname": "DJ Camilo",
1402
+ "verified": false,
1403
+ "location": "",
1404
+ "headline": "",
1405
+ "bio": "",
1406
+ "friendly_name": "DJ Camilo",
1407
+ "touts_count": 8,
1408
+ "followers_count": 315,
1409
+ "friends_count": 7,
1410
+ "last_tout_recorded_at": "2012-03-05T22:37:48Z",
1411
+ "created_at": "2012-01-17T21:54:30Z",
1412
+ "avatar": {
1413
+ "profile": {
1414
+ "http_url": "http://avatars.tout.com/u/09fca90c5a710a9d243f6f11a79225b6/profile/IMG_0478-1.jpg"
1415
+ },
1416
+ "large": {
1417
+ "http_url": "http://avatars.tout.com/u/09fca90c5a710a9d243f6f11a79225b6/large/IMG_0478-1.jpg"
1418
+ },
1419
+ "medium": {
1420
+ "http_url": "http://avatars.tout.com/u/09fca90c5a710a9d243f6f11a79225b6/medium/IMG_0478-1.jpg"
1421
+ },
1422
+ "small": {
1423
+ "http_url": "http://avatars.tout.com/u/09fca90c5a710a9d243f6f11a79225b6/small/IMG_0478-1.jpg"
1424
+ }
1425
+ },
1426
+ "blocking": false,
1427
+ "following": false,
1428
+ "followed_by": false
1429
+ }
1430
+ },
1431
+ {
1432
+ "user": {
1433
+ "username": "MandyGawleyMusic",
1434
+ "uid": "mandygawleymusic",
1435
+ "fullname": "MandyGawley",
1436
+ "verified": false,
1437
+ "location": "Atlanta, Georgia",
1438
+ "headline": "“It’s a little bit of country, a little bit of pop and a whole lot of heart,” says Mandy Gawley of her debut album entitled, Life So Sweet.",
1439
+ "bio": "Gawley, a wife and mother of two, is finally living the dream of singing her own life story with songs about the little things that make life worth living.",
1440
+ "friendly_name": "MandyGawley",
1441
+ "touts_count": 10,
1442
+ "followers_count": 137,
1443
+ "friends_count": 9,
1444
+ "last_tout_recorded_at": "2013-04-25T18:14:28Z",
1445
+ "created_at": "2011-12-08T19:26:33Z",
1446
+ "avatar": {
1447
+ "profile": {
1448
+ "http_url": "http://avatars.tout.com/u/db0e5b636853077c7c2676e5d9d8a599/profile/LIG_twitter_profile.jpg"
1449
+ },
1450
+ "large": {
1451
+ "http_url": "http://avatars.tout.com/u/db0e5b636853077c7c2676e5d9d8a599/large/LIG_twitter_profile.jpg"
1452
+ },
1453
+ "medium": {
1454
+ "http_url": "http://avatars.tout.com/u/db0e5b636853077c7c2676e5d9d8a599/medium/LIG_twitter_profile.jpg"
1455
+ },
1456
+ "small": {
1457
+ "http_url": "http://avatars.tout.com/u/db0e5b636853077c7c2676e5d9d8a599/small/LIG_twitter_profile.jpg"
1458
+ }
1459
+ },
1460
+ "following": false,
1461
+ "followed_by": false,
1462
+ "blocking": false
1463
+ }
1464
+ },
1465
+ {
1466
+ "user": {
1467
+ "username": "jullyblack",
1468
+ "uid": "jullyblack",
1469
+ "fullname": "Jully Black",
1470
+ "verified": false,
1471
+ "location": "Life",
1472
+ "headline": "Dare to be different",
1473
+ "bio": "",
1474
+ "friendly_name": "Jully Black",
1475
+ "touts_count": 34,
1476
+ "followers_count": 187,
1477
+ "friends_count": 3,
1478
+ "last_tout_recorded_at": "2011-10-07T18:08:27Z",
1479
+ "created_at": "2011-08-17T19:43:32Z",
1480
+ "avatar": {
1481
+ "profile": {
1482
+ "http_url": "http://avatars.tout.com/u/3622e6f53708688ee9dca081037e6214/profile/Image3.jpg"
1483
+ },
1484
+ "large": {
1485
+ "http_url": "http://avatars.tout.com/u/3622e6f53708688ee9dca081037e6214/large/Image3.jpg"
1486
+ },
1487
+ "medium": {
1488
+ "http_url": "http://avatars.tout.com/u/3622e6f53708688ee9dca081037e6214/medium/Image3.jpg"
1489
+ },
1490
+ "small": {
1491
+ "http_url": "http://avatars.tout.com/u/3622e6f53708688ee9dca081037e6214/small/Image3.jpg"
1492
+ }
1493
+ },
1494
+ "following": false,
1495
+ "followed_by": false,
1496
+ "blocking": false
1497
+ }
1498
+ },
1499
+ {
1500
+ "user": {
1501
+ "username": "DJLAZYKLIVE",
1502
+ "uid": "djlazyklive",
1503
+ "fullname": "LAZY K PRODUCTIONS ",
1504
+ "verified": false,
1505
+ "location": "NEW YORK/NEW JERSEY",
1506
+ "headline": "A BABY BOSS",
1507
+ "bio": "DJ LAZY K ONE OF THE BEST FEMALE DJS IN THE WORLD OF HIP HOP AND NOW BREAKING NEW SOUND IN THE INTERNATIONAL MUSIC!!! SHE IS A GREAT PRODUCER,GREAT VOICE FOR HOSTING EVENTS AND LOVE TO BE A BITCH AKA WOMAN LOL...GOOGLE IN THE MILLIONS...GOTTA LOVE HER...K",
1508
+ "friendly_name": "LAZY K PRODUCTIONS ",
1509
+ "touts_count": 2,
1510
+ "followers_count": 129,
1511
+ "friends_count": 3,
1512
+ "last_tout_recorded_at": "2011-10-03T19:53:47Z",
1513
+ "created_at": "2011-08-16T01:22:41Z",
1514
+ "avatar": {
1515
+ "profile": {
1516
+ "http_url": "http://avatars.tout.com/u/f8348414bfbf9c0528e36a572e62d39a/profile/banner2.jpg"
1517
+ },
1518
+ "large": {
1519
+ "http_url": "http://avatars.tout.com/u/f8348414bfbf9c0528e36a572e62d39a/large/banner2.jpg"
1520
+ },
1521
+ "medium": {
1522
+ "http_url": "http://avatars.tout.com/u/f8348414bfbf9c0528e36a572e62d39a/medium/banner2.jpg"
1523
+ },
1524
+ "small": {
1525
+ "http_url": "http://avatars.tout.com/u/f8348414bfbf9c0528e36a572e62d39a/small/banner2.jpg"
1526
+ }
1527
+ },
1528
+ "blocking": false,
1529
+ "following": false,
1530
+ "followed_by": false
1531
+ }
1532
+ },
1533
+ {
1534
+ "user": {
1535
+ "username": "andygrammer",
1536
+ "uid": "andygrammer",
1537
+ "fullname": "Andy Grammer",
1538
+ "verified": false,
1539
+ "location": "",
1540
+ "headline": "",
1541
+ "bio": "",
1542
+ "friendly_name": "Andy Grammer",
1543
+ "touts_count": 1,
1544
+ "followers_count": 185,
1545
+ "friends_count": 0,
1546
+ "last_tout_recorded_at": "2012-02-23T17:51:31Z",
1547
+ "created_at": "2012-02-15T18:59:32Z",
1548
+ "avatar": {
1549
+ "profile": {
1550
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
1551
+ },
1552
+ "large": {
1553
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
1554
+ },
1555
+ "medium": {
1556
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
1557
+ },
1558
+ "small": {
1559
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
1560
+ }
1561
+ },
1562
+ "blocking": false,
1563
+ "following": false,
1564
+ "followed_by": false
1565
+ }
1566
+ },
1567
+ {
1568
+ "user": {
1569
+ "username": "MattNathanson",
1570
+ "uid": "mattnathanson",
1571
+ "fullname": "Matt Nathanson",
1572
+ "verified": true,
1573
+ "location": "bernal heights. SF.",
1574
+ "headline": "COMING TO YOUR TOWN!",
1575
+ "bio": "www.mattnathanson.com",
1576
+ "friendly_name": "Matt Nathanson",
1577
+ "touts_count": 90,
1578
+ "followers_count": 1328,
1579
+ "friends_count": 4,
1580
+ "last_tout_recorded_at": "2011-12-03T18:08:04Z",
1581
+ "created_at": "2011-09-20T00:23:53Z",
1582
+ "avatar": {
1583
+ "profile": {
1584
+ "http_url": "http://avatars.tout.com/u/c1b9e1e1476a13e6dda9eb8b6af1df3a/profile/MattNathansonAvatar.jpeg"
1585
+ },
1586
+ "large": {
1587
+ "http_url": "http://avatars.tout.com/u/c1b9e1e1476a13e6dda9eb8b6af1df3a/large/MattNathansonAvatar.jpeg"
1588
+ },
1589
+ "medium": {
1590
+ "http_url": "http://avatars.tout.com/u/c1b9e1e1476a13e6dda9eb8b6af1df3a/medium/MattNathansonAvatar.jpeg"
1591
+ },
1592
+ "small": {
1593
+ "http_url": "http://avatars.tout.com/u/c1b9e1e1476a13e6dda9eb8b6af1df3a/small/MattNathansonAvatar.jpeg"
1594
+ }
1595
+ },
1596
+ "following": false,
1597
+ "followed_by": false,
1598
+ "blocking": false
1599
+ }
1600
+ },
1601
+ {
1602
+ "user": {
1603
+ "username": "nashstylist",
1604
+ "uid": "nashstylist",
1605
+ "fullname": null,
1606
+ "verified": false,
1607
+ "location": null,
1608
+ "headline": null,
1609
+ "bio": null,
1610
+ "friendly_name": "nashstylist",
1611
+ "touts_count": 65,
1612
+ "followers_count": 81,
1613
+ "friends_count": 0,
1614
+ "last_tout_recorded_at": "2012-04-08T01:52:03Z",
1615
+ "created_at": "2012-04-04T18:43:53Z",
1616
+ "avatar": {
1617
+ "profile": {
1618
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_profile.png"
1619
+ },
1620
+ "large": {
1621
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_large.png"
1622
+ },
1623
+ "medium": {
1624
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_medium.png"
1625
+ },
1626
+ "small": {
1627
+ "http_url": "http://d2cjdr17j9fuin.cloudfront.net/assets/avatars/default_small.png"
1628
+ }
1629
+ },
1630
+ "blocking": false,
1631
+ "following": false,
1632
+ "followed_by": false
1633
+ }
1634
+ },
1635
+ {
1636
+ "user": {
1637
+ "username": "interscopecw",
1638
+ "uid": "interscopecw",
1639
+ "fullname": "Chelsea Williams",
1640
+ "verified": false,
1641
+ "location": null,
1642
+ "headline": null,
1643
+ "bio": null,
1644
+ "friendly_name": "Chelsea Williams",
1645
+ "touts_count": 11,
1646
+ "followers_count": 182,
1647
+ "friends_count": 0,
1648
+ "last_tout_recorded_at": "2012-05-19T21:44:44Z",
1649
+ "created_at": "2012-03-13T21:00:17Z",
1650
+ "avatar": {
1651
+ "profile": {
1652
+ "http_url": "http://avatars.tout.com/u/363982be3f63b1495fc1581e4e0c273f/profile/C22DD51B-979F-46AE-9160-966675E9FAAD.png"
1653
+ },
1654
+ "large": {
1655
+ "http_url": "http://avatars.tout.com/u/363982be3f63b1495fc1581e4e0c273f/large/C22DD51B-979F-46AE-9160-966675E9FAAD.png"
1656
+ },
1657
+ "medium": {
1658
+ "http_url": "http://avatars.tout.com/u/363982be3f63b1495fc1581e4e0c273f/medium/C22DD51B-979F-46AE-9160-966675E9FAAD.png"
1659
+ },
1660
+ "small": {
1661
+ "http_url": "http://avatars.tout.com/u/363982be3f63b1495fc1581e4e0c273f/small/C22DD51B-979F-46AE-9160-966675E9FAAD.png"
1662
+ }
1663
+ },
1664
+ "following": false,
1665
+ "followed_by": false,
1666
+ "blocking": false
1667
+ }
1668
+ },
1669
+ {
1670
+ "user": {
1671
+ "username": "attwatermusic",
1672
+ "uid": "attwatermusic",
1673
+ "fullname": "Attwater",
1674
+ "verified": false,
1675
+ "location": "Nashville, TN",
1676
+ "headline": "\"Daydreaming\" The New Video - 10.19.11!",
1677
+ "bio": "Sacramento, California country band Attwater signed with the independent production company and label, Twenty Ten Music in December of 2010. Grammy Award-winning producer Charlie Peacock (The Civil Wars, Switchfoot), Sr. VP of A&R for Twenty Ten Music \r\n\r\nErika Attwater and Jonathan Richards, the songwriting team and principal members behind the band Attwater, got their start in a back room with nothing more than a guitar, a pad of paper and the simple desire to make good, honest music. After writing their first three songs, the duo decided to try them out on the local (Sacramento) open mic scene. To Erika and Jonathan's surprise, the audience response was as overwhelmingly positive as their own, and Attwater was born.",
1678
+ "friendly_name": "Attwater",
1679
+ "touts_count": 1,
1680
+ "followers_count": 120,
1681
+ "friends_count": 0,
1682
+ "last_tout_recorded_at": "2011-11-09T20:04:31Z",
1683
+ "created_at": "2011-10-13T15:35:19Z",
1684
+ "avatar": {
1685
+ "profile": {
1686
+ "http_url": "http://avatars.tout.com/u/2fbb6453e5ecd1c752365d1e0e196086/profile/DaydreamingSquare__2_.jpg"
1687
+ },
1688
+ "large": {
1689
+ "http_url": "http://avatars.tout.com/u/2fbb6453e5ecd1c752365d1e0e196086/large/DaydreamingSquare__2_.jpg"
1690
+ },
1691
+ "medium": {
1692
+ "http_url": "http://avatars.tout.com/u/2fbb6453e5ecd1c752365d1e0e196086/medium/DaydreamingSquare__2_.jpg"
1693
+ },
1694
+ "small": {
1695
+ "http_url": "http://avatars.tout.com/u/2fbb6453e5ecd1c752365d1e0e196086/small/DaydreamingSquare__2_.jpg"
1696
+ }
1697
+ },
1698
+ "following": false,
1699
+ "followed_by": false,
1700
+ "blocking": false
1701
+ }
1702
+ }
1703
+ ],
1704
+ "pagination": {
1705
+ "current_page": 1,
1706
+ "per_page": 50,
1707
+ "total_entries": 63
1708
+ }
1709
+ }