thrillcall-api 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -7,17 +7,17 @@ PATH
7
7
  GEM
8
8
  remote: http://rubygems.org/
9
9
  specs:
10
- ZenTest (4.4.2)
10
+ ZenTest (4.6.2)
11
11
  addressable (2.2.6)
12
12
  albino (1.3.3)
13
13
  posix-spawn (>= 0.3.6)
14
14
  autotest (4.4.6)
15
15
  ZenTest (>= 4.4.1)
16
- autotest-fsevent (0.2.5)
16
+ autotest-fsevent (0.2.7)
17
17
  sys-uname
18
- autotest-growl (0.2.9)
19
- awesome_print (0.3.2)
20
- diff-lcs (1.1.2)
18
+ autotest-growl (0.2.16)
19
+ awesome_print (1.0.1)
20
+ diff-lcs (1.1.3)
21
21
  faker (0.9.5)
22
22
  i18n (~> 0.4)
23
23
  faraday (0.7.5)
@@ -26,33 +26,33 @@ GEM
26
26
  rack (>= 1.1.0, < 2)
27
27
  i18n (0.6.0)
28
28
  multipart-post (1.1.4)
29
- nokogiri (1.4.6)
29
+ nokogiri (1.4.7)
30
30
  posix-spawn (0.3.6)
31
31
  rack (1.3.5)
32
32
  redcarpet (1.17.2)
33
- rspec (2.1.0)
34
- rspec-core (~> 2.1.0)
35
- rspec-expectations (~> 2.1.0)
36
- rspec-mocks (~> 2.1.0)
37
- rspec-core (2.1.0)
38
- rspec-expectations (2.1.0)
33
+ rspec (2.7.0)
34
+ rspec-core (~> 2.7.0)
35
+ rspec-expectations (~> 2.7.0)
36
+ rspec-mocks (~> 2.7.0)
37
+ rspec-core (2.7.1)
38
+ rspec-expectations (2.7.0)
39
39
  diff-lcs (~> 1.1.2)
40
- rspec-mocks (2.1.0)
41
- sys-uname (0.8.5)
40
+ rspec-mocks (2.7.0)
41
+ sys-uname (0.8.6)
42
42
 
43
43
  PLATFORMS
44
44
  ruby
45
45
 
46
46
  DEPENDENCIES
47
- ZenTest (~> 4.4.0)
47
+ ZenTest (~> 4.6.2)
48
48
  albino (~> 1.3.3)
49
- autotest (~> 4.4.2)
50
- autotest-fsevent (~> 0.2.3)
51
- autotest-growl (~> 0.2.6)
52
- awesome_print (~> 0.3.2)
49
+ autotest (~> 4.4.6)
50
+ autotest-fsevent (~> 0.2.7)
51
+ autotest-growl (~> 0.2.16)
52
+ awesome_print (~> 1.0.1)
53
53
  bundler (>= 1.0.0)
54
54
  faker (~> 0.9.5)
55
55
  nokogiri (~> 1.4.6)
56
56
  redcarpet (~> 1.17.2)
57
- rspec (~> 2.1.0)
57
+ rspec (~> 2.7.0)
58
58
  thrillcall-api!
data/README.md CHANGED
@@ -162,12 +162,16 @@ These are valid parameters for any endpoint, however, they will only be used by
162
162
 
