-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts_final.json
More file actions
1730 lines (1730 loc) · 66.6 KB
/
Copy pathproducts_final.json
File metadata and controls
1730 lines (1730 loc) · 66.6 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
{
"products": [
{
"id": "product-001",
"name": "CeraVe Moisturizing Cream",
"brand": "CeraVe",
"category": "moisturizer",
"skinTypes": [
"dry",
"sensitive"
],
"concerns": [
"acne",
"dryness",
"sensitivity"
],
"priceRange": "budget",
"ingredients": [
"Ceramide",
"Hyaluronic Acid"
],
"averageRating": 3.8,
"sampleSize": 5,
"description": "A rich, quick-absorbing daily moisturizer formulated with three essential ceramides (1, 3, and 6-II) and hyaluronic acid. It utilizes patented Multivesicular Emulsion (MVE) technology for 24-hour time-released hydration. It is fragrance-free, dermatologist-developed, and designed to restore the skin's natural protective barrier. Suitable for face and body.",
"sourceUrl": "https://www.byrdie.com/review-of-cerave-moisturizing-cream-3013233",
"userReviews": [
{
"userName": "Jen Adkins",
"userName_citation": "https://www.byrdie.com/review-of-cerave-moisturizing-cream-3013233",
"reviewText": "CeraVe's Moisturizing Cream transformed my dry skin. After my first use of the cream, I was hooked. It is effective for sensitive skin, psoriasis, and eczema, noting it is gentle enough for babies.",
"reviewText_citation": "https://www.byrdie.com/review-of-cerave-moisturizing-cream-3013233",
"rating": 5,
"rating_citation": "https://www.byrdie.com/review-of-cerave-moisturizing-cream-3013233"
},
{
"userName": "Ashlynn",
"userName_citation": "https://simpleskincarescience.com/cerave-cream-review/",
"reviewText": "Literally life changing. It helped me realize malassezia-feeding ingredients were my issue rather than fatty alcohols.",
"reviewText_citation": "https://simpleskincarescience.com/cerave-cream-review/",
"rating": 5,
"rating_citation": "https://simpleskincarescience.com/cerave-cream-review/"
},
{
"userName": "Amy",
"userName_citation": "https://simpleskincarescience.com/cerave-cream-review/",
"reviewText": "Got breakouts all over my shoulders where I was patch testing it. They look like my typical fungal acne breakouts.",
"reviewText_citation": "https://simpleskincarescience.com/cerave-cream-review/",
"rating": 2,
"rating_citation": "https://simpleskincarescience.com/cerave-cream-review/"
}
]
},
{
"id": "product-002",
"name": "The Ordinary Niacinamide 10% + Zinc 1% Serum",
"brand": "The Ordinary",
"category": "serum",
"skinTypes": [
"dry",
"combination",
"oily"
],
"concerns": [
"acne",
"sensitivity",
"pores",
"pigmentation",
"dryness"
],
"priceRange": "midRange",
"ingredients": [
"Zinc Oxide",
"Niacinamide"
],
"averageRating": 4.8,
"sampleSize": 4,
"description": "A water-based serum with 10% Niacinamide and 1% Zinc PCA designed to target visible shine, enlarged pores, and textural irregularities. It helps reduce signs of congestion, visible sebum activity, and balances skin.",
"sourceUrl": "https://www.arelaxedgal.com/2021/11/ordinary-niacinamide-zinc-serum-review.html",
"userReviews": [
{
"userName": "Leah",
"userName_citation": "https://www.arelaxedgal.com/2021/11/ordinary-niacinamide-zinc-serum-review.html",
"reviewText": "I love it! My skin no longer produces oil as quickly, reducing the need for blotting. Pores are less visible, and scars/dark spots fade more quickly. Breakouts shrink faster when used as a spot treatment.",
"reviewText_citation": "https://www.arelaxedgal.com/2021/11/ordinary-niacinamide-zinc-serum-review.html",
"rating": 5,
"rating_citation": "https://www.arelaxedgal.com/2021/11/ordinary-niacinamide-zinc-serum-review.html"
},
{
"userName": "Laura Kemp",
"userName_citation": "https://www.livethatglow.com/the-ordinary-niacinamide-and-zinc-serum-review/",
"reviewText": "Initial use caused small bumps and dryness, which resolved when reduced to every other night. Resulted in smoother texture, increased hydration, and fewer breakouts, though it did not blur old acne scars or significantly increase radiance.",
"reviewText_citation": "https://www.livethatglow.com/the-ordinary-niacinamide-and-zinc-serum-review/",
"rating": 4,
"rating_citation": "https://www.livethatglow.com/the-ordinary-niacinamide-and-zinc-serum-review/"
},
{
"userName": "Anonymous Customer",
"userName_citation": "https://www.livethatglow.com/the-ordinary-niacinamide-and-zinc-serum-review/",
"reviewText": "Experienced a seriously noticeable difference in redness around period-related acne after two days. After three weeks, skin felt softer and pores appeared improved.",
"reviewText_citation": "https://www.livethatglow.com/the-ordinary-niacinamide-and-zinc-serum-review/",
"rating": 5,
"rating_citation": "https://www.livethatglow.com/the-ordinary-niacinamide-and-zinc-serum-review/"
}
]
},
{
"id": "product-003",
"name": "Olay Cleansing Melts (+ Vitamin C)",
"brand": "Olay",
"category": "cleanser",
"skinTypes": [
"normal"
],
"concerns": [
"pigmentation"
],
"priceRange": "midRange",
"ingredients": [
"Vitamin C"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Waterless cleansing tabs that foam with water; contains Vitamin C to brighten and reduce oiliness.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Brian Underwood",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "They are the perfect amount of product and great for travel because they are waterless.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-004",
"name": "SkinCeuticals C E Ferulic",
"brand": "SkinCeuticals",
"category": "serum",
"skinTypes": [
"normal"
],
"concerns": [
"pigmentation"
],
"priceRange": "luxury",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Daytime antioxidant serum with Vitamins C and E. Neutralizes free radical damage from ozone and UV for up to 72 hours while plumping and brightening the skin.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Industry Voter",
"userName_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"reviewText": "It's impactful, ingredient-focused skin care storytelling. Clinical testing and before-and-afters show strong reason to believe in the results.",
"reviewText_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"rating": 5,
"rating_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/"
}
]
},
{
"id": "product-005",
"name": "La Roche-Posay Anthelios UV Hydra Sunscreen SPF 50",
"brand": "La Roche-Posay",
"category": "sunscreen",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "midRange",
"ingredients": [
"Hyaluronic Acid"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Non-greasy chemical sunscreen with hyaluronic acid.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Dr. Mina Amin",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "It blends easily without pilling and provides an invisible finish.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-006",
"name": "Drunk Elephant T.L.C. Sukari Babyfacial",
"brand": "Drunk Elephant",
"category": "mask",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "premium",
"ingredients": [
"AHA",
"BHA"
],
"averageRating": 0,
"sampleSize": 0,
"description": "High-potency 25% AHA/2% BHA mask with chickpea flour and pumpkin ferment.",
"sourceUrl": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"userReviews": []
},
{
"id": "product-007",
"name": "Peach & Lily Ginger Melt Oil Cleanser",
"brand": "Peach & Lily",
"category": "cleanser",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Cleansing oil with ginger root extract, grapeseed oil, and sunflower seed oil that removes makeup and sunscreen while boosting moisture.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Sarah Kinonen",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "This silky elixir is, by far, the best part of my double-cleanse routine.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-008",
"name": "Differin Gel",
"brand": "Differin",
"category": "serum",
"skinTypes": [
"normal"
],
"concerns": [
"acne",
"pores"
],
"priceRange": "budget",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Adapalene retinoid treatment that prevents clogged pores and acne without inflammation.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Lexi Herrick",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "This might be the most effective over-the-counter acne treatment I've ever used. It's an absolute powerhouse at combating breakouts and keeping cystic flare-ups at bay.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-009",
"name": "Rhode Glazing Milk",
"brand": "Rhode",
"category": "toner",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [
"Ceramide",
"Zinc Oxide"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Milky essence with ceramides and a trio of minerals (magnesium, zinc, copper) to bolster the moisture barrier.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Jessica Cruel",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "It's just as good as that Hailey Bieber Erewhon smoothie, but with actual skin benefits. I'm lactose intolerant, but this is my daily dose of milk for a healthy glow.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-010",
"name": "Hero Cosmetics Mighty Patch Original",
"brand": "Hero Cosmetics",
"category": "other",
"skinTypes": [
"oily"
],
"concerns": [
"acne"
],
"priceRange": "budget",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Hydrocolloid pimple patches that flatten whiteheads and extract impurities overnight.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Jesa Marie Calaor",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "They stick securely onto my skin for hours (no matter how oily I might get) and work quickly to flatten my pimple.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-011",
"name": "Lancôme Rénergie H.C.F. Triple Serum Eye",
"brand": "Lancôme",
"category": "serum",
"skinTypes": [
"normal"
],
"concerns": [
"pigmentation",
"aging"
],
"priceRange": "luxury",
"ingredients": [
"Niacinamide",
"Peptides"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Triple-chamber serum with a snake venom-inspired peptide, niacinamide, and vitamin F for firming and brightening.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Sarah Kinonen",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "Creates the look and feel of tighter, lifted undereyes. I've started using this treatment every morning and night to combat tired undereyes.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-012",
"name": "Tula Skincare Protect + Glow Daily Sunscreen Gel Broad Spectrum SPF 30",
"brand": "Tula Skincare",
"category": "moisturizer",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "midRange",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Chemical gel sunscreen with ginger root to protect against UV and blue light damage.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Jessica Cruel",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "It has the consistency of a golden whip and melts into a healthy glow on the skin. When I say glowy, I mean high-beam gorgeousness.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-013",
"name": "CeraVe Acne Foaming Cream Cleanser",
"brand": "CeraVe",
"category": "cleanser",
"skinTypes": [
"dry"
],
"concerns": [
"acne",
"dryness"
],
"priceRange": "budget",
"ingredients": [
"Benzoyl Peroxide"
],
"averageRating": 5,
"sampleSize": 2,
"description": "4% benzoyl peroxide cleanser for face and body to battle acne bacteria.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Sabrina Talbert",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "I use it as a go-to cleanser after sweating to handle folliculitis.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
},
{
"userName": "Lexi Herrick",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "Instead of drying out my skin post-wash, it gives a thorough clean paired with a smooth and soft texture.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-014",
"name": "Laneige Lip Sleeping Mask",
"brand": "Laneige",
"category": "serum",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Overnight lip treatment with berry fruit complex and shea butter.",
"sourceUrl": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"userReviews": [
{
"userName": "Mary Berry",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "It deeply hydrates and leaves lips soft and supple with a natural shine.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-015",
"name": "La Mer Crème de La Mer",
"brand": "La Mer",
"category": "moisturizer",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "luxury",
"ingredients": [],
"averageRating": 0,
"sampleSize": 0,
"description": "Iconic luxury cream powered by proprietary Miracle Broth and lime tea.",
"sourceUrl": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"userReviews": []
},
{
"id": "product-016",
"name": "Neutrogena Hydro Boost Water Gel",
"brand": "Neutrogena",
"category": "moisturizer",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "budget",
"ingredients": [
"Hyaluronic Acid"
],
"averageRating": 0,
"sampleSize": 0,
"description": "Lightweight gel moisturizer featuring hyaluronic acid.",
"sourceUrl": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"userReviews": []
},
{
"id": "product-017",
"name": "Supergoop! Glow Screen SPF 40",
"brand": "Supergoop",
"category": "sunscreen",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "midRange",
"ingredients": [
"Hyaluronic Acid",
"Peptides"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Glowing sunscreen with sea lavender, cocoa peptides, and hyaluronic acid.",
"sourceUrl": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"userReviews": [
{
"userName": "Multiple Users",
"userName_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"reviewText": "Based on 12,000+ five-star reviews.",
"reviewText_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"rating": 5,
"rating_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/"
}
]
},
{
"id": "product-018",
"name": "Vintner's Daughter Active Botanical Serum",
"brand": "Vintner's Daughter",
"category": "serum",
"skinTypes": [
"normal"
],
"concerns": [],
"priceRange": "luxury",
"ingredients": [],
"averageRating": 5,
"sampleSize": 2,
"description": "Multi-beneficial whole-plant oil serum.",
"sourceUrl": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"userReviews": [
{
"userName": "Industry Voter",
"userName_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"reviewText": "This makes anyone's skin look and feel better — there's absolutely nothing like it. April is devoted to making the best product as opposed to scaling.",
"reviewText_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"rating": 5,
"rating_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/"
},
{
"userName": "Industry Voter",
"userName_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"reviewText": "It's a serum; it's an oil. Lots of companies have tried to copy; no one has come close.",
"reviewText_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/",
"rating": 5,
"rating_citation": "https://wwd.com/beauty-industry-news/beauty-features/lists/greatest-skin-care-products-1236205048/"
}
]
},
{
"id": "product-019",
"name": "Laneige Radian-C Cream",
"brand": "Laneige",
"category": "moisturizer",
"skinTypes": [
"dry"
],
"concerns": [
"pigmentation",
"dryness",
"aging"
],
"priceRange": "midRange",
"ingredients": [
"Vitamin C"
],
"averageRating": 4.0,
"sampleSize": 1,
"description": "A Vitamin C and E cream designed to hydrate, visibly brighten skin, and treat dark spots and dullness.",
"sourceUrl": "https://ashley.reviews/spring-2024-quarterly-product-review/",
"userReviews": [
{
"userName": "Ashley",
"userName_citation": "https://ashley.reviews/spring-2024-quarterly-product-review/",
"reviewText": "I noticed brighter and healthier-looking skin, though it did not specifically reduce pigmentation. It is a thick cream that leaves a slight residue and is less moisturizing than my standard moisturizer. I was frustrated with the packaging, specifically a ridge that makes it hard to retrieve all the product and a loose plastic applicator that is easy to lose.",
"reviewText_citation": "https://ashley.reviews/spring-2024-quarterly-product-review/",
"rating": 4,
"rating_citation": "https://ashley.reviews/spring-2024-quarterly-product-review/"
}
]
},
{
"id": "product-020",
"name": "Peace Out Early Stage Acne Dots",
"brand": "Peace Out",
"category": "other",
"skinTypes": [
"dry"
],
"concerns": [
"acne",
"dryness",
"pores"
],
"priceRange": "midRange",
"ingredients": [
"Salicylic Acid"
],
"averageRating": 1.0,
"sampleSize": 1,
"description": "Acne-fighting pimple patches with Salicylic Acid designed to target blemishes before they surface.",
"sourceUrl": "https://ashley.reviews/spring-2024-quarterly-product-review/",
"userReviews": [
{
"userName": "Ashley",
"userName_citation": "https://ashley.reviews/spring-2024-quarterly-product-review/",
"reviewText": "The product made my acne worse. After leaving a dot on overnight, I woke up with a red, scaly patch of dry skin the size of the dot, while the clogged pore remained underneath.",
"reviewText_citation": "https://ashley.reviews/spring-2024-quarterly-product-review/",
"rating": 1,
"rating_citation": "https://ashley.reviews/spring-2024-quarterly-product-review/"
}
]
},
{
"id": "product-021",
"name": "Dr. Dennis Gross Alpha Beta Extra Strength Daily Peel",
"brand": "Dr. Dennis Gross",
"category": "exfoliant",
"skinTypes": [
"normal"
],
"concerns": [
"acne",
"pores"
],
"priceRange": "premium",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Two-step peel with seven acids, resveratrol, and green tea.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Mary Berry",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "It gently sloughs dead cells, refines pores, and battles breakouts.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-022",
"name": "Drunk Elephant Virgin Marula Luxury Facial Oil",
"brand": "Drunk Elephant",
"category": "serum",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "premium",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Pure marula oil to lock in moisture.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Dr. Mina Amin",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "It is non-irritating and superior for addressing dryness.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-023",
"name": "Tula Skincare 24-7 Moisture Hydrating Day & Night Cream",
"brand": "Tula Skincare",
"category": "moisturizer",
"skinTypes": [
"dry",
"combination",
"oily"
],
"concerns": [
"dryness",
"aging"
],
"priceRange": "midRange",
"ingredients": [
"Peptides"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Hydrating cream with peptides and a probiotic complex for firmness and tone.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Danielle Jackson",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "My all-time favorite; adds moisture without making combination skin feel oily.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-024",
"name": "Shani Darden Skin Care Moisture Boost Plumping Serum",
"brand": "Shani Darden",
"category": "serum",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [
"Glycerin"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Hydrating serum with glycerin and snow mushroom to keep skin plump for hours.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Jennifer Hussein",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "It has a gel-like texture upon application but immediately seeps into your skin without feeling sticky.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-025",
"name": "EADEM Cashmere Peel Gentle Exfoliating AHA Toner",
"brand": "EADEM",
"category": "toner",
"skinTypes": [
"dry"
],
"concerns": [
"acne",
"pigmentation",
"dryness"
],
"priceRange": "midRange",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Liquid exfoliant with lactic, azelaic, and tranexamic acids plus colloidal oatmeal to reduce discoloration.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Talia Gutierrez",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "This one has practically eliminated the cystic acne breakout along my jawline without zapping too much moisture.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-026",
"name": "Caudalie Beauty Elixir",
"brand": "Caudalie",
"category": "serum",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [],
"averageRating": 5,
"sampleSize": 1,
"description": "Facial mist featuring grape extract and essential oils used to refresh skin and set makeup.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Kassidy Silva",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "A quick spritz every few hours keeps my skin dewy and hydrated without any of my makeup moving out of place.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-027",
"name": "Dr. Dennis Gross Skincare Vitamin C Lactic 15% Vitamin C Firm & Bright Serum",
"brand": "Dr. Dennis Gross",
"category": "serum",
"skinTypes": [
"sensitive"
],
"concerns": [
"sensitivity",
"pigmentation",
"aging"
],
"priceRange": "premium",
"ingredients": [
"Lactic Acid"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Antioxidant serum with L-ascorbic and lactic acids to smooth wrinkles and fade discoloration.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Annie Blay",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "I still love that it's lightweight, effective, and my sensitive skin can tolerate it.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-028",
"name": "Aestura Atobarrier 365 Lotion",
"brand": "Aestura",
"category": "moisturizer",
"skinTypes": [
"dry"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [
"Ceramide"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Lightweight K-beauty lotion for heavy-duty moisture barrier fortification using ceramides.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Sarah Hoffmann",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "It's lightweight but works like a much heavier formula. It kept my skin plump and hydrated through months of using retinol in dry weather.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-029",
"name": "Matter of Fact Maximalist Age-Defying Moisturizer",
"brand": "Matter of Fact",
"category": "moisturizer",
"skinTypes": [
"dry",
"combination"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [
"Niacinamide",
"Hyaluronic Acid",
"Peptides"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Rich cream containing peptides, niacinamide, bakuchiol, and hyaluronic acid.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Sarah Han",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "This is a great night cream for the colder months when my combination skin craves extra moisture and cushioning. My skin looks so fresh and healthy the next morning.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-030",
"name": "Blue Lagoon Skincare Mineral Mask",
"brand": "Blue Lagoon",
"category": "serum",
"skinTypes": [
"dry"
],
"concerns": [
"dryness",
"pores"
],
"priceRange": "midRange",
"ingredients": [
"Glycerin"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Hydrating mask with electrolyte-rich geothermal water, aloe, glycerin, and jojoba oil.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Jenny Bailly",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "I put it on at the beginning of a 20-hour flight to Singapore and I swear my skin was glowier when I landed than it was at takeoff.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-031",
"name": "Dermalogica Daily Microfoliant",
"brand": "Dermalogica",
"category": "other",
"skinTypes": [
"sensitive"
],
"concerns": [
"pigmentation"
],
"priceRange": "midRange",
"ingredients": [
"AHA",
"Salicylic Acid"
],
"averageRating": 5,
"sampleSize": 1,
"description": "Rice-based exfoliating powder infused with AHAs, salicylic acid, and papaya enzymes to boost brightness.",
"sourceUrl": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"userReviews": [
{
"userName": "Annie Blay",
"userName_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"reviewText": "This gentle scrub was totally worth it every time. It buffs away dead skin cells while the blend of acids brightens and evens out my skin tone.",
"reviewText_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024",
"rating": 5,
"rating_citation": "https://www.allure.com/story/best-of-beauty-skin-care-product-winners-2024"
}
]
},
{
"id": "product-032",
"name": "La Roche-Posay Facial Moisturizer Toleriane Double Repair",
"brand": "La Roche-Posay",
"category": "serum",
"skinTypes": [
"dry",
"oily"
],
"concerns": [
"dryness"
],
"priceRange": "midRange",
"ingredients": [
"Ceramide",
"Niacinamide"
],
"averageRating": 5,
"sampleSize": 2,
"description": "Oil-free moisturizer with ceramides, thermal water, and niacinamide for shine control.",
"sourceUrl": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"userReviews": [
{
"userName": "Dr. Wallace Nozile",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "Recommend it for all-day shine control and moisture retention.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
},
{
"userName": "Dr. Mina Amin",
"userName_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"reviewText": "Recommend it for all-day shine control and moisture retention.",
"reviewText_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/",
"rating": 5,
"rating_citation": "https://www.womenshealthmag.com/beauty/a61976001/best-skincare-products-2024/"
}
]
},
{
"id": "product-033",
"name": "Paula's Choice Skin Perfecting BHA 2% Liquid Exfoliant",
"brand": "Paula's",
"category": "exfoliant",
"skinTypes": [
"normal"
],
"concerns": [
"pores"