-
Notifications
You must be signed in to change notification settings - Fork 14
/
offers.json
1105 lines (1105 loc) · 62.6 KB
/
offers.json
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
{
"model": "offers",
"data": [
{
"account": { "set": "13" },
"media": null,
"title": "My 4th Street Basic Offer"
},
{
"account": { "set": "13" },
"categories": { "set": ["1", "2", "4"] },
"channels": { "set": ["1"] },
"description": "This is my 4th Street Offer!\nCome and get it!",
"listings": { "set": ["1"] },
"media": {
"docs": [
{ "image_id": "4", "sort_order": 1 },
{ "image_id": "5", "sort_order": 2 }
]
},
"post_from_at": "2024-01-18T07:00:00.000Z",
"post_to_at": "2024-01-21T07:00:00.000Z",
"redeem_from_at": "2024-01-19T07:00:00.000Z",
"redeem_to_at": "2024-01-20T07:00:00.000Z",
"tags": { "set": ["2", "3"] },
"title": "My 4th Street Full Offer",
"weburl": "http://www.4thstreetmarket.com"
},
{
"account": { "set": "2" },
"categories": { "set": ["3"] },
"channels": { "set": ["1","3"] },
"listings": { "set": ["2"] },
"rank": { "set": "2" },
"is_featured": true,
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"description": "Settle in and save on 5+ consecutive nights. Book by Monday,May 27, 2024. Minimum stay 5+ nights at hotels, 7+ nights at resorts.\nAvailable at participating properties in the U.S., Canada, Caribbean and Latin America only.\n\nUnlock amazing benefits. Join Marriott Bonvoy™.\nHow to Book\nBe sure that the Promotional Code appears in the Corporate/Promotional code box when making your online reservation, or call 1-800-228-9290 and ask for the promotional code. For toll-free numbers outside the US please visit Global Reservation Numbers\n",
"title": "Save on 5+ Nights",
"weburl": "https://www.marriott.com/offers/long-term-stay-savings-in-the-u-s-and-canada-1355935?propertycode=tussp"
},
{
"account": { "set": "2" },
"categories": { "set": ["2","3"] },
"channels": { "set": ["1"] },
"listings": { "set": ["2"] },
"rank": { "set": "2" },
"is_featured": true,
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2025-01-01T07:00:00.000Z",
"redeem_from_at": "2024-01-01T07:00:00.000Z",
"redeem_to_at": "2025-01-15T07:00:00.000Z",
"description": "Escape to a world of serenity and relaxation with our Spa Retreats Package at the JW Marriott Starr Pass. \nUnwind, rejuvenate, and embrace the tranquility of every moment. Your retreat includes one 50 minute spa treatment per day, and a daily resort credit of $50. Your pathway to unparalleled is one click away.\nHow to Book\n\nBe sure that the Promotional Code appears in the Corporate/Promotional code box when making your online reservation, or call 520-791-6117 and ask for the promotional code. For toll-free numbers outside the US please visit Global Reservation Numbers\nNeed to Know\n\n Promotional Code: SPA\n Valid stay dates: January 18, 2024 - January 15, 2025\n",
"title": "Spa Retreats - Relax and Rejuvenate",
"weburl": "https://www.marriott.com/offers/spa-retreats-package-off-88552/tussp-jw-marriott-tucson-starr-pass-resort-and-spa?propertycode=tussp"
},
{
"account": { "set": "13" },
"categories": { "set": ["1", "4"] },
"channels": { "set": ["1", "3", "4"] },
"description": "thank you to First Responders and Veterans for their service. Stop by and enjoy 10% off food purchases. Wednesday through Saturday Cost: Varies by food item. Wednesdays and Thursdays from 4-8 p.m. and Fridays and Saturdays from 4-9 p.m. Proof of service is required. Cannot be combined with other offers.",
"is_featured": true,
"listings": { "set": ["1"]},
"post_from_at": "2024-02-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "10% Off Meal Purchases for Military and First Responders"
},
{
"account": { "set": "4" },
"categories": { "set": ["1", "4"] },
"channels": { "set": ["1", "3"] },
"description": "Give the gift of experience to someone you love who loves food!",
"is_featured": true,
"listings": { "set": ["10"] },
"post_from_at": "2024-02-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Give the gift of brunch"
},
{
"account": { "set": "104" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "What's one way to sweeten your stay? How about an additional 30% off when you use this deal. Enjoy 30% less on your stay, but all the fun and romantic games still intact, including delicious date night dinners, nightly live entertainment, group activities and of course: your uniquely romantic suite, with amazing amenities like heart-shaped tubs and private-heated pools! Available: Sunday through Thursday Cost: Call or visit website for pricing. Valid Sunday through Thursday. Taxes, and service charge per occupied room not included. Cannot be combined with any other offer or discount program. Not valid on existing reservations. Some restrictions blackout dates apply.",
"is_featured": false,
"listings": { "set": ["100"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "30% Off Midweek Stays"
},
{
"account": { "set": "105" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Includes: offering 30% on romantic getaways now through December. Offer includes Romantic suites, scenic views, world-class spa, themed activities, delicious dining and more. Book now for a well-deserved getaway to the Land of Love! Available: Sunday through Thursday Cost: Call or visit website for pricing. Valid Sunday-Thursday. Taxes, and service charge per occupied room not included. Cannot be combined with any other offer or discount program. Not valid on existing reservations. Some restrictions blackout dates apply. ",
"is_featured": false,
"listings": { "set": ["101"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Exclusive 30% Midweek Stay"
},
{
"account": { "set": "106" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Get in the holiday spirit and enjoy Winterfest. Stay in one of the spacious and charming queen rooms for two nights. Winterfest can be your one stop to get into the festive spirit. Listen to Christmas carols, visit the beautifully-decorated historic homes, shop in town, and take in the spirit of Christmas! Rates start at $109 night, based on double occupancy, two-night minimum; includes tax.",
"is_featured": false,
"listings": { "set": ["102"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Winterfest Weekend"
},
{
"account": { "set": "83" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": " Enjoy half priced margaritas from open to close every Monday.",
"is_featured": false,
"listings": { "set": ["80"] },
"post_from_at": "2024-01-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Margarita Mondays"
},
{
"account": { "set": "83" },
"categories": { "set": ["1", "4"] },
"channels": { "set": ["1"] },
"description": " Restaurant Week Includes: Explore the more exotic flavors of the Republic of Mexico and enjoy a Taste of Mexico. Offer includes octopus taco (charcoal fired octopus arms, chipotle crema, blue corn tortilla, cabbage salpicon), squash blossom (tempura squash blossom on a salbut, topped with salsa ranchera, queso fresco and micro cilantro), Tuetano (skirt steak asada taco topped with bone marrow, salsa verde, onions and micro cilantro), duck mole (duck confit, puebla mole, crema, sesame seeds, queso fresco, onions cilantro), and fluke ceviche (medley sliced peppers, fluke, avocado, cranberry habanero gastrique on a tostada, all served on four inch tortilla or tostada. Available: Sunday through Friday Cost: $30 person.",
"is_featured": false,
"listings": { "set": ["80"] },
"post_from_at": "2024-01-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Restaurant Week Cantina"
},
{
"account": { "set": "107" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "As a special treat for IKON Pass Holders, receive a exclusive promotional discount of 25% off. Don't miss out on this incredible opportunity to enjoy a winter retreat. Book now and create IKONic memories .Visit website link for pricing and promo code email sign up. Travel between January 19 and March 31. Valid proof of IKON Pass must be presented at check-in. Certain restrictions apply.",
"is_featured": false,
"listings": { "set": ["103"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Discount for IKON Pass Holders"
},
{
"account": { "set": "112" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1", "3", "4"] },
"description": "Pack up the car and hit the slopes this season and give your children ages 9 and under the gift of unlimited access to the region's largest learning terrain and best snow. With 40 trails consisting of 15 green, four blue, 12 black diamond, and three double black diamond, your child can progress all season long for $50. $50 child. All child season purchases must be accompanied by an a all-access season pass holder, off peak season pass holder, or youth season pass holder.",
"is_featured": false,
"listings": { "set": ["108"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Child Season Pass"
},
{
"account": { "set": "112" },
"categories": { "set": ["1", "3", "2"] },
"channels": { "set": ["1", "3", "4"] },
"description": "Sseasonal equipment rentals are perfect for those not ready to invest in their own equipment, or families with young and fast-growing children. Grab your gear once and it's yours to keep for the whole season! No more waiting in rental line, just more time in the great outdoors. $279 includes skis snowboard, boots, bindings, and poles.",
"is_featured": false,
"listings": { "set": ["108"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Seasonal Ski and Snowboard Rentals"
},
{
"account": { "set": "112" },
"categories": { "set": ["1", "3", "2"] },
"channels": { "set": ["1", "3", "4"] },
"description": "Skip dragging your gear to and from the mountain each time you visit! Seasonal lockers offer the ultimate convenience of storing your gear on the mountain. Choose between a locker located outside the Summit Lodge at the top of the mountain, or located outside the Valley Lodge at the bottom of the mountain. Lockers fit 3-4 pairs of skis or 2-3 snowboards each comfortably. $319 locker.",
"is_featured": false,
"listings": { "set": ["108"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Seasonal Locker Rental"
},
{
"account": { "set": "112" },
"categories": { "set": ["1", "3", "2"] },
"channels": { "set": ["1", "3"] },
"description": "Ski with the 2024 2025 Off Peak Season Pass. Enjoy hitting the slopes anytime Monday through Friday and after 4 p.m. on Saturday, Sunday and holidays.$519 person through April 3. Holidays include December 26, 2024, January 1, 2025, January 18-20, 2025 and February 15-17, 2025.",
"is_featured": false,
"listings": { "set": ["108"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Off Peak Season Pass"
},
{
"account": { "set": "112" },
"categories": { "set": ["1", "3", "2"] },
"channels": { "set": ["1", "3", "4"] },
"description": "Ski or Ride PA's highest vertical, most varied terrain, and best snow on your time!Senior season pass option gives you the ability to ski or ride on your time all winter long. $89 person ages 70 and over. Valid open to close. No blackout dates. No restrictions. This is pass is only available to those 70 years old or older before December 31, 2024.",
"is_featured": false,
"listings": { "set": ["108"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Senior Season Pass"
},
{
"account": { "set": "113" },
"categories": { "set": ["1", "4"] },
"channels": { "set": ["1", "3"] },
"description": "Includes: dinner in the restaurant or pub and indulge in a delectable three-course meal. Menu includes:Appetizer (choice of): vegetable pot stickers, bruschetta burrata, French onion soup, or strawberry. Entree (choice of): bourbon peach pork chop, glazed salmon with fresh mango Salsa over farro, short rib ragu over rigatoni, artichoke and spinach stuffed portobello mushrooms over a purple rice and quinoa blend, or St. Louis style half rack of ribs. Dessert (choice of): peach crisp a la mode, triple layer chocolate cake or warm salted caramel cookie sundae. Available: Sunday through Friday Cost: $35 person. Available Sunday, Tuesday, Wednesday, Thursday and Friday. Restaurant is closed Mondays.",
"is_featured": false,
"listings": { "set": ["109"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Restaurant Week "
},
{
"account": { "set": "5" },
"categories": { "set": ["1", "3", "4" ] },
"channels": { "set": ["1", "3"] },
"description": "Spring break is just around the corner, with up to 10% savings, kids eat breakfast daily for free (ordered from the kid's breakfast menu) $10 arcade card (one per child), Package pricing is for children ages 5-12.Blackout dates are March 29 and 30. Free kids meals must be used from thechildren's menu.",
"is_featured": false,
"listings": { "set": ["11"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Kids Stay & Eat Free - Spring Break Package"
},
{
"account": { "set": "114" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": "Every Saturday chow down on $0.75 wings. Try one of the many delicious flavors including buffalo mild, garlic parm dry rub, old bay rub, strawberry sriracha (mild), spicy honey mustard, buffalo hot, sweet chili gochujang sauce, luscious BBQ and salt and vinegar just to name a few.",
"is_featured": false,
"listings": { "set": ["110"] },
"post_from_at": "2023-06-03T07:00:00.000Z",
"post_to_at": "2025-03-01T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2024-01-06T07:00:00.000Z",
"redeem_to_at": "2025-03-01T07:00:00.000Z",
"title": "$0.75 Cent Wing Nights"
},
{
"account": { "set": "115" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Get ready to receive spring. Secure your getaway with this exclusive pre-sale and experience multiple outdoor and indoor activities. Offer includes free breakfast and kids under 12 stay free when sharing a room with adults. Seven days a week Pricing varies by room. Must travel April 10 through May 23.",
"is_featured": false,
"listings": { "set": ["111"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Pre-Spring Sale"
},
{
"account": { "set": "116" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Play hooky, call in sick or just get out of town during the week. Save 25% off all remaining rooms now through May 30. Sunday through Thursday.Call for pricing. Not valid on packages, cannot be combined with other offers. Excludes March 17 and May 26, 2024.",
"is_featured": false,
"listings": { "set": ["112"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Midweek Getaway"
},
{
"account": { "set": "117" },
"categories": { "set": ["4"] },
"channels": { "set": ["1", "3", "7"] },
"description": "Save 25% off all burgers from 11 a.m. to 4 p.m. Monday: $5 half dozen wings, Tuesday: $1.50 beef or chicken tacos, Wednesday: midweek meatloaf, Thursday: $17.95 NY strip steak. Sunday through Friday Cost: Varies by menu item. Items are per person.",
"is_featured": false,
"listings": { "set": ["113"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Guinness Monday"
},
{
"account": { "set": "118" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": "Buy 2 Sundaes and get the 3rd free.",
"is_featured": false,
"listings": { "set": ["114"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2024-02-01T07:00:00.000Z",
"redeem_to_at": "2024-03-01T07:00:00.000Z",
"title": "Freeze Your Face February"
},
{
"account": { "set": "119" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Stay and save 15% on your Spring getaway! The hotel is an affordable choice located near attractions including Camelback Resort & Casino, and local restaurants. Guests will enjoy free breakfast, free WiFi, an indoor pool and game room. Available:Seven days a week Rates vary by accommodation. Book using the offer link to save 15% on your Spring stay. Terms and conditions may apply. ",
"is_featured": false,
"listings": { "set": ["115"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Spring Getaway Special - 15% Off"
},
{
"account": { "set": "120" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Spring into Summer with rates staring at $279, there is no reason to wait to book your Summer getaway! Reserve Spring into Summer offer by March 31, 2024 and receive a resort credit to enhance your stay. The offer includes AAA four-diamond accommodations, daily breakfast, up to $250 daily resort credits (stay two nights and received $80, stay three nights and receive $150, stay four nights and receive $250.)Call (855) 345-7759 for available rates or see website for details. Book by March 31, 2024.",
"is_featured": false,
"listings": { "set": ["116"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Spring Into Summer Special"
},
{
"account": { "set": "121" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": " Get an early start on the weekend and spend your Thursday night with us! Stay one-night stay in the accommodation of your choice, enjoy the music of John Curtin, and wake to a delicious breakfast. Offer includes a $75 dining credit at Glass.wine.bar.kitchen, all resort activities, and a $27 credit for breakfast for The Settlers Inn or Cocoon Coffeehouse and Bakery. Priced at $376 best available contemporary room; $426 best available suite. No other discounts or promotions can be applied. Please call the hotel directly to book your stay. ",
"is_featured": false,
"listings": { "set": ["117"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Thursday's The New Friday"
},
{
"account": { "set": "122" },
"categories": { "set": ["2", "3"] },
"channels": { "set": ["1"] },
"description": " It's almost time to trick or treat, roast the turkey, deck the halls, wrap the gifts, and host the party. Host your holiday festivities in their beautiful tasting room. You'll get the whole space to have a fun, relaxing, and festive night with your family, friends, and staff! Available: Sunday, Tuesday through Friday Cost: $200 hour Sunday and Friday; $100 hour Tuesday through Thursday. Food and beverage options available. ",
"is_featured": false,
"listings": { "set": ["118"] },
"post_from_at": "2023-04-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Holiday Party Venue Offer"
},
{
"account": { "set": "7" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Escape with your loved one with 5,500 acres of natural scenic beauty and relaxation. Enjoy a Couples Getaway Package designed to create unforgettable moments in a luxurious setting. Offer includes up to 15% discount on AAA four diamond accommodations, breakfast daily, complimentary bike rentals for two (value $30), in-room amenities to include fresh flowers, bottle of house Champagne and fresh baked shortbread cookies. ",
"is_featured": false,
"listings": { "set": ["12"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Couples Getaway Package"
},
{
"account": { "set": "9" },
"categories": { "set": ["4"] },
"channels": { "set": ["1", "3", "7"] },
"description": " Enjoy cajun po boy tacos, caprese crostinis and cocktail flight with house-made Punch, Moscow Mule and Transfusion. Available: Sundaythrough Friday Cost: $14 tacos, $12 crostinis; $15 flight. All pricing is per person. ",
"is_featured": false,
"listings": { "set": ["13"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Tasting Room"
},
{
"account": { "set": "11" },
"categories": { "set": ["1", "2"] },
"channels": { "set": ["1"] },
"description": " Learn about eagles and their habitat! Join the Delaware Highlands Conservancy and take a scenic drive on a heated bus throughout the Upper Delaware River region while you look for and learn about eagles and their habitat. Offer includes one night stay in accommodation of your choice, a cocktail to enjoy at the fireside chat on Friday night, $125 dining credit for dinner at The Settlers Inn, $27 breakfast credit for The Settlers Inn or Cocoon Coffeehouse and bakery, and two tickets for the 10 a.m. Eagle Watch Bus Excursion on Saturday.",
"is_featured": false,
"listings": { "set": ["14"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Eagle Watch Excursions"
},
{
"account": { "set": "14" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": " Enjoy half priced margaritas from open to close every Monday.",
"is_featured": false,
"listings": { "set": ["15"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Margarita Mondays"
},
{
"account": { "set": "19" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": "Offer a multi-course meal for a fixed price (not including beverage, tax and gratuity). Sunday through Friday (April 7 through April 12) ",
"is_featured": false,
"listings": { "set": ["19"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Restaurant Week Exclusive Menu"
},
{
"account": { "set": "20" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": " Ring in 2024 complete with a DJ, decadent buffet, dancing and noisemakers. Offer includes a two-night stay in the accommodation of your choice, two tickets to the New Year's Eve Bash at The Waterfront, daily continental breakfast, and a bottle of bubbly and sweet treats in your room upon arrival. Available: Saturday through Monday. Package pricing starts at $939 based on double occupancy. Extra charges will apply for more than two people in any accommodation. Package available to book December 30, 2023 through January 1, 2024.",
"is_featured": false,
"listings": { "set": ["20"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-01-03T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-01-03T07:00:00.000Z",
"title": "New Years Eve on the River"
},
{
"account": { "set": "21" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": "A stay at the Affinia is lovely for creating romance! Serene views from your guestroom, paired with dinner at the lively restaurant, Offer includes your choice of deluxe, premium deluxe, and premium luxury king guestrooms, $75 dining voucher, wine and cheese board in your room at check-in, and all resort fees. Available: Sunday through Thursday $276 per room off-season; $431 per room dates between Memorial Day through Labor Day. No other discounts or offers can be applied. Not valid during holiday periods. Please call to book. ",
"is_featured": false,
"listings": { "set": ["21"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Date Night Getaway"
},
{
"account": { "set": "23" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": " Are you ready to have mountains of fun? Be sure to present your valid AAA membership card at check-in to get a suite discount! Call or visit website for pricing. Must present AAA membership card to receive discount. ",
"is_featured": true,
"listings": { "set": ["23"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "AAA Membership Discount"
},
{
"account": { "set": "25" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Relax, stay longer, and save more! Book a stay of two nights or more and enjoy savings of up to 20%. Extend your stay and create lasting memories! Call or visit website for pricing. Blackout dates apply. ",
"is_featured": false,
"listings": { "set": ["24"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Stay Longer and Save"
},
{
"account": { "set": "26" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": " Get away for a weekend to die for. Enjoy the award-winning murder mystery that combines mystery, suspense, and a large dose of laughter. Play a historical figure from Mauch Chunk's past while trying to solve a dastardly deed. This special experience includes breakfast on Saturday and Sunday, and dinner on Saturday. Available: Friday through Sunday Call for pricing. Don't wait to plan your escape - Murder Mystery Weekends sell out quickly! Visit the website for additional information. Murder Mystery Weekends 2024: February 10, 17; March 9, 23; April 13, 27; May 11, 25; June 8, 15, 22, 29; July 6, 13, 20, 27; August 10, 24; September 7, 14, 21, 28; October 5, 12, 19, 26; November 9; December 14. ",
"is_featured": false,
"listings": { "set": ["25"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Murder Mystery Weekends"
},
{
"account": { "set": "36" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": "Enjoy non-stop gaming action and the relaxing four-season pool. This package includes a $100 dining credit to Lucky 8 Noodle and Sushi Bar! Available: Seven days a week.Call or visit website for pricing.",
"is_featured": false,
"listings": { "set": ["33"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Date Night at Lucky 8"
},
{
"account": { "set": "36" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": " Time to drop the books and hit the fields. All students are invited to play paintball for half price. That's right, all day paintball fun at half the price. Don't miss out on this limited time paintball offer!Every person that makes advance reservations and is paid in full at least 24 hours in advance will receive 100 free paintballs. 2024: January 6, 7; February 3, 4, 24, 25; March 25, 26, 27, 28, 29, 30; April 1, 2, 3, 4, 5.Cost:$20.99 person with pre-registration discount. $41.99 person on game day. Ages 10 and up. Must have a valid student ID. Call to pre-register. ",
"is_featured": false,
"listings": { "set": ["33"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Half Price Student Discount Days"
},
{
"account": { "set": "36" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": " Now is a great time to introduce your family and friends to the world of paintball. Offer includes entry to the paintball fields, a paintball gun rental, goggles facemask rental, unlimited N2 air fills, free parking, professional paintball referees, as well as all day play. Available: June 14, August 18, September 29, October 13 an 14 Cost: $21.50 person with pre-registration discount, $42.99 person on game day. Ages 10 and up. ",
"is_featured": false,
"listings": { "set": ["33"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Half Price Paintball Entry"
},
{
"account": { "set": "32" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": "$20 Toward Italian Food and Drink; Valid Any Day for Takeout and Dine-in",
"is_featured": false,
"listings": { "set": ["29"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Dining Napoli"
},
{
"account": { "set": "8" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": "$20 discount on General Admission and $12 discount on youth tickets. Discount rates are available at the front gate with proof of eligibility.",
"is_featured": false,
"listings": { "set": ["3"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Community Access Program"
},
{
"account": { "set": "33" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1", "3", "7"] },
"description": " Escape the routine! Book any day midweek or weekends to unlock unbeatable rates starting at $139. Plus, up to two children ages 0-12 stay free in the same room! Seize the moment! Your perfect getaway is just a click away. Available: Seven days a week Visit website for pricing. Must by December 20, 2023 and travel from now until December 20, 2024. ",
"is_featured": false,
"listings": { "set": ["30"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Staycation Destination"
},
{
"account": { "set": "34" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": " Give yourself a chance to experience romance. Enjoy a romantic atmosphere as we take it the next level with the perfect package to share with your loved one. Offer includes three days and two nights, romantic decoration in the room, one bottle of wine, desserts, appetizer and one breakfast per couple (chef's selection.) Available: Seven days a week Call for pricing. Restrictions may apply. Subject to availability ",
"is_featured": false,
"listings": { "set": ["31"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Romance Package"
},
{
"account": { "set": "35" },
"categories": { "set": ["4"] },
"channels": { "set": ["1", "3", "7"] },
"description": "Give the gift of a delicious meal with our restaurant gift cards! Perfect for any occasion, our gift cards can be used for takeout or delivery, and get 10% off your next visit.",
"is_featured": false,
"listings": { "set": ["32"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Give the Perfect Gift for Any Occasion"
},
{
"account": { "set": "37" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Embrace the extra day in style! Grab a $29 twilight lift ticket and ski into the night, celebrating the bonus day with slope side thrills. Available: Seven days a week Cost: $29 person.",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Leap Year Twilight Ticket at Camelback Mountain"
},
{
"account": { "set": "37" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Calling all locals with the zip code starting in 183 and college students to Camelback Mountain on Tuesday nights! Every Tuesday night starting at 3 p.m., hit the slopes with a twilight lift ticket for only $39. Available: Tuesday Cost: $39 person. Offer valid only for college students and locals in the 183 zip code. This offer must be purchased onsite at Guest Services. Present your college ID, drivers license, or local school ID to redeem your exclusive discount and parking pass. Plus you will receive free parking in lots 5, 7, 8 and 9. This offer is valid every Tuesday night, blackout dates apply (February 20, 2024).",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Locals and College Night at Camelback Mountain"
},
{
"account": { "set": "37" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Get the best of both worlds! When you buy a full day lift ticket, you can add on an Aquatopia twilight ticket for only $49 for same day use! Ski the day away and warm up at night where it's always 84 degrees. Available: Seven day week Cost: $49 person. Must purchase full day lift ticket. Tickets must be used same day. Tickets are per person.",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Bundle and Save at Camelback Resort"
},
{
"account": { "set": "37" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": " Who's ready to have some fun? Dive into endless adventure! The Unlimited Camelbeach Pass ensures unrestricted access, seven days a week, so you can enjoy Camelbeach attractions from the minute you arrive until the minute you leave. Be sure to check out this years sweet perks like, free general parking, 15% off lodging at Camelback Lodge, 10% off at food and beverage outlets and so much more!Available: Seven days a week Cost: Call or visit website for pricing.",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Camelbeach Unlimited Season Pass 2024"
},
{
"account": { "set": "37" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Who's ready to have some fun? Dive into endless summer thrills with the Camelbeach Value Pass, available Monday through Friday from open to close at PA's largest outdoor waterpark. Get amazing perks to use all year round like 10% off lodging, dining, and the Loft Retail, plus get discounted day tickets for Camelbeach and Aquatopia! Available: Monday through Friday Cost: Call or visit website for pricing.",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Camelbeach Value Season Pass 2024"
},
{
"account": { "set": "37" },
"categories": { "set": ["3"] },
"channels": { "set": ["1"] },
"description": "Dive into adventure at Camelback Lodge and experience laser tag, a wild bumper car ride, a rock wall challenge, a $25 arcade card, and complimentary parking! Available: Seven days a week Cost: $55 person. Day passes must be reserved online at least 24 hours in advance. Limit one package per person.",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Park and Play at Camelback Lodge"
},
{
"account": { "set": "37" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": "Get ready to save BIG when you book a midweek stay! Camelback's rates start at only $169, creating the best opportunity to take a break from work and escape to the mountains. Midweek bookings come with shorter wait times and unbeatable discounts, making Camelback your top choice for a fun getaway. Available: Sunday through Thursdays Cost: Rates starting at $169. Call for details.",
"is_featured": false,
"listings": { "set": ["34"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-05-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Midweek Stays at Camelback Lodge"
},
{
"account": { "set": "50" },
"categories": { "set": ["1", "2"] },
"channels": { "set": ["1", "3", "7"] },
"description": " Book a full or half day of paintball for May 12and pay half-price admission. Available: Sunday Cost: Call (570) 669-9127 for pricing. ",
"is_featured": false,
"listings": { "set": ["47"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Half Price Paintball"
},
{
"account": { "set": "50" },
"categories": { "set": ["1", "2"] },
"channels": { "set": ["1"] },
"description": " Collegiate school youth groups of 12 or more raft the Whitewater or EZ Whitewater section for $55.95 with Whitewater Rafting Adventures. Offer includes half-price wetsuit rentals. Available: Seven days a week $55.95 person and half-off wetsuit rental. ",
"is_featured": false,
"listings": { "set": ["47"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Collegiate School Youth Group Special"
},
{
"account": { "set": "52" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Its time to relax, refresh and rejuvenate! From hiking, biking and the unforgettable treetop adventure course to nightly campfires and marshmallow roasts, save on the freshest moments of the season. So, whether serenity or high octane adventure is on the agenda, the ideal place for an unforgettable springtime escape. up to 10% off room rates, $100 in resort credits (stay two nights get $60 in resort credits, stay three nights get $100 in resort credits.) Terms and conditions apply. Based on availability. Must cancel seven days prior to arrival to receive full refund. All activities are weather dependent and may require reservations and or a fee.",
"is_featured": false,
"listings": { "set": ["49"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Spring Renewal and Adventure"
},
{
"account": { "set": "115" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Get last-minute spring deals and enjoy 25% or more off select hotels. Book by March 25.",
"is_featured": false,
"listings": { "set": ["5"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Save 25% or more on spring getaways"
},
{
"account": { "set": "59" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": " Restaurant Week Includes: a week of delicious specials to include: Sunday Bloody Sunday: $5 Tito's bloodies. Monday BBQ and Bourbon Night: choose two: ribs, pulled pork, pulled chicken, grilled shrimp, sausage, your choice of sauce, two sides and cornbread for $26 person. Plus $10 blackberry bourbon sours and spiked lemonade.Wednesday Tapas Night: two $9 small plates and drink specials. Thursday FiestaNight: $3 tacos, $8 quesadillas and $8 margaritas. Monday Through Friday enjoy Happy Appy Hour from 4:30-6:30 p.m. with drink specials with $2 off apps. Buy a $50 gift card, get a $10 gift card free. Available: Sunday through Friday Cost: Varies by special. Available in the pub from 4-9 p.m. ",
"is_featured": false,
"listings": { "set": ["56"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Brass Rail"
},
{
"account": { "set": "60" },
"categories": { "set": ["1", "2", "3"] },
"channels": { "set": ["1"] },
"description": "Get the best deal on the Summer Adventure Overnight Camp! Stay the week and explore the mountain day and night. Overnight campers experience the same adventures of the day campers, but have the added fun of spending their mornings and nights! Experience after dark with night hiking, stargazing and sitting around the campfire telling stories and roasting smores! ",
"is_featured": false,
"listings": { "set": ["57"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "2024 Summer Adventure Overnight Camp"
},
{
"account": { "set": "72" },
"categories": { "set": ["1", "2", "3"] },
"channels": { "set": ["1"] },
"description": "Get the best deal on the Summer Adventure Overnight Camp! Stay the week and explore the mountain day and night. Overnight campers experience the same adventures of the day campers, but have the added fun of spending their mornings and nights! Experience after dark with night hiking, stargazing and sitting around the campfire telling stories and roasting smores! ",
"is_featured": false,
"listings": { "set": ["69"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "2024 Summer Adventure Overnight Camp"
},
{
"account": { "set": "99" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Its time to relax, refresh and rejuvenate! From hiking, biking and the unforgettable treetop adventure course to nightly campfires and marshmallow roasts, save on the freshest moments of the season. So, whether serenity or high octane adventure is on the agenda, the ideal place for an unforgettable springtime escape. The Spring Renewal Bed and Breakfast offer includes delicious daily breakfast, AAA 4-Diamond accommodations with up to 10% off room rates, $100 in resort credits (stay two nights get $60 in resort credits, stay three nights get $100 in resort credits.) See website for details. Terms and conditions apply. Based on availability. Must cancel seven days prior to arrival to receive full refund. No credit or refund will be issued for any unused portions of this package. Travel window: 02 26-05 23 2024. All activities are weather dependent and may require reservations and or a fee.",
"is_featured": false,
"listings": { "set": ["96"] },
"post_from_at": "2024-01-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Spring Renewal Bed and Breakfast Offer"
},
{
"account": { "set": "99" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": " Plan ahead and save on your Resorts vacation! This offer includes overnight accommodations in a beautifully-appointed guest room or suite and access to America's Largest Indoor Waterparks for each registered guest. Available:Seven days a week Book your stayin advance and receive a discount up to 25% off on any guest room or suite. Offer based on availability and subject to change. Does not include taxes or fees.Valid on new reservations only; not valid with any other offers. See website for full details. Use the offer link to book online or call and refer to theBook Early and Save offer.",
"is_featured": true,
"listings": { "set": ["96"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Book Early and Save"
},
{
"account": { "set": "99" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1", "3"] },
"description": "Plan ahead and save on your Resorts vacation! This offer includes overnight accommodations in a beautifully-appointed guest room or suite and access to America's Largest Indoor Waterparks for each registered guest. Available:Seven days a week Visit website for pricing. The longer you stay, the more you save!Offer based on availability and subject to change. Does not include taxes or fees.Valid on new reservations only; not valid with any other offers. See website for full details. ",
"is_featured": true,
"listings": { "set": ["96"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Multi Night Stays"
},
{
"account": { "set": "99" },
"categories": { "set": ["1", "4"] },
"channels": { "set": ["1"] },
"description": "Restaurant Week Includes: Join Cinco Ninos at the Lodge for $15 taco flight (one barbacoa, one chicken and one carnitas.) Available: < strong>Sundaythrough Friday $15 person.",
"is_featured": false,
"listings": { "set": ["96"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Cinco Ninos"
},
{
"account": { "set": "99" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1"] },
"description": "Enjoy tons of wet and wild fun at Resorts and Convention's 125,000 square foot indoor waterpark and massive outdoor waterpark. For the most amazing experience ever, book your group outing at the Waterparks! Available:Seven days a week Cost: Call for pricing. For those planning a day trip event, you must have at least 20 guests (age 3 and older) to take advantage of the group rate. Please note the outdoor waterpark is open Memorial Day through Labor Day (weather permitting). Please contact Leanne to book your group outing!",
"is_featured": false,
"listings": { "set": ["96"] },
"post_from_at": "2023-12-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Discount Group Bookings"
},
{
"account": { "set": "99" },
"categories": { "set": ["1","3"] },
"channels": { "set": ["1", "3", "7"] },
"description": "Get unlimited three-month access to Spa StoneWood with their day pass membership! Take some time for relaxation with access to the Hydro Escape area with indoor Jacuzzi pool, herbal-infused steam room, dry redwood sauna, outdoor patio with lounge seating, as well as the Halotherapy Salt Room. For your convenience ladies' and gentleman's dressing rooms include lockers, robe and slippers, showers and complimentary amenities. Available: Seven days a week Cost From $265.99 person every three months. This is a subscription product. Your day pass membership will be renewed monthly unless otherwise canceled. Spa memberships with appointments must be used on the month of the membership. Unused appointments from previous months are considered to have expired. Members must pre-register prior to their visit to ensure entry by calling 570-216-5493 as blackout dates and restricted occupancy dates may exist.",
"is_featured": false,
"listings": { "set": ["96"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Spa Three-Month Day Pass Subscription"
},
{
"account": { "set": "46" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": " Restaurant Week Includes: Head to Bonnie and Clyde Pub and enjoy Surf and Turf for 2 (while supplies last). Available: Sunday through Friday Price varies and is based off market price.",
"is_featured": false,
"listings": { "set": ["43"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Bonnie and Clyde Pub and Grill"
},
{
"account": { "set": "65" },
"categories": { "set": ["4"] },
"channels": { "set": ["1"] },
"description": "Restaurant Week Includes: Stop by and spend $35 or more and receive $7 off. Available: Sunday through Friday Cost:Spend $35 or more.",
"is_featured": false,
"listings": { "set": ["62"] },
"post_from_at": "2023-08-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Big Black Grill"
},
{
"account": { "set": "89" },
"categories": { "set": ["2"] },
"channels": { "set": ["1"] },
"description": " Life is a journey. Strength is one quality it takes to skillfully move through this adventure, doing everything you need to experience a deep sense of fulfillment and cultivate everlasting freedom. This weekend combines the brilliance of yoga its strengthening, lengthening, opening, expanding, and relaxing consequences with the magic of a retreat format that will restore, revitalize, and help you reconnect. Immerse yourself into the study and practice sessions with Luke this weekend, and explore how to create a sustainable environment on all levels through a practice designed to meet you where you are. Your strong and resilient self awaits! Look forward to seeing you at this special retreat. vailable: Friday through Sunday Visit website for call for pricing.",
"is_featured": false,
"listings": { "set": ["86"] },
"post_from_at": "2024-01-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Yoga for Strength and Longevity Retreat Featuring Luke Ketterhagen"
},
{
"account": { "set": "3" },
"categories": { "set": ["1", "2"] },
"channels": { "set": ["1", "2"] },
"description": " Replenish, nurture, and recharge yourself. Enjoy the peaceful atmosphere of our400-acre campus, evening campfires, hatha yoga, opportunities for wellness treatments, and nourishing vegetarian meals in the company of like-minded guests and residents. Available: Sunday through Friday Rates starting $200 person. Includes meals",
"is_featured": false,
"listings": { "set": ["9"] },
"post_from_at": "2024-01-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "June Trail Crew Getaway Week"
},
{
"account": { "set": "101" },
"categories": { "set": ["1", "2"] },
"channels": { "set": ["1", "2"] },
"description": " Spend some quality time with your significant other. Stay in a comfortable, historic room or treat yourself to a suite, enjoy a bottle of wine, a full breakfast in the morning and a round of 18 holes with cart for the both of you! Available: Seven days a week Rates will vary throughout the season.",
"is_featured": false,
"listings": { "set": ["98"] },
"post_from_at": "2024-01-01T07:00:00.000Z",
"post_to_at": "2024-10-31T07:00:00.000Z",
"rank": { "set": "2" },
"redeem_from_at": "2023-12-01T07:00:00.000Z",
"redeem_to_at": "2024-05-31T07:00:00.000Z",
"title": "Couples Golf"
},
{
"account": { "set": "54" },
"categories": { "set": ["3"] },
"channels": { "set": ["1", "2"] },