163
163
  If latitude (**[lat](#lat)**) and longitude (**[long](#long)**) if both are specified, results will be within **[radius](#radius)** of this location.
164
164
 
165
+ For Person queries, this specifies the latitude of the person's location.
166
+
165
167
  - <a name="long" />**long** _float_
166
168
 
167
169
  _Default: none_
168
170
 
169
171
  If latitude (**[lat](#lat)**) and longitude (**[long](#long)**) if both are specified, results will be within **[radius](#radius)** of this location.
170
172
 
173
+ For Person queries, this specifies the longitude of the person's location.
174
+
171
175
  - <a name="postalcode" />**postalcode** _string (format: length >= 5)_
172
176
 
173
177
  _Default: none_
@@ -219,13 +223,25 @@ These are valid parameters for any endpoint, however, they will only be used by
219
223
 
220
224
  If set, will filter Artist results to only those with the specified **[primary\_genre\_id](#primary_genre_id)**
221
225
 
222
- - <a name="login" />**login** _string_
226
+ - <a name="email" />**email** _string_
223
227
 
224
- Required to authenticate/register a user.
228
+ The email address associated with a user, required for registration.
225
229
 
226
230
  - <a name="password" />**password** _string (format: 40 >= length >= 5)_
227
231
 
228
- Required to authenticate/register a user.
232
+ The user's password. Must be supplied along with **[email](#email)** unless using **[provider](#provider)** / **[uid](#uid)** / **[token](#token)** auth.
233
+
234
+ - <a name="provider" />**provider** _string_
235
+
236
+ The name of the authentication provider (e.g. "facebook"). Must be supplied along with **[uid](#uid)** and **[token](#token)** unless using **[email](#email)**/**[password](#password)** auth.
237
+
238
+ - <a name="uid" />**uid** _string_
239
+
240
+ The user's ID with **[provider](#provider)**. Must be supplied along with **[provider](#provider)** and **[token](#token)** unless using **[email](#email)**/**[password](#password)** auth.
241
+
242
+ - <a name="token" />**token** _string_
243
+
244
+ The user's authentication token with **[provider](#provider)**. Must be supplied along with **[provider](#provider)** and **[uid](#uid)** unless using **[email](#email)**/**[password](#password)** auth.
229
245
 
230
246
  - <a name="first_name" />**first\_name** _string (format: 50 >= length >= 2)_
231
247
 
@@ -235,14 +251,19 @@ These are valid parameters for any endpoint, however, they will only be used by
235
251
 
236
252
  Optional for registering a user.
237
253
 
238
- - <a name="email" />**email** _string_
239
-
240
- Required to register a user.
241
-
242
254
  - <a name="gender" />**gender** _string (format: length == 1)_
243
255
 
244
256
  Optional for registering a user.
245
257
 
258
+ - <a name="location_name" />**location\_name** _string (format: "City, ST or City, State", length > 0))_
259
+
260
+ The name of the user's location when auto-registering. Either this or **[lat](#lat)** / **[long](#long)** must be provided.
261
+
262
+ - <a name="referral_code" />**referral\_code** _string_
263
+
264
+ The referral code to be used during registration. Both the owner of the code as well as the new user will receive a point on their referral counts.
265
+
266
+
246
267
  ## Artists
247
268
  Fields:
248
269
 
@@ -253,6 +274,7 @@ Fields:
253
274
  - **primary\_genre\_id** _integer_ The Thrillcall ID for this artist's primary Genre
254
275
  - **upcoming\_events\_count** _integer_ Number of upcoming events associated with this object
255
276
  - **updated\_at** _string_ ISO 8601 representation of last time this object was updated
277
+ - **photos** _hash_ A hash of image urls of the primary photo available for this object in different styles
256
278
  - **url** _string_ URL for this object on Thrillcall
257
279
 
258
280
 
@@ -277,6 +299,13 @@ Returns: _Array_ of Artists _Hash_
277
299
  "primary_genre_id": 61,
278
300
  "upcoming_events_count": 0,
279
301
  "updated_at": "2010-03-26T16:49:20Z",
302
+ "photos":
303
+ {
304
+ "thumbnail": "http://i.tc-core.com/artist/_default/default-thumbnail.jpg",
305
+ "medium": "http://i.tc-core.com/artist/_default/default-medium.jpg",
306
+ "large": "http://i.tc-core.com/artist/_default/default-large.jpg",
307
+ "mobile": "http://i.tc-core.com/artist/_default/default-mobile.jpg"
308
+ },
280
309
  "url": "http://thrillcall.com/artist/Hyler_Jones_Proteges"
281
310
  },
282
311
  {
@@ -306,6 +335,13 @@ Returns: Artist _Hash_
306
335
  "primary_genre_id": 27,
307
336
  "upcoming_events_count": 8,
308
337
  "updated_at": "2011-09-20T19:12:57Z",
338
+ "photos":
339
+ {
340
+ "thumbnail": "http://i.tc-core.com/artist/_default/default-thumbnail.jpg",
341
+ "medium": "http://i.tc-core.com/artist/_default/default-medium.jpg",
342
+ "large": "http://i.tc-core.com/artist/_default/default-large.jpg",
343
+ "mobile": "http://i.tc-core.com/artist/_default/default-mobile.jpg"
344
+ },
309
345
  "url": "http://thrillcall.com/artist/The_Sea_and_Cake"
310
346
  }
311
347
  ```
@@ -353,6 +389,12 @@ Returns: _Array_ of Events _Hash_
353
389
  "unconfirmed_location": 0,
354
390
  "updated_at": "2011-09-28T04:01:56Z",
355
391
  "venue_id": 10116,
392
+ "photos":
393
+ {
394
+ "thumbnail": "http://i.tc-core.com/event/_default/default-thumbnail.jpg",
395
+ "large": "http://i.tc-core.com/event/_default/default-large.jpg",
396
+ "mobile": "http://i.tc-core.com/event/_default/default-mobile.jpg"
397
+ },
356
398
  "url": "http://thrillcall.com/event/862618"
357
399
  },
358
400
  {
@@ -384,6 +426,13 @@ Returns: _Array_ of Artists _Hash_
384
426
  "primary_genre_id": 27,
385
427
  "upcoming_events_count": 8,
386
428
  "updated_at": "2011-09-20T19:12:57Z",
429
+ "photos":
430
+ {
431
+ "thumbnail": "http://i.tc-core.com/artist/_default/default-thumbnail.jpg",
432
+ "medium": "http://i.tc-core.com/artist/_default/default-medium.jpg",
433
+ "large": "http://i.tc-core.com/artist/_default/default-large.jpg",
434
+ "mobile": "http://i.tc-core.com/artist/_default/default-mobile.jpg"
435
+ },
387
436
  "url": "http://thrillcall.com/artist/The_Sea_and_Cake"
388
437
  },
389
438
  {
@@ -413,6 +462,7 @@ Fields:
413
462
  - **unconfirmed\_location** _integer_ If 1, the location if this event is unconfirmed
414
463
  - **updated\_at** _string_ ISO 8601 representation of last time this object was updated
415
464
  - **venue\_id** _integer_ Thrillcall Venue ID
465
+ - **photos** _hash_ A hash of image urls of the primary photo available for this object in different styles
416
466
  - **url** _string_ URL for this object on Thrillcall
417
467
 
418
468
 
@@ -456,6 +506,12 @@ Returns: _Array_ of Events _Hash_
456
506
  "unconfirmed_location": 0,
457
507
  "updated_at": "2011-09-28T04:00:41Z",
458
508
  "venue_id": 27418,
509
+ "photos":
510
+ {
511
+ "thumbnail": "http://i.tc-core.com/event/_default/default-thumbnail.jpg",
512
+ "large": "http://i.tc-core.com/event/_default/default-large.jpg",
513
+ "mobile": "http://i.tc-core.com/event/_default/default-mobile.jpg"
514
+ },
459
515
  "url": "http://thrillcall.com/event/858707"
460
516
  },
461
517
  {
@@ -495,6 +551,12 @@ Returns: Event _Hash_
495
551
  "unconfirmed_location": 0,
496
552
  "updated_at": "2011-09-28T04:00:41Z",
497
553
  "venue_id": 27418,
554
+ "photos":
555
+ {
556
+ "thumbnail": "http://i.tc-core.com/event/_default/default-thumbnail.jpg",
557
+ "large": "http://i.tc-core.com/event/_default/default-large.jpg",
558
+ "mobile": "http://i.tc-core.com/event/_default/default-mobile.jpg"
559
+ },
498
560
  "url": "http://thrillcall.com/event/858707"
499
561
  }
500
562
  ```
@@ -521,6 +583,13 @@ Returns: _Array_ of Artists _Hash_
521
583
  "primary_genre_id": 27,
522
584
  "upcoming_events_count": 8,
523
585
  "updated_at": "2011-09-20T19:12:57Z",
586
+ "photos":
587
+ {
588
+ "thumbnail": "http://i.tc-core.com/artist/_default/default-thumbnail.jpg",
589
+ "medium": "http://i.tc-core.com/artist/_default/default-medium.jpg",
590
+ "large": "http://i.tc-core.com/artist/_default/default-large.jpg",
591
+ "mobile": "http://i.tc-core.com/artist/_default/default-mobile.jpg"
592
+ },
524
593
  "url": "http://thrillcall.com/artist/The_Sea_and_Cake"
525
594
  },
526
595
  {
@@ -557,6 +626,13 @@ Returns: Venue _Hash_
557
626
  "updated_at": "2011-01-20T21:04:37Z",
558
627
  "postalcode": "94109",
559
628
  "metro_area_id": 105,
629
+ "photos":
630
+ {
631
+ "thumbnail": "http://i.tc-core.com/venue/_default/default-thumbnail.jpg",
632
+ "medium": "http://i.tc-core.com/venue/_default/default-medium.jpg",
633
+ "large": "http://i.tc-core.com/venue/_default/default-large.jpg",
634
+ "mobile": "http://i.tc-core.com/venue/_default/default-mobile.jpg"
635
+ }
560
636
  "url": "http://thrillcall.com/venue/Great_American_Music_Hall_in_San_Francisco_CA"
561
637
  }
562
638
  ```
@@ -676,6 +752,13 @@ Returns: _Array_ of Artists _Hash_
676
752
  "primary_genre_id": 27,
677
753
  "upcoming_events_count": 1,
678
754
  "updated_at": "2011-01-03T22:14:36Z",
755
+ "photos":
756
+ {
757
+ "thumbnail": "http://i.tc-core.com/artist/_default/default-thumbnail.jpg",
758
+ "medium": "http://i.tc-core.com/artist/_default/default-medium.jpg",
759
+ "large": "http://i.tc-core.com/artist/_default/default-large.jpg",
760
+ "mobile": "http://i.tc-core.com/artist/_default/default-mobile.jpg"
761
+ },
679
762
  "url": "http://thrillcall.com/artist/Espers"
680
763
  },
681
764
  {
@@ -696,6 +779,7 @@ Fields:
696
779
  - **longitude** _float_ Longitude of the Metro Area
697
780
  - **radius** _integer_ Radius of the Metro Area from the Lat/Long center
698
781
  - **state** _string_ State of the Metro Area
782
+ - **time\_zone** _string_ Time zone of the Metro Area
699
783
  - **updated\_at** _string_ ISO 8601 representation of last time this object was updated
700
784
  - **url** _string_ URL for this object on Thrillcall
701
785
 
@@ -720,6 +804,7 @@ Returns: _Array_ of Metro Areas _Hash_
720
804
  "longitude": -87.6324,
721
805
  "radius": 50,
722
806
  "state": "IL",
807
+ "time_zone": "America/Chicago",
723
808
  "updated_at": "2011-07-05T23:11:24Z",
724
809
  "url": "http://thrillcall.com/live-music/chicago"
725
810
  },
@@ -751,6 +836,7 @@ Returns: Metro Area _Hash_
751
836
  "longitude": -122.42,
752
837
  "radius": 50,
753
838
  "state": "CA",
839
+ "time_zone": "America/Chicago",
754
840
  "updated_at": "2011-07-05T23:11:24Z",
755
841
  "url": "http://thrillcall.com/live-music/san-francisco"
756
842
  }
@@ -795,6 +881,12 @@ Returns: _Array_ of Metro Areas _Hash_
795
881
  "unconfirmed_location": 0,
796
882
  "updated_at": "2011-09-28T03:51:22Z",
797
883
  "venue_id": 51886,
884
+ "photos":
885
+ {
886
+ "thumbnail": "http://i.tc-core.com/event/_default/default-thumbnail.jpg",
887
+ "large": "http://i.tc-core.com/event/_default/default-large.jpg",
888
+ "mobile": "http://i.tc-core.com/event/_default/default-mobile.jpg"
889
+ },
798
890
  "url": "http://thrillcall.com/event/831330"
799
891
  },
800
892
  {
@@ -805,6 +897,8 @@ Returns: _Array_ of Metro Areas _Hash_
805
897
  ```
806
898
 
807
899
  ## Person
900
+ **Note:** Your API key requires the api\_auth permission to access the endpoints associated with this object.
901
+
808
902
  Fields:
809
903
 
810
904
  - **created\_at** _string_ ISO 8601 representation the time this object was created
@@ -812,18 +906,31 @@ Fields:
812
906
  - **gender** _string_ Gender of the Person
813
907
  - **id** _integer_ Thrillcall ID
814
908
  - **last\_name** _string_ Last name of the Person
815
- - **login** _string_ Login of the Person
909
+ - **login** _string_ Login (Email Address) of the Person
816
910
  - **updated\_at** _string_ ISO 8601 representation of last time this object was updated
817
911
  - **referral\_code** _string_ Referral code of the Person
818
912
  - **referral\_code\_count** _integer_ Number of Referral code used for the Person
819
913
  - **postalcode** _string_ Postalcode of the Person
820
- - **postalcode** _string_ Postalcode of the Person
914
+ - **photos** _hash_ A hash of image urls of the primary photo available for this object in different styles
821
915
 
822
916
  ### POST /person/signin
823
917
  Params:
824
918
 
825
- - **[login](#login)**
919
+ - **[email](#email)**
826
920
  - **[password](#password)**
921
+ - **[provider](#provider)**
922
+ - **[uid](#uid)**
923
+ - **[token](#token)**
924
+ - **[first\_name](#first_name)**
925
+ - **[last\_name](#last_name)**
926
+ - **[location\_name](#location_name)**
927
+ - **[lat](#lat)**
928
+ - **[long](#long)**
929
+ - **[referral\_code](#referral_code)**
930
+
931
+ Use either **[email](#email)** / **[password](#password)** or **[provider](#provider)** / **[uid](#uid)** / **[token](#token)**.
932
+
933
+ May perform registration ("signup") automatically if using **[provider](#provider)** / **[uid](#uid)** / **[token](#token)** when no match is found and name, location, and **[referral_code](#referral_code)** are also provided.
827
934
 
828
935
  Returns: Person _Hash_
829
936
 
@@ -840,6 +947,12 @@ Returns: Person _Hash_
840
947
  "updated_at": "2011-11-09T19:09:23Z",
841
948
  "referral_code": "fhskjfhk3j43h43hjkh",
842
949
  "referral_code_count": 0,
950
+ "photos":
951
+ {
952
+ "small_thumb": "http://i.tc-core.com/person/_default/default-small_thumb.jpg",
953
+ "thumbnail": "http://i.tc-core.com/person/_default/default-thumbnail.jpg",
954
+ "medium": "http://i.tc-core.com/person/_default/default-medium.jpg"
955
+ },
843
956
  "postalcode": "94104"
844
957
  }
845
958
  ```
@@ -853,6 +966,7 @@ Params:
853
966
  - **[email](#email)**
854
967
  - **[password](#password)**
855
968
  - **[postalcode](#postalcode)**
969
+ - **[referral\_code](#referral_code)**
856
970
 
857
971
  Returns: Person _Hash_
858
972
 
@@ -869,6 +983,12 @@ Returns: Person _Hash_
869
983
  "updated_at": "2011-11-09T19:09:23Z",
870
984
  "referral_code": "fhskjfhk3j43h43hjkh",
871
985
  "referral_code_count": 0,
986
+ "photos":
987
+ {
988
+ "small_thumb": "http://i.tc-core.com/person/_default/default-small_thumb.jpg",
989
+ "thumbnail": "http://i.tc-core.com/person/_default/default-thumbnail.jpg",
990
+ "medium": "http://i.tc-core.com/person/_default/default-medium.jpg"
991
+ },
872
992
  "postalcode": "94104"
873
993
  }
874
994
  ```
@@ -884,6 +1004,7 @@ Fields:
884
1004
  - **created\_at** _string_ ISO 8601 representation the time this object was created
885
1005
  - **id** _integer_ Thrillcall ID
886
1006
  - **latitude** _float_ Approximate Latitude for the Venue
1007
+ - **long\_description** _text_ Description of the Venue
887
1008
  - **longitude** _float_ Approximate Longitude for the Venue
888
1009
  - **name** _string_ Name of the Venue
889
1010
  - **metro\_area\_id** _integer_ Thrillcall ID of the Metro Area this Venue is in, if any
@@ -891,6 +1012,7 @@ Fields:
891
1012
  - **upcoming\_events\_count** _integer_ Number of upcoming events associated with this object
892
1013
  - **updated\_at** _string_ ISO 8601 representation of last time this object was updated
893
1014
  - **postalcode** _string_ Postal code for the Venue
1015
+ - **photos** _hash_ A hash of image urls of the primary photo available for this object in different styles
894
1016
  - **url** _string_ URL for this object on Thrillcall
895
1017
 
896
1018
 
@@ -918,12 +1040,20 @@ Returns: _Array_ of Venues _Hash_
918
1040
  "created_at": "2000-11-09T19:09:23Z",
919
1041
  "id": 1,
920
1042
  "latitude": null,
1043
+ "long_description": "Description of the venue",
921
1044
  "longitude": null,
922
1045
  "name": "Fbolko",
923
1046
  "state": "MX",
924
1047
  "upcoming_events_count": 0,
925
1048
  "updated_at": "2010-03-28T17:24:20Z",
926
1049
  "postalcode": null,
1050
+ "photos":
1051
+ {
1052
+ "thumbnail": "http://i.tc-core.com/venue/_default/default-thumbnail.jpg",
1053
+ "medium": "http://i.tc-core.com/venue/_default/default-medium.jpg",
1054
+ "large": "http://i.tc-core.com/venue/_default/default-large.jpg",
1055
+ "mobile": "http://i.tc-core.com/venue/_default/default-mobile.jpg"
1056
+ }
927
1057
  "url": "http://thrillcall.com/venue/Fbolko_in_Guadalajara_MX"
928
1058
  },
929
1059
  {
@@ -954,6 +1084,7 @@ Returns: Venue _Hash_
954
1084
  "created_at": "2008-04-21T16:52:31Z",
955
1085
  "id": 27418,
956
1086
  "latitude": 37.784796,
1087
+ "long_description": "Description of the venue",
957
1088
  "longitude": -122.418819,
958
1089
  "name": "Great American Music Hall",
959
1090
  "state": "CA",
@@ -961,6 +1092,13 @@ Returns: Venue _Hash_
961
1092
  "updated_at": "2011-01-20T21:04:37Z",
962
1093
  "postalcode": "94109",
963
1094
  "metro_area_id": 105,
1095
+ "photos":
1096
+ {
1097
+ "thumbnail": "http://i.tc-core.com/venue/_default/default-thumbnail.jpg",
1098
+ "medium": "http://i.tc-core.com/venue/_default/default-medium.jpg",
1099
+ "large": "http://i.tc-core.com/venue/_default/default-large.jpg",
1100
+ "mobile": "http://i.tc-core.com/venue/_default/default-mobile.jpg"
1101
+ }
964
1102
  "url": "http://thrillcall.com/venue/Great_American_Music_Hall_in_San_Francisco_CA"
965
1103
  }
966
1104
  ```
@@ -992,6 +1130,7 @@ Returns: _Array_ of Events _Hash_
992
1130
  "festival": false,
993
1131
  "id": 824614,
994
1132
  "latitude": 37.8016,
1133
+ "long_description": "Description of the venue",
995
1134
  "longitude": -80.4462,
996
1135
  "name": "Colt Ford @ West Virginia State Fair",
997
1136
  "on_sale_date": null,
@@ -1000,6 +1139,12 @@ Returns: _Array_ of Events _Hash_
1000
1139
  "unconfirmed_location": 0,
1001
1140
  "updated_at": "2011-06-24T05:10:05Z",
1002
1141
  "venue_id": 32065,
1142
+ "photos":
1143
+ {
1144
+ "thumbnail": "http://i.tc-core.com/event/_default/default-thumbnail.jpg",
1145
+ "large": "http://i.tc-core.com/event/_default/default-large.jpg",
1146
+ "mobile": "http://i.tc-core.com/event/_default/default-mobile.jpg"
1147
+ },
1003
1148
  "url": "http://thrillcall.com/event/824614"
1004
1149
  },
1005
1150
  {
@@ -1035,6 +1180,7 @@ Returns: _Array_ of Venues _Hash_
1035
1180
  "created_at": "2008-04-21T16:52:31Z",
1036
1181
  "id": 27418,
1037
1182
  "latitude": 37.784796,
1183
+ "long_description": "Description of the venue",
1038
1184
  "longitude": -122.418819,
1039
1185
  "name": "Great American Music Hall",
1040
1186
  "state": "CA",
@@ -1042,6 +1188,13 @@ Returns: _Array_ of Venues _Hash_
1042
1188
  "updated_at": "2011-01-20T21:04:37Z",
1043
1189
  "postalcode": "94109",
1044
1190
  "metro_area_id": 105,
1191
+ "photos":
1192
+ {
1193
+ "thumbnail": "http://i.tc-core.com/venue/_default/default-thumbnail.jpg",
1194
+ "medium": "http://i.tc-core.com/venue/_default/default-medium.jpg",
1195
+ "large": "http://i.tc-core.com/venue/_default/default-large.jpg",
1196
+ "mobile": "http://i.tc-core.com/venue/_default/default-mobile.jpg"
1197
+ }
1045
1198
  "url": "http://thrillcall.com/venue/Great_American_Music_Hall_in_San_Francisco_CA"
1046
1199
  },
1047
1200
  {