-
Notifications
You must be signed in to change notification settings - Fork 99
/
products.json
2094 lines (2094 loc) · 82.5 KB
/
products.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
[
{
"product": {
"availabilityStatus": "IN_STOCK",
"averageRating": 4.6,
"brand": "SAMSUNG",
"shortDescription": "<p>True-to-life color. Effortless connectivity. Dazzling 4K value. Samsung Crystal UHD is worth a look (and more). Effortlessly access TV shows, movies and ambient content using the Samsung Smart Hub, or find a range of great games on the Samsung Gaming Hub.(High speed internet connection, additional gaming service subscriptions and compatible controller required.) Enjoy content even more clear than it was created as its upgraded to 4K resolution. Color and contrast are also improved with our PurColor and Mega Contrast technologies that instantly analyze and adjust what you see on screen. As all the visual details shine through, you'll be surrounded by 3D sound that moves with the action, engaging all your senses.</p>",
"id": "17CX9Y890LSZ",
"imageInfo": {
"allImages": [
{
"id": "EFC8E65387484F189FFB27DCF0C31C25",
"url": "https://i5.walmartimages.com/seo/SAMSUNG-75-Class-CU7000B-Crystal-UHD-4K-Smart-Television-UN75CU7000BXZA_76061f73-bf65-4f71-934a-c42e5ffa8338.9fd15e6bb578750ebdde8027bfdd3bdc.jpeg",
"zoomable": true
},
{
"id": "DCEE79EC3EB243DEAA462379F4906213",
"url": "https://i5.walmartimages.com/asr/b4ea3cc9-393d-48e4-90af-6d694c40dc29.0f5c8a778813028f9a39721cfd52fefe.jpeg",
"zoomable": true
},
{
"id": "E1DFD22389414A10912A5F04A68B8DD1",
"url": "https://i5.walmartimages.com/asr/06671dcd-1d93-4e3e-b21c-357a921f4cae.236ad3e2f65318b7be9f4dbc64511a63.jpeg",
"zoomable": true
},
{
"id": "83B03409440D4BD58EBEED2ACEFEFF90",
"url": "https://i5.walmartimages.com/asr/b915d336-be63-4f18-b4cd-8f569317b7bb.4d001565868127b4442b04809a33f1ae.jpeg",
"zoomable": true
},
{
"id": "2EA3B70047C841EF91A83AD27014EA6D",
"url": "https://i5.walmartimages.com/asr/2c810c43-0f7e-4f0c-a5a7-f7e7fb2ec852.d24b4f0de1a30ce2dc847e4952a860a6.jpeg",
"zoomable": true
},
{
"id": "EDB0E33DE18D477B9BA576CDEB1305C2",
"url": "https://i5.walmartimages.com/asr/8960b3ec-41e3-48ad-9ed5-c24c92a18d95.5097cad3dc1e93cfda0d587e55bc6ddd.jpeg",
"zoomable": true
},
{
"id": "FF8B78045A55473493FDFEE66D5446E2",
"url": "https://i5.walmartimages.com/asr/67b08ddd-3c3f-4b19-89d5-48a8d4814b55.46acc36d5d2fb92f6737d9294a51c603.jpeg",
"zoomable": true
},
{
"id": "9ECCDFEA55154132826306C85AAB2AFD",
"url": "https://i5.walmartimages.com/asr/4ebd53c9-6ee0-4d88-9fba-b439ef4cdbe6.93bcbdef5a79b09805300bc7e1de5e69.jpeg",
"zoomable": true
},
{
"id": "3E64D3367450447C8538FFD19A1029B2",
"url": "https://i5.walmartimages.com/asr/a5efb5bd-fc9c-4740-acde-d85d19631484.ca9e8c197f1a1f052bbdc9ee07e1f681.jpeg",
"zoomable": true
},
{
"id": "34FEF8EA93E7430EB525D4DE26179CB5",
"url": "https://i5.walmartimages.com/asr/d8f6ca87-99ce-486d-9d4e-cb9a6a4030f9.8c41f53fbafc851ff3c8e5b23248c6c9.jpeg",
"zoomable": true
},
{
"id": "4058009CB0974667BF2491B7FE7DABBF",
"url": "https://i5.walmartimages.com/asr/e445a054-be6e-4e2e-a7bd-c5a33958fa05.6c72406faf0b043d21469944bcc825c6.jpeg",
"zoomable": false
},
{
"id": "A5E569DB3CD147AD97E912C782D5FA19",
"url": "https://i5.walmartimages.com/asr/6c2e57a3-d83d-45a0-8411-d69f611d9e3f.ad78bbb4ba09373477bf51c144ec949b.jpeg",
"zoomable": true
},
{
"id": "1624783B49AC469CBA737E2E20DDCAF7",
"url": "https://i5.walmartimages.com/asr/8d39ec85-e665-41d0-8103-b430fd4d7231.807141a1decd40d954b19e8a285e4918.jpeg",
"zoomable": true
},
{
"id": "3AAEA0B3BF17423E840147F6D819EA6C",
"url": "https://i5.walmartimages.com/asr/498f3c47-65b1-4b58-b1e1-0b49fc184efc.d2d6e2c028f7b531da4bc0b2e23aa974.jpeg",
"zoomable": true
}
],
"thumbnailUrl": "https://i5.walmartimages.com/seo/SAMSUNG-75-Class-CU7000B-Crystal-UHD-4K-Smart-Television-UN75CU7000BXZA_76061f73-bf65-4f71-934a-c42e5ffa8338.9fd15e6bb578750ebdde8027bfdd3bdc.jpeg"
},
"name": "SAMSUNG 75\" Class CU7000B Crystal UHD 4K Smart Television UN75CU7000BXZA",
"orderMinLimit": 1,
"orderLimit": 12,
"priceInfo": {
"priceDisplayCodes": {
"clearance": null,
"eligibleForAssociateDiscount": true,
"finalCostByWeight": null,
"priceDisplayCondition": null,
"reducedPrice": null,
"rollback": null,
"submapType": null
},
"currentPrice": {
"price": 667.99,
"priceString": "$667.99",
"variantPriceString": "$667.99",
"currencyUnit": "USD",
"bestValue": null,
"priceDisplay": "$667.99"
},
"wasPrice": null,
"comparisonPrice": null,
"unitPrice": null,
"savings": null,
"savingsAmount": null,
"secondaryOfferBoost": null,
"shipPrice": null,
"isPriceReduced": false,
"priceReducedDisplay": null,
"subscriptionPrice": null,
"priceRange": {
"minPrice": null,
"maxPrice": null,
"priceString": null,
"currencyUnit": null,
"denominations": null
},
"listPrice": null,
"capType": null,
"walmartFundedAmount": null,
"wPlusEarlyAccessPrice": null
},
"type": "Televisions"
},
"reviews": {
"averageOverallRating": 4.5618,
"aspects": [
{
"id": "2793",
"name": "Picture",
"score": 96,
"snippetCount": 374
},
{
"id": "1690",
"name": "Sound",
"score": 82,
"snippetCount": 139
},
{
"id": "48",
"name": "Price",
"score": 100,
"snippetCount": 104
},
{
"id": "155",
"name": "Quality",
"score": 97,
"snippetCount": 100
},
{
"id": "7756",
"name": "Gaming",
"score": 98,
"snippetCount": 87
},
{
"id": "178",
"name": "Colors",
"score": 96,
"snippetCount": 85
},
{
"id": "81",
"name": "Ease Of Installation",
"score": 99,
"snippetCount": 80
},
{
"id": "2255",
"name": "Apps",
"score": 92,
"snippetCount": 78
},
{
"id": "12",
"name": "Ease Of Use",
"score": 90,
"snippetCount": 65
},
{
"id": "2943",
"name": "Remote",
"score": 51,
"snippetCount": 63
},
{
"id": "13266",
"name": "Connection",
"score": 69,
"snippetCount": 59
},
{
"id": "28159",
"name": "Movies",
"score": 97,
"snippetCount": 58
},
{
"id": "658",
"name": "Screen",
"score": 81,
"snippetCount": 54
},
{
"id": "5360",
"name": "Phone",
"score": 96,
"snippetCount": 45
},
{
"id": "284",
"name": "Value",
"score": 100,
"snippetCount": 38
},
{
"id": "9905",
"name": "Streaming",
"score": 98,
"snippetCount": 36
},
{
"id": "21",
"name": "Size",
"score": 100,
"snippetCount": 34
},
{
"id": "582",
"name": "Appearance",
"score": 100,
"snippetCount": 31
},
{
"id": "1498",
"name": "Clarity",
"score": 97,
"snippetCount": 25
},
{
"id": "16610",
"name": "TV",
"score": 83,
"snippetCount": 24
},
{
"id": "18235",
"name": "Speakers",
"score": 46,
"snippetCount": 21
},
{
"id": "3",
"name": "Features",
"score": 96,
"snippetCount": 17
},
{
"id": "123",
"name": "Control",
"score": 71,
"snippetCount": 13
},
{
"id": "2208",
"name": "Videos",
"score": 100,
"snippetCount": 11
},
{
"id": "29437",
"name": "Channels",
"score": 86,
"snippetCount": 7
}
],
"lookupId": "17CX9Y890LSZ",
"customerReviews": [
{
"reviewId": "225626843",
"rating": 5,
"reviewSubmissionTime": "5/20/2023",
"reviewText": "[This review was collected as part of a promotion.] The 1st thing I thought when I saw my ps5 displayed on it was \"Wow, so much color and detail!\" My games have never looked better and it's hard to believe what I got for the price I paid. The motion rate does an incredible job at making games and movies all run very smooth and clear. The size of the 43\" TV is great for my personal use and it fits in my space very well. There's only one thing I wish they could update yet. I would appreciate if I could use the \"Picture Clarity\", aka motion enhancer in game mode. I have to turn off game mode to use it, which is not really any work at all, and my ps5 has very smooth graphics, but then there's the Nintendo switch that can sometimes only do 30 fps or so. I'd like to use all the game mode features including \"Picture Clarity\" if that was possible. It's a very smart TV too. Pairing my galaxy s22+ with this is super easy. It really does feel like a premium TV. The best that I've had so far! Good job, Samsung!",
"reviewTitle": "Beautiful Display",
"negativeFeedback": 0,
"positiveFeedback": 6,
"userNickname": "HenryH",
"media": null,
"photos": null,
"badges": null,
"clientResponses": [],
"syndicationSource": {
"logoImageUrl": "https://photos-us.bazaarvoice.com/photo/2/cGhvdG86YXR0cmlidXRpb25sb2dvMg/5a4b73f8-c1f3-4c18-924f-6ad343813ae4",
"contentLink": null,
"name": "Samsung US"
},
"snippetFromTitle": null
},
{
"reviewId": "225783721",
"rating": 5,
"reviewSubmissionTime": "5/26/2023",
"reviewText": "[This review was collected as part of a promotion.] Bought this Crystal UHD Smart TV andt loved it the moment I opened it. The design is slick. The display of screen is one of the best I've experienced if not the best. The tv stand is strong, it does not wiggle or move. Moving from different features/apps is smooth when using the remote. I really love the remote as it is easy to hold and use compare to other remote I've used. Overall, this is the best Smart TV I've bought. Loved it. Worth it.",
"reviewTitle": "Loved it. Worth it. Crystal UHD Smart TV 65\"",
"negativeFeedback": 0,
"positiveFeedback": 13,
"userNickname": "Savir21",
"media": null,
"photos": null,
"badges": null,
"clientResponses": [],
"syndicationSource": {
"logoImageUrl": "https://photos-us.bazaarvoice.com/photo/2/cGhvdG86YXR0cmlidXRpb25sb2dvMg/5a4b73f8-c1f3-4c18-924f-6ad343813ae4",
"contentLink": null,
"name": "Samsung US"
},
"snippetFromTitle": null
},
{
"reviewId": "317385139",
"rating": 5,
"reviewSubmissionTime": "9/12/2023",
"reviewText": "I love this smart tv it has a great picture no matter if you are watching a movie or playing a video game I would recommend that you look into getting one for yourself. I give it a 10 out of a 10",
"reviewTitle": "Tv is excellent buy.",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Crystal",
"media": null,
"photos": null,
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "324268166",
"rating": 5,
"reviewSubmissionTime": "11/17/2023",
"reviewText": "Love my tv, the first one I bought had a crack in the screen brought it back for replacement clean swap no issues. Good deal for 75”",
"reviewTitle": "75” dream",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Sergio",
"media": null,
"photos": null,
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "225685138",
"rating": 5,
"reviewSubmissionTime": "5/22/2023",
"reviewText": "[This review was collected as part of a promotion.] I use my TV for watching movies, streaming, sports and music.. The sound is great and can be turned up quite loud with no need for additional sound devices. The picture quality is great. There is a wide assortment of apps that can be installed and used on this device. Bally sports created a new app and within a couple of weeks. Casting my phone or laptop is really easy and good quality. My favorite feature is the ability to control the TV from my phone.",
"reviewTitle": "Great picture quality and numerous apps",
"negativeFeedback": 0,
"positiveFeedback": 4,
"userNickname": "SweetTT",
"media": null,
"photos": null,
"badges": null,
"clientResponses": [],
"syndicationSource": {
"logoImageUrl": "https://photos-us.bazaarvoice.com/photo/2/cGhvdG86YXR0cmlidXRpb25sb2dvMg/5a4b73f8-c1f3-4c18-924f-6ad343813ae4",
"contentLink": null,
"name": "Samsung US"
},
"snippetFromTitle": null
},
{
"reviewId": "322021041",
"rating": 5,
"reviewSubmissionTime": "10/27/2023",
"reviewText": "Upgraded to this 75 inch and couldn't be more happy about it. Feel like our own personal movie theater now.",
"reviewTitle": "So big!!",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Mai",
"media": null,
"photos": null,
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Affiliation",
"id": "Staff",
"contentType": "REVIEW",
"glassBadge": {
"id": "WalmartAssociate",
"text": "Walmart Associate"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "322325853",
"rating": 5,
"reviewSubmissionTime": "10/30/2023",
"reviewText": "I absolutely love my new tv !! It comes with Samsung tv for the life of the tv !! I will never go back to Vizio again!! Thank you Samsung!! Highly recommend!!",
"reviewTitle": "I absolutely love my new tv !!",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Katie",
"media": null,
"photos": null,
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "225854576",
"rating": 4,
"reviewSubmissionTime": "5/30/2023",
"reviewText": "[This review was collected as part of a promotion.] I've always loved Samsung products.. we try to stick to one brand in our home for cohesivity. Bought this TV about 2 weeks ago and so far so good. I used to stick to the 55 inch in my bedroom but now I've come back to the living room to check out the 70\". The TV has good visuals and good sound. The remote could be a little tricky to work especially the volume knows but with some practice you finally realize that if you press on the button it goes mute and you have to touch the volume by pushing it up or down.\n\nI watch movies and TV with the frame rates set to look normal because I don't like the soap opera effect and the picture quality is amazing. \n\nI'm still debating whether I need a sound bar or whether the TV will be fine on its own. The interface is very intuitive and the remote responds quickly to input. \n\nThe bezel on this tc is super thin so that you almost don't even notice it. So the focus is what you're watching not the tv .. I'd buy this TV all over again. \n\nWe mounted it and it gives my living room a much more cosy lived in vibe. I love it! Next up my watch!",
"reviewTitle": "Stellar television. Get it!",
"negativeFeedback": 0,
"positiveFeedback": 5,
"userNickname": "Renzpee",
"media": null,
"photos": null,
"badges": null,
"clientResponses": [],
"syndicationSource": {
"logoImageUrl": "https://photos-us.bazaarvoice.com/photo/2/cGhvdG86YXR0cmlidXRpb25sb2dvMg/5a4b73f8-c1f3-4c18-924f-6ad343813ae4",
"contentLink": null,
"name": "Samsung US"
},
"snippetFromTitle": null
},
{
"reviewId": "309345223",
"rating": 3,
"reviewSubmissionTime": "6/24/2023",
"reviewText": "Im sure this is a great TV but it was delivered damaged and i STILL havent received the replacement. I'm not understanding the delay.",
"reviewTitle": "Delay",
"negativeFeedback": 4,
"positiveFeedback": 8,
"userNickname": "Brandon",
"media": null,
"photos": null,
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Custom",
"id": "PrizeIncentive",
"contentType": "REVIEW",
"glassBadge": {
"id": "IncentivizedReview",
"text": "Incentivized Review"
}
}
],
"clientResponses": [
{
"date": null,
"department": "Samsung",
"logoImage": "https://s3.amazonaws.com/stratos-logos/logos/Samsung.png",
"name": null,
"response": "\nHi Brandon, I'm very sorry to hear that your CU7000 TV was delivered damaged and that you had to wait a long time for a replacement. If you are still experiencing issues, please give Samsung Customer Support a call at 1-800-SAMSUNG, 8 AM - 12 AM EST, seven days a week. Our LiveChat agents are also available by clicking on the ‘Support’ link on our website.~ Samsung Advisor\n "
}
],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "316567117",
"rating": 1,
"reviewSubmissionTime": "9/4/2023",
"reviewText": "This TV was damaged, the box had been retaped. The legs slot is broken, scratches all down the side. Looks like it may have been used.",
"reviewTitle": "Damaged TV",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Angela",
"media": null,
"photos": null,
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [
{
"date": null,
"department": "Samsung",
"logoImage": "https://s3.amazonaws.com/stratos-logos/logos/Samsung.png",
"name": null,
"response": "\nHi Angela, I'm sorry to hear about your experience receiving a damaged TV. I recommend reaching out to your local Walmart to help with a replacement. Should you need help or have any questions, please call us at 1-800-SAMSUNG, 8 AM - 12 AM EST, seven days a week. Or visit us on the Samsung website and click on the ‘Support’ link for:1) LiveChat2) Manuals, Software, & Warranty Info~ Samsung Advisor\n "
}
],
"syndicationSource": null,
"snippetFromTitle": null
}
],
"ratingValueFiveCount": 884,
"ratingValueFourCount": 139,
"ratingValueOneCount": 55,
"ratingValueThreeCount": 48,
"ratingValueTwoCount": 15,
"roundedAverageOverallRating": 4.6,
"topNegativeReview": {
"reviewId": "316567117",
"rating": 1,
"reviewSubmissionTime": "9/4/2023",
"userNickname": "Angela",
"negativeFeedback": 0,
"positiveFeedback": 0,
"reviewText": "This TV was damaged, the box had been retaped. The legs slot is broken, scratches all down the side. Looks like it may have been used.",
"reviewTitle": "Damaged TV",
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [
{
"date": null,
"department": "Samsung",
"logoImage": "https://s3.amazonaws.com/stratos-logos/logos/Samsung.png",
"name": null,
"response": "\nHi Angela, I'm sorry to hear about your experience receiving a damaged TV. I recommend reaching out to your local Walmart to help with a replacement. Should you need help or have any questions, please call us at 1-800-SAMSUNG, 8 AM - 12 AM EST, seven days a week. Or visit us on the Samsung website and click on the ‘Support’ link for:1) LiveChat2) Manuals, Software, & Warranty Info~ Samsung Advisor\n "
}
],
"syndicationSource": null,
"snippetFromTitle": null,
"media": null
},
"topPositiveReview": {
"reviewId": "322325853",
"rating": 5,
"reviewSubmissionTime": "10/30/2023",
"userNickname": "Katie",
"negativeFeedback": 0,
"positiveFeedback": 0,
"reviewText": "I absolutely love my new tv !! It comes with Samsung tv for the life of the tv !! I will never go back to Vizio again!! Thank you Samsung!! Highly recommend!!",
"reviewTitle": "I absolutely love my new tv !!",
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"syndicationSource": null,
"snippetFromTitle": null,
"clientResponses": [],
"media": null
},
"topProductMedia": null,
"totalMediaCount": 369,
"totalReviewCount": 1141
}
},
{
"product": {
"availabilityStatus": "IN_STOCK",
"averageRating": 4.5,
"brand": "Apple",
"shortDescription": "The Apple M1 chip redefines the 13-inch MacBook Pro. Featuring an 8-core CPU that flies through complex workflows in photography, coding, video editing, and more. Incredible 8-core GPU that crushes graphics-intensive tasks and enables super-smooth gaming. An advanced 16-core Neural Engine for more machine learning power in your favorite apps. Superfast unified memory for fluid performance. And the longest-ever battery life in a Mac at up to 20 hours. It?s Apple's most popular pro notebook. Way more performance and way more pro.",
"id": "4S6W6R1EX5D1",
"imageInfo": {
"allImages": [
{
"id": "CE850E309B9D4215B6EB3B3960D5B9BD",
"url": "https://i5.walmartimages.com/seo/Apple-MacBook-Air-with-Apple-M1-Chip-13-inch-8GB-RAM-256GB-SSD-Storage-Silver-Latest-Model_049f4d39-0d3d-401b-bec4-7219b3719b46.5a77cd4f5ea0ac00c4b93c57914306f8.jpeg",
"zoomable": false
},
{
"id": "A71E7D1A04A74E31A6E4B5A85A13331E",
"url": "https://i5.walmartimages.com/asr/07ebd7fd-d207-4a5a-b54a-5847ca5e06e8.99ec1831a690dca13d27e2618c5697ec.jpeg",
"zoomable": true
},
{
"id": "031D11EA308643F2A7C8033009880D5E",
"url": "https://i5.walmartimages.com/asr/91f1a504-2b04-4c5e-8fc9-202545e5abd1.1943195936d39ee9826729993a23ae29.jpeg",
"zoomable": true
},
{
"id": "7764A6B138F648FE9720A0B5D28B12C2",
"url": "https://i5.walmartimages.com/asr/7e33d01a-8b44-45f0-8ad5-ab19d938e86e.fe2ec531a92fc59c527609b3cc2f56a5.jpeg",
"zoomable": true
}
],
"thumbnailUrl": "https://i5.walmartimages.com/seo/Apple-MacBook-Air-with-Apple-M1-Chip-13-inch-8GB-RAM-256GB-SSD-Storage-Silver-Latest-Model_049f4d39-0d3d-401b-bec4-7219b3719b46.5a77cd4f5ea0ac00c4b93c57914306f8.jpeg"
},
"name": "Apple MacBook Air with Apple M1 Chip (13-inch, 8GB RAM, 256GB SSD Storage) - Silver (Latest Model)",
"orderMinLimit": 1,
"orderLimit": 19,
"priceInfo": {
"priceDisplayCodes": {
"clearance": null,
"eligibleForAssociateDiscount": null,
"finalCostByWeight": null,
"priceDisplayCondition": null,
"reducedPrice": null,
"rollback": null,
"submapType": null
},
"currentPrice": {
"price": 949,
"priceString": "$949.00",
"variantPriceString": "$949.00",
"currencyUnit": "USD",
"bestValue": null,
"priceDisplay": "$949.00"
},
"wasPrice": null,
"comparisonPrice": null,
"unitPrice": null,
"savings": null,
"savingsAmount": null,
"secondaryOfferBoost": null,
"shipPrice": null,
"isPriceReduced": false,
"priceReducedDisplay": null,
"subscriptionPrice": null,
"priceRange": {
"minPrice": null,
"maxPrice": null,
"priceString": null,
"currencyUnit": null,
"denominations": null
},
"listPrice": null,
"capType": null,
"walmartFundedAmount": null,
"wPlusEarlyAccessPrice": null
},
"type": "Laptop Computers"
},
"reviews": {
"averageOverallRating": 4.5405,
"aspects": [],
"lookupId": "31B5TLEBXOLJ",
"customerReviews": [
{
"reviewId": "308579322",
"rating": 5,
"reviewSubmissionTime": "6/16/2023",
"reviewText": "Perfect laptop for every day tasks. Battery lasts multiple days with moderate usage. I plan to do some light video and picture editing from drone footage, and I'm confident it will be up for the task.",
"reviewTitle": "Perfect Laptop",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Chris",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Custom",
"id": "PrizeIncentive",
"contentType": "REVIEW",
"glassBadge": {
"id": "IncentivizedReview",
"text": "Incentivized Review"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "321823801",
"rating": 5,
"reviewSubmissionTime": "10/25/2023",
"reviewText": "Received package quickly with no problems and am thrilled Walmart let's everyone use assure to help pay, thank you for that",
"reviewTitle": "Great experienxe",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Diana",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Custom",
"id": "PrizeIncentive",
"contentType": "REVIEW",
"glassBadge": {
"id": "IncentivizedReview",
"text": "Incentivized Review"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "309713596",
"rating": 5,
"reviewSubmissionTime": "6/29/2023",
"reviewText": "Screen is too small for my personal use",
"reviewTitle": null,
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Sergio",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "324134776",
"rating": 5,
"reviewSubmissionTime": "11/16/2023",
"reviewText": "Runs great, good quality computer",
"reviewTitle": "Great computer",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Elizabeth",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Custom",
"id": "PrizeIncentive",
"contentType": "REVIEW",
"glassBadge": {
"id": "IncentivizedReview",
"text": "Incentivized Review"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "314098798",
"rating": 5,
"reviewSubmissionTime": "8/12/2023",
"reviewText": "I think this is what we needed for online school. It's really nice.",
"reviewTitle": "I really like it",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": null,
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "308271566",
"rating": 5,
"reviewSubmissionTime": "6/11/2023",
"reviewText": "Fast shipping arrived on time",
"reviewTitle": "Great service",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Jaquon",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Custom",
"id": "IncentivizedReviewYes",
"contentType": "REVIEW",
"glassBadge": {
"id": "IncentivizedReview",
"text": "Incentivized Review"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "310715954",
"rating": 5,
"reviewSubmissionTime": "7/9/2023",
"reviewText": "Works wonderfully. I bought another brand and had to take it back.\nIm happy I had to because I love this one.\nI use it for mostly games.\nI was happywith the price. Well worth it for the quality.",
"reviewTitle": "Good purchase",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Louise",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "314207198",
"rating": 5,
"reviewSubmissionTime": "8/13/2023",
"reviewText": "This is my second Mac air. I really like that this slightly larger, but is still compact. It performs great. I would recommend it.",
"reviewTitle": null,
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Jaylene",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "323885853",
"rating": 4,
"reviewSubmissionTime": "11/14/2023",
"reviewText": "Very fast and shipped well",
"reviewTitle": "Great service",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Tom",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",
"contentType": "REVIEW",
"glassBadge": {
"id": "VerifiedPurchaser",
"text": "Verified Purchase"
}
},
{
"badgeType": "Custom",
"id": "PrizeIncentive",
"contentType": "REVIEW",
"glassBadge": {
"id": "IncentivizedReview",
"text": "Incentivized Review"
}
}
],
"clientResponses": [],
"syndicationSource": null,
"snippetFromTitle": null
},
{
"reviewId": "297758518",
"rating": 1,
"reviewSubmissionTime": "1/5/2023",
"reviewText": "the macbook is used, it is full of marks of use and it is clearly not the model described in the description, it is not the last model released! a lot of disappointment",
"reviewTitle": "product is used",
"negativeFeedback": 0,
"positiveFeedback": 0,
"userNickname": "Andre",
"media": [],
"photos": [],
"badges": [
{
"badgeType": "Custom",
"id": "VerifiedPurchaser",