-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathreviews.json
More file actions
1692 lines (1692 loc) · 51.1 KB
/
Copy pathreviews.json
File metadata and controls
1692 lines (1692 loc) · 51.1 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
[
{
"encid": "BEKMpvESK6PzbN4gbXzntQ",
"text": {
"full": "The food (Basil Almond Pesto Pasta) is amazing. Service was excellent (Skylar and bar staff)",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "J9QPAPVVjrnR6DCUdQNk7A",
"displayName": "Anne W.",
"displayLocation": "Rancho Santa Margarita, CA",
"reviewCount": 5,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-17T01:08:14Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "0mGInxEGZZCxwjaOnpqgXQ",
"text": {
"full": "I want to give this place 100* everything from food to drinks to service to ambience everything was amazing.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "9MQs_9Ur0_ZF3kWuOKNf-g",
"displayName": "Jaquelyn C.",
"displayLocation": "Oak Harbor, WA",
"reviewCount": 86,
"friendCount": 6,
"businessPhotoCount": 187
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-16T19:05:24Z",
"businessPhotos": [
{
"encid": "tAX_RPHSApUF6-R-wRx5UA",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/tAX_RPHSApUF6-R-wRx5UA/348s.jpg",
"caption": null,
"helpfulCount": 0
},
{
"encid": "RDkjRW6v7gqratef-g69zw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/RDkjRW6v7gqratef-g69zw/348s.jpg",
"caption": "Carnitas & Avocado Pizza",
"helpfulCount": 0
},
{
"encid": "-JQKdyontQUJTRxK_thWdQ",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/-JQKdyontQUJTRxK_thWdQ/348s.jpg",
"caption": "Aperol spritz & Champagne Mango Margarita",
"helpfulCount": 0
},
{
"encid": "e6W3O29FZEHQt2k2rnejdw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/e6W3O29FZEHQt2k2rnejdw/348s.jpg",
"caption": "Northwest King Salmon Pasta",
"helpfulCount": 0
},
{
"encid": "tUK1gpcPsWb37yL3Z1zjpQ",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/tUK1gpcPsWb37yL3Z1zjpQ/348s.jpg",
"caption": "Tequila",
"helpfulCount": 0
},
{
"encid": "HyThizArrQ00N4sVfvxNbw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/HyThizArrQ00N4sVfvxNbw/348s.jpg",
"caption": "Damn Good Wings",
"helpfulCount": 0
},
{
"encid": "KoXKyGp13iVDlQGIHmNKBA",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/KoXKyGp13iVDlQGIHmNKBA/348s.jpg",
"caption": "Whole Milk Creamy Burrata Spread with Sourdough Baguette",
"helpfulCount": 0
},
{
"encid": "TAfZ7xFJ5UF0u8tiUj13rg",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/TAfZ7xFJ5UF0u8tiUj13rg/348s.jpg",
"caption": "Pike Market flowers",
"helpfulCount": 0
}
],
"businessVideos": [
{
"encid": "OjDmEvnWyaEXgjyrrQfNMQ",
"videoUrl": "https://stream.mux.com/cNTEoy7501Vz60274VeX6Kpc4n01jLJtxUPLFae7A8salM/high.mp4",
"thumbnailUrl": "https://image.mux.com/cNTEoy7501Vz60274VeX6Kpc4n01jLJtxUPLFae7A8salM/thumbnail.jpg?height=720&time=0",
"caption": null,
"__typename": "BusinessVideo"
}
],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "RvxyElsbBcNSn-TMzznfjA",
"text": {
"full": "From the moment we arrived, the host seemed visibly irritated by the size of our party on a weekday. Instead of greeting us politely or trying to accommodate us, they were short-tempered, dismissive, and made us feel unwelcome. \n\nWe have called in to make a reservation and were told that they don't do reservations for Happy Hour. If the restaurant couldn't handle walk-in groups of our size(12 people), they could have simply explained the situation after we have specifically told them we would like to sit closer. Even when we offered to wait or adjust. Instead, the host sighed, rolled their eyes, and spoke to us in a condescending tone as if we were an inconvenience. The host needs to take 101 on hosting",
"language": "en"
},
"rating": 1,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "pvK8PlF6iuzEXuqwoY7YsQ",
"displayName": "Xinyi T.",
"displayLocation": "Manhattan, NY",
"reviewCount": 3,
"friendCount": 9,
"businessPhotoCount": 1
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-14T04:55:46Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "maMGxHyHaUjG8QnFYyf2gA",
"text": {
"full": "Went here for happy hour with my friends for a birthday. Food was delicious! The pizza was very good, along with the bang bang chicken. The smash burger was good as well but my friends did not necessarily enjoy the caramelized onions on it.\n\nThe champagne mango margarita was fire.\n\nThe ambience was really chill, clean, and nice. \n\nOur server was George and he was absolutely lovely. We bantered with him for a bit and the service was fast. Food came out reasonably quickly. We had a great time. Would definitely recommend, especially for happy hour.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "pxTPA4k7VStANUJRs2g2qQ",
"displayName": "Sage C.",
"displayLocation": "Ames, IA",
"reviewCount": 3,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-13T23:28:28Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "KUWMHe6vePKuEyhLTmQiYw",
"text": {
"full": "This restaurant is located near the water and Pike's Place. It is spacious with multiple tables and a bar inside. The business makes their own pasta, dough for their pizza, and alcohol in house. \n\nOur sever, George, was personable, kind, and helpful. He recommended the carnitas avocado pizza. It was really good. The pizza dough was soft and flavorful. There was a nice amount of meat on my pizza. The unique combination of toppings on my pizza that paired well together. The pizza was large enough to share or have leftovers for later. \n\nI enjoyed the bourbon with homemade ice cream. I would definitely return and try other food options.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 2,
"funnyCount": 0,
"usefulCount": 2
},
"author": {
"encid": "mIgLAWjGCvDBp9pKhV4WDQ",
"displayName": "Ashleigh F.",
"displayLocation": "Raleigh, NC",
"reviewCount": 506,
"friendCount": 147,
"businessPhotoCount": 2889
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-12T04:33:27Z",
"businessPhotos": [
{
"encid": "kknU8AoLgNtMrFhujjNkVA",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/kknU8AoLgNtMrFhujjNkVA/348s.jpg",
"caption": "Carnitas & Avocado Pizza",
"helpfulCount": 0
},
{
"encid": "duhKce3Ds7io5Nky9hiTHQ",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/duhKce3Ds7io5Nky9hiTHQ/348s.jpg",
"caption": null,
"helpfulCount": 0
},
{
"encid": "D566Zb-kEpD0Na1CZ_CJTw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/D566Zb-kEpD0Na1CZ_CJTw/348s.jpg",
"caption": null,
"helpfulCount": 0
},
{
"encid": "Qri-FI_8fqVe5NA5tpgQ5g",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/Qri-FI_8fqVe5NA5tpgQ5g/348s.jpg",
"caption": null,
"helpfulCount": 0
},
{
"encid": "Lt_oebZNgebIsefun2UPZg",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/Lt_oebZNgebIsefun2UPZg/348s.jpg",
"caption": null,
"helpfulCount": 0
}
],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 2
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 1
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 2
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "oqtNv0ql1giWFY2C8JdCHw",
"text": {
"full": "We visited as a party of four. When it came time to pay, our server asked if we wanted one bill or to split the check. We chose to split. The server brought over a handheld Toast point-of-sale machine, took each of our cards, and immediately presented the tip screen (with 18%, 20%, and 22% pre-calculated options) before showing us an itemized bill.\n\nI tipped 20% and then asked for a printed receipt. That's when I noticed a separate line item called \"Cook Commission - 5%\" added to the pre-tip total. This meant my actual tip ended up being 25% -- but I had no idea at the time because I wasn't shown the bill beforehand.\n\nAt every other restaurant I've been to, you're shown an itemized check first so you know the exact charges before deciding on a tip. Here, we were essentially tipping \"blind\" without being told about the extra 5% charge.\n\nI find this practice non-transparent and, in my opinion, unethical. I hope the management reconsiders how they present bills so guests can make informed tipping decisions.",
"language": "en"
},
"rating": 1,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "Hw90QbVGz4YIrgLY1hbaWg",
"displayName": "Dave P.",
"displayLocation": "Oakland, CA",
"reviewCount": 10,
"friendCount": 0,
"businessPhotoCount": 1
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-12T03:23:46Z",
"businessPhotos": [
{
"encid": "-VT-jUwuREHR7gDl_F1Ixw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/-VT-jUwuREHR7gDl_F1Ixw/348s.jpg",
"caption": "Bill showing additional cook commission",
"helpfulCount": 0
}
],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "VGFtogui3KgrgULoUPOJZA",
"text": {
"full": "All the food and drinks were pretty good, I give it a 8/10. Nothing was amazing but nothing was bad! The vibes inside here are rly nice and dim. Service was nice and accommodating. I would come here again!",
"language": "en"
},
"rating": 4,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "jAl9KH0UIDEDzJ-TnYFQQA",
"displayName": "Lainey N.",
"displayLocation": "Houston, TX",
"reviewCount": 75,
"friendCount": 4,
"businessPhotoCount": 194
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-12T00:37:51Z",
"businessPhotos": [
{
"encid": "7vQi0zayA-4M5Up8pPwLUw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/7vQi0zayA-4M5Up8pPwLUw/348s.jpg",
"caption": "Seattle Classic Summer Stone Fruit Pizza",
"helpfulCount": 0
},
{
"encid": "Z5AaLU10k09iFt_ZdWfszw",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/Z5AaLU10k09iFt_ZdWfszw/348s.jpg",
"caption": "Espresso Euphoria lemon drop Papaya Mule",
"helpfulCount": 0
}
],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 1
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "2qR0RRCG_lEvS72YBYDRkQ",
"text": {
"full": "Super upbeat and touristy vibe, but in the best way. I came here a few times before officially moving to Seattle, and every visit was spot-on. The food, the atmosphere, the service, everything was great. They've got a solid drink selection too, which is always a bonus. The portions were huge and filling so I definitely didn't leave hungry. If I'm ever in the area again, I'd happily come back as parking is not an easy task around here.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "38mmMWZG5FVOdJUHfNBJkA",
"displayName": "Mayson B.",
"displayLocation": "Bellevue, WA",
"reviewCount": 237,
"friendCount": 272,
"businessPhotoCount": 342
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-11T21:45:53Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "NYDJ6myrXL1X-VS7bRo6TQ",
"text": {
"full": "Had drinks and appetizers on Saturday night it was super busy and there were 7 of us. Chris was our server and he was amazing!! Everything came out só fast! He was só personable and realized we were celebrating my daughter's engagement and brought out a special dessert with a sparkler!!! It was só fun!! He really went above and beyond in the guest experience department!! Thanks so much!!",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "rG5nibv_cZxKGaR0vG8Erw",
"displayName": "Danielle D.",
"displayLocation": "Seattle, WA",
"reviewCount": 1,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-11T06:13:50Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "Kyr7EI1v945mCxvbGBqJXQ",
"text": {
"full": "Food and service was great. It was the first time at this location and it was a beautiful day with the windows open. My only challenge is both locations get pretty noisy, so sometimes it's hard to have a quieter conversation. Love the food - everything has been great and we are going to buy some of the dry pasta to take home next time.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "DXdLAdUPd07UaSw8izWTPQ",
"displayName": "Ashley Z.",
"displayLocation": "Boston, MA",
"reviewCount": 9,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-10T17:23:26Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "JqIrR7JuFRD1kP3dKdKD0g",
"text": {
"full": "Kinsey and Patrick were a great duo who made us laugh while enjoying delicious cocktails",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "DychgvhtqC48gj7MSMMasw",
"displayName": "Kelly C.",
"displayLocation": "Dallas, TX",
"reviewCount": 23,
"friendCount": 5,
"businessPhotoCount": 2
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-08T05:46:44Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "iV3xGQxcOMXcptk42RJI8w",
"text": {
"full": "Kinsey has an amazing sense of humor and made us laugh so much! Patrick was a great bartender, drinks were perfect.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "HP5aEfJhYg9AecBnwi4FPw",
"displayName": "Jessica S.",
"displayLocation": "Dallas, TX",
"reviewCount": 6,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-08T05:44:00Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "cXOFWvbyufMsZYTdqDMQvw",
"text": {
"full": "Ocean was awesome and made our experience. He was very kind and helpful. We got the smash burger and the lil pep pizza and both were delicious. The burger was cheesy and loaded with onions and the sourdough crust and hot honey on the pizza left us wanting more. The ambiance was more of a sophisticated dive bar vibe which isn't a knock the food was bomb and the drink list and bar were huge. If we are in Seattle again we will be back.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "T3osUCTnvh4uct_CDXi8rA",
"displayName": "Dylan P.",
"displayLocation": "Oak Park, CA",
"reviewCount": 9,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-08T04:50:16Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "uN28j8-W7Yjkd7GCDHEE8Q",
"text": {
"full": "Vons is the perfect happy hour spot to go to! Staff is nice and even if it is crowded there's still seating available depending how big your party is. The drinks were buzzing and refreshing and the pizza was to die for the perfect sharing size. The bolognese pasta was amazing with the fresh pasta and flavorful sauce it is easily one of the best pasta dishes I have had in the city. Already craving to go back there already!!",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "ufcDyrbT1_dbhud2f2Ssnw",
"displayName": "Jamillah S.",
"displayLocation": "Seattle, WA",
"reviewCount": 24,
"friendCount": 9,
"businessPhotoCount": 55
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-07T07:31:11Z",
"businessPhotos": [
{
"encid": "vN0pNZ_yT1j6CB3S_YFN5g",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/vN0pNZ_yT1j6CB3S_YFN5g/348s.jpg",
"caption": "Von's Cacio e Pepe Pizza",
"helpfulCount": 0
},
{
"encid": "BQ2YaOwPD5fCEBN3OEL8bA",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/BQ2YaOwPD5fCEBN3OEL8bA/348s.jpg",
"caption": "Happy Hour Drinks",
"helpfulCount": 0
},
{
"encid": "GCQPHjfe0dQccSv0x6K_HA",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/GCQPHjfe0dQccSv0x6K_HA/348s.jpg",
"caption": "Bolognese",
"helpfulCount": 0
}
],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "IxfvB53euXFm7MQoOIpcOw",
"text": {
"full": "Food? Well, I'll get back to that. \n\nAmbiance : located in the heart of a super high traffic area. perfect for folks who may not know any better or looking for something convenient.\n\nService? Keep on reading . . . \n\nI went in and was told it'd be a 30 minute wait. Sure. Normally that would be a NO but today, that's okay. \n\n23 minutes come and go, people are leaving while other people are walking up and getting seated, so I ask, how much longer?\n\nI was told, you've only waited 23 minutes?!?! ***pfff*** it'll just be another 15 more minutes or so.\n\nNO.\n\nHell to the NO. Get over yourself. I get you think you're hot shit for working here but come the fuck on and at least try to pretend you know how to do your job. \n\nWe bounced.\n\nSo back to the food, I wouldn't know. And I doubt I ever will. \n\nPeace.",
"language": "en"
},
"rating": 1,
"feedback": {
"coolCount": 5,
"funnyCount": 2,
"usefulCount": 6
},
"author": {
"encid": "vRjVhl3ONG2GfWY4NXJZbQ",
"displayName": "Dan B.",
"displayLocation": "San Francisco, CA",
"reviewCount": 724,
"friendCount": 4997,
"businessPhotoCount": 768
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-06T04:36:14Z",
"businessPhotos": [
{
"encid": "EFeTHGiOieefF5xQqyTivg",
"photoUrl": "https://s3-media0.fl.yelpcdn.com/bphoto/EFeTHGiOieefF5xQqyTivg/348s.jpg",
"caption": null,
"helpfulCount": 0
}
],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 6
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 1
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 6
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 8
}
]
},
{
"encid": "Udg0IWdhVThkKICMM99AbA",
"text": {
"full": "This is an incredible place in Seattle. The vibes are cool, the homemade pasta was delicious, and our server, Justin, was helpful & knowledgable. My mushroom pizza was delicious and so was my husband's pasta dish. I will say I felt everything needed salt, which was the only downfall really. Overall, very good lunch!",
"language": "en"
},
"rating": 4,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "Wz8gCXKRDa5MXA4Nah-zjA",
"displayName": "Brittany D.",
"displayLocation": "Salem, OR",
"reviewCount": 3,
"friendCount": 0,
"businessPhotoCount": 3
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-06T02:54:22Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}
]
},
{
"encid": "t64oHy6S7I2y0TxYggoVHQ",
"text": {
"full": "Awesome food. Big portions. Amazing staff. We had Cece as our waiter, and her service couldn't have been better. Great menu recommendations and made our kids feel like queens! Would definitely come here again.",
"language": "en"
},
"rating": 5,
"feedback": {
"coolCount": 0,
"funnyCount": 0,
"usefulCount": 0
},
"author": {
"encid": "DNb6HhQOR1F_awvFEeYslQ",
"displayName": "Damien G.",
"displayLocation": "Woodbridge, VA",
"reviewCount": 4,
"friendCount": 0,
"businessPhotoCount": 0
},
"business": {
"encid": "Lw7NmZ3j-WEye97ywEmkXQ",
"alias": "vons-1000-spirits-seattle-4",
"name": "Von's 1000 Spirits"
},
"createdAt": "2025-08-04T23:06:33Z",
"businessPhotos": [],
"businessVideos": [],
"availableReactions": [
{
"displayText": "Helpful",
"reactionType": "HELPFUL",
"count": 0
},
{
"displayText": "Thanks",
"reactionType": "THANKS",
"count": 0
},
{
"displayText": "Love this",
"reactionType": "LOVE_THIS",
"count": 0
},
{
"displayText": "Oh no",
"reactionType": "OH_NO",
"count": 0
}