-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
1434 lines (1434 loc) · 37.8 KB
/
data.json
File metadata and controls
1434 lines (1434 loc) · 37.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"events": [
{
"id": "evt_01",
"title": "Jazz Night 1: Summer Series",
"description": "A jazz event at Workshop Co-op. Show 1 of the season.",
"startsAt": "2026-06-08T18:00:00.000Z",
"venueId": "ven_18",
"tickets": [
{
"id": "tkt_01_01",
"label": "GA",
"priceCents": 2537,
"currency": "USD",
"quantityAvailable": 12
},
{
"id": "tkt_01_02",
"label": "VIP",
"priceCents": 3337,
"currency": "USD",
"quantityAvailable": 23
}
],
"imageFile": "event-jazz-night.jpg"
},
{
"id": "evt_02",
"title": "Techno Night 2: Fall Series",
"description": "A techno event at Central Park Amphitheater. Show 2 of the season.",
"startsAt": "2026-07-15T19:00:00.000Z",
"venueId": "ven_02",
"tickets": [
{
"id": "tkt_02_01",
"label": "GA",
"priceCents": 2774,
"currency": "USD",
"quantityAvailable": 13
},
{
"id": "tkt_02_02",
"label": "Balcony",
"priceCents": 3574,
"currency": "USD",
"quantityAvailable": 24
},
{
"id": "tkt_02_03",
"label": "VIP",
"priceCents": 4374,
"currency": "USD",
"quantityAvailable": 35
}
],
"imageFile": "event-techno-night.jpg"
},
{
"id": "evt_03",
"title": "Classical Night 3: Winter Series",
"description": "A classical event at Orion Theater. Show 3 of the season.",
"startsAt": "2026-08-22T20:00:00.000Z",
"venueId": "ven_12",
"tickets": [
{
"id": "tkt_03_01",
"label": "Early bird (early)",
"priceCents": 3011,
"currency": "USD",
"quantityAvailable": 14
},
{
"id": "tkt_03_02",
"label": "GA (late release)",
"priceCents": 3811,
"currency": "USD",
"quantityAvailable": 25
},
{
"id": "tkt_03_03",
"label": "Balcony",
"priceCents": 4611,
"currency": "USD",
"quantityAvailable": 36
},
{
"id": "tkt_03_04",
"label": "VIP (early)",
"priceCents": 5411,
"currency": "USD",
"quantityAvailable": 47
}
],
"imageFile": "event-classical-night.jpg"
},
{
"id": "evt_04",
"title": "Comedy Night 4: Spring Series",
"description": "A comedy event at Studio 9. Show 4 of the season.",
"startsAt": "2026-09-01T21:00:00.000Z",
"venueId": "ven_14",
"tickets": [
{
"id": "tkt_04_01",
"label": "General admission",
"priceCents": 3248,
"currency": "USD",
"quantityAvailable": 15
}
],
"imageFile": "event-comedy-night.jpg"
},
{
"id": "evt_05",
"title": "Theater Night 5: Summer Series",
"description": "A theater event at Harbor Pavilion. Show 5 of the season.",
"startsAt": "2026-10-08T17:00:00.000Z",
"venueId": "ven_07",
"tickets": [
{
"id": "tkt_05_01",
"label": "GA",
"priceCents": 2985,
"currency": "USD",
"quantityAvailable": 16
},
{
"id": "tkt_05_02",
"label": "VIP",
"priceCents": 3785,
"currency": "USD",
"quantityAvailable": 27
}
],
"imageFile": "event-theater-night.jpg"
},
{
"id": "evt_06",
"title": "Talks Night 6: Fall Series",
"description": "A talks event at Grand Hall. Show 6 of the season.",
"startsAt": "2026-11-15T18:00:00.000Z",
"venueId": "ven_06",
"tickets": [
{
"id": "tkt_06_01",
"label": "GA (early)",
"priceCents": 3222,
"currency": "USD",
"quantityAvailable": 17
},
{
"id": "tkt_06_02",
"label": "Balcony (late release)",
"priceCents": 4022,
"currency": "USD",
"quantityAvailable": 28
},
{
"id": "tkt_06_03",
"label": "VIP",
"priceCents": 4822,
"currency": "USD",
"quantityAvailable": 39
}
],
"imageFile": "event-talks-night.jpg"
},
{
"id": "evt_07",
"title": "Film Night 7: Winter Series",
"description": "A film event at The Foundry. Show 7 of the season.",
"startsAt": "2026-12-22T19:00:00.000Z",
"venueId": "ven_16",
"tickets": [
{
"id": "tkt_07_01",
"label": "Early bird",
"priceCents": 3459,
"currency": "USD",
"quantityAvailable": 18
},
{
"id": "tkt_07_02",
"label": "GA",
"priceCents": 4259,
"currency": "USD",
"quantityAvailable": 29
},
{
"id": "tkt_07_03",
"label": "Balcony",
"priceCents": 5059,
"currency": "USD",
"quantityAvailable": 40
},
{
"id": "tkt_07_04",
"label": "VIP",
"priceCents": 5859,
"currency": "USD",
"quantityAvailable": 51
}
],
"imageFile": "event-film-night.jpg"
},
{
"id": "evt_08",
"title": "Rock Night 8: Spring Series",
"description": "A rock event at Northside Warehouse. Show 8 of the season.",
"startsAt": "2026-05-01T20:00:00.000Z",
"venueId": "ven_11",
"tickets": [
{
"id": "tkt_08_01",
"label": "General admission",
"priceCents": 3696,
"currency": "USD",
"quantityAvailable": 19
}
],
"imageFile": "event-rock-night.jpg"
},
{
"id": "evt_09",
"title": "Folk Night 9: Summer Series",
"description": "A folk event at City Opera House. Show 9 of the season.",
"startsAt": "2026-06-08T21:00:00.000Z",
"venueId": "ven_03",
"tickets": [
{
"id": "tkt_09_01",
"label": "GA (early)",
"priceCents": 3933,
"currency": "USD",
"quantityAvailable": 20
},
{
"id": "tkt_09_02",
"label": "VIP (late release)",
"priceCents": 4733,
"currency": "USD",
"quantityAvailable": 31
}
],
"imageFile": "event-folk-night.jpg"
},
{
"id": "evt_10",
"title": "Hip-hop Night 10: Fall Series",
"description": "A hip-hop event at Lakeside Dome. Show 10 of the season.",
"startsAt": "2026-07-15T17:00:00.000Z",
"venueId": "ven_09",
"tickets": [
{
"id": "tkt_10_01",
"label": "GA",
"priceCents": 3670,
"currency": "USD",
"quantityAvailable": 21
},
{
"id": "tkt_10_02",
"label": "Balcony",
"priceCents": 4470,
"currency": "USD",
"quantityAvailable": 32
},
{
"id": "tkt_10_03",
"label": "VIP",
"priceCents": 5270,
"currency": "USD",
"quantityAvailable": 43
}
],
"imageFile": "event-hip-hop-night.jpg"
},
{
"id": "evt_11",
"title": "Blues Night 11: Winter Series",
"description": "A blues event at Metro Arena. Show 11 of the season.",
"startsAt": "2026-08-22T18:00:00.000Z",
"venueId": "ven_10",
"tickets": [
{
"id": "tkt_11_01",
"label": "Early bird",
"priceCents": 3907,
"currency": "USD",
"quantityAvailable": 22
},
{
"id": "tkt_11_02",
"label": "GA",
"priceCents": 4707,
"currency": "USD",
"quantityAvailable": 33
},
{
"id": "tkt_11_03",
"label": "Balcony",
"priceCents": 5507,
"currency": "USD",
"quantityAvailable": 44
},
{
"id": "tkt_11_04",
"label": "VIP",
"priceCents": 6307,
"currency": "USD",
"quantityAvailable": 55
}
],
"imageFile": "event-blues-night.jpg"
},
{
"id": "evt_12",
"title": "Chamber Night 12: Spring Series",
"description": "A chamber event at Brickyard. Show 12 of the season.",
"startsAt": "2026-09-01T19:00:00.000Z",
"venueId": "ven_01",
"tickets": [
{
"id": "tkt_12_01",
"label": "General admission (early)",
"priceCents": 4144,
"currency": "USD",
"quantityAvailable": 23
}
],
"imageFile": "event-chamber-night.jpg"
},
{
"id": "evt_13",
"title": "Stand-up Night 13: Summer Series",
"description": "A stand-up event at Sunset Rooftop. Show 13 of the season.",
"startsAt": "2026-10-08T20:00:00.000Z",
"venueId": "ven_15",
"tickets": [
{
"id": "tkt_13_01",
"label": "GA",
"priceCents": 4381,
"currency": "USD",
"quantityAvailable": 24
},
{
"id": "tkt_13_02",
"label": "VIP",
"priceCents": 5181,
"currency": "USD",
"quantityAvailable": 35
}
],
"imageFile": "event-stand-up-night.jpg"
},
{
"id": "evt_14",
"title": "Brunch Night 14: Fall Series",
"description": "A brunch event at East End Club. Show 14 of the season.",
"startsAt": "2026-11-15T21:00:00.000Z",
"venueId": "ven_05",
"tickets": [
{
"id": "tkt_14_01",
"label": "GA",
"priceCents": 4618,
"currency": "USD",
"quantityAvailable": 25
},
{
"id": "tkt_14_02",
"label": "Balcony",
"priceCents": 5418,
"currency": "USD",
"quantityAvailable": 36
},
{
"id": "tkt_14_03",
"label": "VIP",
"priceCents": 6218,
"currency": "USD",
"quantityAvailable": 47
}
],
"imageFile": "event-brunch-night.jpg"
},
{
"id": "evt_15",
"title": "Workshop Night 15: Winter Series",
"description": "A workshop event at Convention Center A. Show 15 of the season.",
"startsAt": "2026-12-22T17:00:00.000Z",
"venueId": "ven_04",
"tickets": [
{
"id": "tkt_15_01",
"label": "Early bird (early)",
"priceCents": 4355,
"currency": "USD",
"quantityAvailable": 26
},
{
"id": "tkt_15_02",
"label": "GA (late release)",
"priceCents": 5155,
"currency": "USD",
"quantityAvailable": 37
},
{
"id": "tkt_15_03",
"label": "Balcony",
"priceCents": 5955,
"currency": "USD",
"quantityAvailable": 48
},
{
"id": "tkt_15_04",
"label": "VIP (early)",
"priceCents": 6755,
"currency": "USD",
"quantityAvailable": 59
}
],
"imageFile": "event-workshop-night.jpg"
},
{
"id": "evt_16",
"title": "Indie Night 16: Spring Series",
"description": "A indie event at Jazz Cellar. Show 16 of the season.",
"startsAt": "2026-05-01T18:00:00.000Z",
"venueId": "ven_08",
"tickets": [
{
"id": "tkt_16_01",
"label": "General admission",
"priceCents": 4592,
"currency": "USD",
"quantityAvailable": 27
}
],
"imageFile": "event-indie-night.jpg"
},
{
"id": "evt_17",
"title": "Jazz Night 17: Summer Series",
"description": "A jazz event at Union Square Stage. Show 17 of the season.",
"startsAt": "2026-06-08T19:00:00.000Z",
"venueId": "ven_17",
"tickets": [
{
"id": "tkt_17_01",
"label": "GA",
"priceCents": 4829,
"currency": "USD",
"quantityAvailable": 28
},
{
"id": "tkt_17_02",
"label": "VIP",
"priceCents": 5629,
"currency": "USD",
"quantityAvailable": 39
}
],
"imageFile": "event-jazz-night.jpg"
},
{
"id": "evt_18",
"title": "Techno Night 18: Fall Series",
"description": "A techno event at Riverside Hall. Show 18 of the season.",
"startsAt": "2026-07-15T20:00:00.000Z",
"venueId": "ven_13",
"tickets": [
{
"id": "tkt_18_01",
"label": "GA (early)",
"priceCents": 5066,
"currency": "USD",
"quantityAvailable": 29
},
{
"id": "tkt_18_02",
"label": "Balcony (late release)",
"priceCents": 5866,
"currency": "USD",
"quantityAvailable": 40
},
{
"id": "tkt_18_03",
"label": "VIP",
"priceCents": 6666,
"currency": "USD",
"quantityAvailable": 51
}
],
"imageFile": "event-techno-night.jpg"
},
{
"id": "evt_19",
"title": "Classical Night 19: Winter Series",
"description": "A classical event at Workshop Co-op. Show 19 of the season.",
"startsAt": "2026-08-22T21:00:00.000Z",
"venueId": "ven_18",
"tickets": [
{
"id": "tkt_19_01",
"label": "Early bird",
"priceCents": 5303,
"currency": "USD",
"quantityAvailable": 30
},
{
"id": "tkt_19_02",
"label": "GA",
"priceCents": 6103,
"currency": "USD",
"quantityAvailable": 41
},
{
"id": "tkt_19_03",
"label": "Balcony",
"priceCents": 6903,
"currency": "USD",
"quantityAvailable": 52
},
{
"id": "tkt_19_04",
"label": "VIP",
"priceCents": 7703,
"currency": "USD",
"quantityAvailable": 63
}
],
"imageFile": "event-classical-night.jpg"
},
{
"id": "evt_20",
"title": "Comedy Night 20: Spring Series",
"description": "A comedy event at Central Park Amphitheater. Show 20 of the season.",
"startsAt": "2026-09-01T17:00:00.000Z",
"venueId": "ven_02",
"tickets": [
{
"id": "tkt_20_01",
"label": "General admission",
"priceCents": 5040,
"currency": "USD",
"quantityAvailable": 31
}
],
"imageFile": "event-comedy-night.jpg"
},
{
"id": "evt_21",
"title": "Theater Night 21: Summer Series",
"description": "A theater event at Orion Theater. Show 21 of the season.",
"startsAt": "2026-10-08T18:00:00.000Z",
"venueId": "ven_12",
"tickets": [
{
"id": "tkt_21_01",
"label": "GA (early)",
"priceCents": 5277,
"currency": "USD",
"quantityAvailable": 32
},
{
"id": "tkt_21_02",
"label": "VIP (late release)",
"priceCents": 6077,
"currency": "USD",
"quantityAvailable": 43
}
],
"imageFile": "event-theater-night.jpg"
},
{
"id": "evt_22",
"title": "Talks Night 22: Fall Series",
"description": "A talks event at Studio 9. Show 22 of the season.",
"startsAt": "2026-11-15T19:00:00.000Z",
"venueId": "ven_14",
"tickets": [
{
"id": "tkt_22_01",
"label": "GA",
"priceCents": 5514,
"currency": "USD",
"quantityAvailable": 33
},
{
"id": "tkt_22_02",
"label": "Balcony",
"priceCents": 6314,
"currency": "USD",
"quantityAvailable": 44
},
{
"id": "tkt_22_03",
"label": "VIP",
"priceCents": 7114,
"currency": "USD",
"quantityAvailable": 55
}
],
"imageFile": "event-talks-night.jpg"
},
{
"id": "evt_23",
"title": "Film Night 23: Winter Series",
"description": "A film event at Harbor Pavilion. Show 23 of the season.",
"startsAt": "2026-12-22T20:00:00.000Z",
"venueId": "ven_07",
"tickets": [
{
"id": "tkt_23_01",
"label": "Early bird",
"priceCents": 5751,
"currency": "USD",
"quantityAvailable": 34
},
{
"id": "tkt_23_02",
"label": "GA",
"priceCents": 6551,
"currency": "USD",
"quantityAvailable": 45
},
{
"id": "tkt_23_03",
"label": "Balcony",
"priceCents": 7351,
"currency": "USD",
"quantityAvailable": 56
},
{
"id": "tkt_23_04",
"label": "VIP",
"priceCents": 8151,
"currency": "USD",
"quantityAvailable": 67
}
],
"imageFile": "event-film-night.jpg"
},
{
"id": "evt_24",
"title": "Rock Night 24: Spring Series",
"description": "A rock event at Grand Hall. Show 24 of the season.",
"startsAt": "2026-05-01T21:00:00.000Z",
"venueId": "ven_06",
"tickets": [
{
"id": "tkt_24_01",
"label": "General admission (early)",
"priceCents": 5988,
"currency": "USD",
"quantityAvailable": 35
}
],
"imageFile": "event-rock-night.jpg"
},
{
"id": "evt_25",
"title": "Folk Night 25: Summer Series",
"description": "A folk event at The Foundry. Show 25 of the season.",
"startsAt": "2026-06-08T17:00:00.000Z",
"venueId": "ven_16",
"tickets": [
{
"id": "tkt_25_01",
"label": "GA",
"priceCents": 5725,
"currency": "USD",
"quantityAvailable": 36
},
{
"id": "tkt_25_02",
"label": "VIP",
"priceCents": 6525,
"currency": "USD",
"quantityAvailable": 47
}
],
"imageFile": "event-folk-night.jpg"
},
{
"id": "evt_26",
"title": "Hip-hop Night 26: Fall Series",
"description": "A hip-hop event at Northside Warehouse. Show 26 of the season.",
"startsAt": "2026-07-15T18:00:00.000Z",
"venueId": "ven_11",
"tickets": [
{
"id": "tkt_26_01",
"label": "GA",
"priceCents": 5962,
"currency": "USD",
"quantityAvailable": 37
},
{
"id": "tkt_26_02",
"label": "Balcony",
"priceCents": 6762,
"currency": "USD",
"quantityAvailable": 48
},
{
"id": "tkt_26_03",
"label": "VIP",
"priceCents": 7562,
"currency": "USD",
"quantityAvailable": 59
}
],
"imageFile": "event-hip-hop-night.jpg"
},
{
"id": "evt_27",
"title": "Blues Night 27: Winter Series",
"description": "A blues event at City Opera House. Show 27 of the season.",
"startsAt": "2026-08-22T19:00:00.000Z",
"venueId": "ven_03",
"tickets": [
{
"id": "tkt_27_01",
"label": "Early bird (early)",
"priceCents": 6199,
"currency": "USD",
"quantityAvailable": 38
},
{
"id": "tkt_27_02",
"label": "GA (late release)",
"priceCents": 6999,
"currency": "USD",
"quantityAvailable": 49
},
{
"id": "tkt_27_03",
"label": "Balcony",
"priceCents": 7799,
"currency": "USD",
"quantityAvailable": 60
},
{
"id": "tkt_27_04",
"label": "VIP (early)",
"priceCents": 8599,
"currency": "USD",
"quantityAvailable": 71
}
],
"imageFile": "event-blues-night.jpg"
},
{
"id": "evt_28",
"title": "Chamber Night 28: Spring Series",
"description": "A chamber event at Lakeside Dome. Show 28 of the season.",
"startsAt": "2026-09-01T20:00:00.000Z",
"venueId": "ven_09",
"tickets": [
{
"id": "tkt_28_01",
"label": "General admission",
"priceCents": 6436,
"currency": "USD",
"quantityAvailable": 39
}
],
"imageFile": "event-chamber-night.jpg"
},
{
"id": "evt_29",
"title": "Stand-up Night 29: Summer Series",
"description": "A stand-up event at Metro Arena. Show 29 of the season.",
"startsAt": "2026-10-08T21:00:00.000Z",
"venueId": "ven_10",
"tickets": [
{
"id": "tkt_29_01",
"label": "GA",
"priceCents": 6673,
"currency": "USD",
"quantityAvailable": 40
},
{
"id": "tkt_29_02",
"label": "VIP",
"priceCents": 7473,
"currency": "USD",
"quantityAvailable": 51
}
],
"imageFile": "event-stand-up-night.jpg"
},
{
"id": "evt_30",
"title": "Brunch Night 30: Fall Series",
"description": "A brunch event at Brickyard. Show 30 of the season.",
"startsAt": "2026-11-15T17:00:00.000Z",
"venueId": "ven_01",
"tickets": [
{
"id": "tkt_30_01",
"label": "GA (early)",
"priceCents": 6410,
"currency": "USD",
"quantityAvailable": 41
},
{
"id": "tkt_30_02",
"label": "Balcony (late release)",
"priceCents": 7210,
"currency": "USD",
"quantityAvailable": 52
},
{
"id": "tkt_30_03",
"label": "VIP",
"priceCents": 8010,
"currency": "USD",
"quantityAvailable": 63
}
],
"imageFile": "event-brunch-night.jpg"
},
{
"id": "evt_31",
"title": "Workshop Night 31: Winter Series",
"description": "A workshop event at Sunset Rooftop. Show 31 of the season.",
"startsAt": "2026-12-22T18:00:00.000Z",
"venueId": "ven_15",
"tickets": [
{
"id": "tkt_31_01",
"label": "Early bird",
"priceCents": 6647,
"currency": "USD",
"quantityAvailable": 42
},
{
"id": "tkt_31_02",
"label": "GA",
"priceCents": 7447,
"currency": "USD",
"quantityAvailable": 53
},
{
"id": "tkt_31_03",
"label": "Balcony",
"priceCents": 8247,
"currency": "USD",
"quantityAvailable": 64
},
{
"id": "tkt_31_04",
"label": "VIP",
"priceCents": 9047,
"currency": "USD",
"quantityAvailable": 75
}
],
"imageFile": "event-workshop-night.jpg"
},
{
"id": "evt_32",
"title": "Indie Night 32: Spring Series",
"description": "A indie event at East End Club. Show 32 of the season.",
"startsAt": "2026-05-01T19:00:00.000Z",
"venueId": "ven_05",
"tickets": [
{
"id": "tkt_32_01",
"label": "General admission",
"priceCents": 6884,
"currency": "USD",
"quantityAvailable": 43
}
],
"imageFile": "event-indie-night.jpg"
},
{
"id": "evt_33",
"title": "Jazz Night 33: Summer Series",
"description": "A jazz event at Convention Center A. Show 33 of the season.",
"startsAt": "2026-06-08T20:00:00.000Z",
"venueId": "ven_04",
"tickets": [
{
"id": "tkt_33_01",
"label": "GA (early)",
"priceCents": 7121,
"currency": "USD",
"quantityAvailable": 44
},
{
"id": "tkt_33_02",
"label": "VIP (late release)",
"priceCents": 7921,
"currency": "USD",
"quantityAvailable": 55
}
],
"imageFile": "event-jazz-night.jpg"
},
{
"id": "evt_34",
"title": "Techno Night 34: Fall Series",
"description": "A techno event at Jazz Cellar. Show 34 of the season.",
"startsAt": "2026-07-15T21:00:00.000Z",
"venueId": "ven_08",
"tickets": [
{
"id": "tkt_34_01",
"label": "GA",
"priceCents": 7358,
"currency": "USD",
"quantityAvailable": 45
},
{
"id": "tkt_34_02",
"label": "Balcony",
"priceCents": 8158,
"currency": "USD",
"quantityAvailable": 56
},
{
"id": "tkt_34_03",
"label": "VIP",
"priceCents": 8958,
"currency": "USD",
"quantityAvailable": 67
}
],
"imageFile": "event-techno-night.jpg"
},
{
"id": "evt_35",
"title": "Classical Night 35: Winter Series",
"description": "A classical event at Union Square Stage. Show 35 of the season.",
"startsAt": "2026-08-22T17:00:00.000Z",
"venueId": "ven_17",
"tickets": [
{
"id": "tkt_35_01",
"label": "Early bird",
"priceCents": 7095,
"currency": "USD",
"quantityAvailable": 46
},
{
"id": "tkt_35_02",
"label": "GA",
"priceCents": 7895,
"currency": "USD",
"quantityAvailable": 57
},
{
"id": "tkt_35_03",
"label": "Balcony",
"priceCents": 8695,
"currency": "USD",
"quantityAvailable": 68
},
{
"id": "tkt_35_04",
"label": "VIP",
"priceCents": 9495,
"currency": "USD",
"quantityAvailable": 79
}
],
"imageFile": "event-classical-night.jpg"
},
{
"id": "evt_36",
"title": "Comedy Night 36: Spring Series",
"description": "A comedy event at Riverside Hall. Show 36 of the season.",
"startsAt": "2026-09-01T18:00:00.000Z",
"venueId": "ven_13",
"tickets": [
{
"id": "tkt_36_01",
"label": "General admission (early)",
"priceCents": 7332,
"currency": "USD",
"quantityAvailable": 47
}
],
"imageFile": "event-comedy-night.jpg"
},
{
"id": "evt_37",
"title": "Theater Night 37: Summer Series",
"description": "A theater event at Workshop Co-op. Show 37 of the season.",
"startsAt": "2026-10-08T19:00:00.000Z",
"venueId": "ven_18",
"tickets": [
{