-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.js
12260 lines (11238 loc) · 715 KB
/
db.js
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
export const wedding= [
{
"image": "https://images.ctfassets.net/5de70he6op10/6UM8JOOj46gxiEn1rfknx8/f728817179efa7f0d756b84e587a966a/070822_WeddingDressGateway_LS_01.jpg?w=2882&q=80&fm=webp",
"name": "Wedding Guest Dresses",
"details": "When it's time to say yes to a fabulous wedding guest dress, there's only Anthropologie. From black tie galas to backyard gatherings, we offer one-of-a-kind occasionwear fit for every dress code and destination. Read on to find the (plus-) one you'll adore forevermore.",
"id": 26
},
{
"image": "https://images.ctfassets.net/5de70he6op10/39stzwq85cKF8m7lMsnmE4/b72d4915a2c564b7916ae0cfb093584c/070822_WeddingDressGateway_LS_02.jpg?w=1308&q=80&fm=webp",
"name": "Black Tie Dresses",
"details": "Celebrating in formal fashion? Consider us your premier dresstination. Epitomize elegance and glamour at every fête with our stunning selection of black tie wedding guest dresses.",
"id": 27
},
{
"image": "https://images.ctfassets.net/5de70he6op10/1mKBYNN3Bg97eIHSkwNJ6d/185747de3dff4b56f94daa2c16bc8422/070822_WeddingDressGateway_LS_03.jpg?w=1308&q=80&fm=webp",
"name": "Cocktail Dresses",
"details": "Semi-formal but fully fabulous – cocktail attire weddings present the perfect opportunity to wear what suits you best, from sleek, satin maxi dresses to flirty, flouncy mini dresses to (yes, even) jumpsuits and separates.",
"id": 28
},
{
"image": "https://images.ctfassets.net/5de70he6op10/1H7wMy7J14O6JQTihAaIoZ/37996ce17fb33da1a336f146252f77f6/070822_WeddingDressGateway_LS_04.jpg?w=1308&q=80&fm=webp",
"name": "Casual Dresses",
"details": "Our tried-and-true rule for a casual wedding? Don't overthink it! For intimate backyard gatherings and city hall nuptials, a versatile, daytime-appropriate maxi or midi dress will look the part – and live happily ever after in your closet long after vows are exchanged",
"id": 29
},
{
"image": "https://images.ctfassets.net/5de70he6op10/4zyQVIYpKRcYQAtu71VBRj/743309abf4ef1cb470c54f7106780c0a/070822_WeddingDressGateway_LS_05.jpg?w=1308&q=80&fm=webp",
"name": "Beach Dresses",
"details": "There's nothing quite like a romantic destination wedding. Our advice: Lean into tropical prints and saturated shades that reflect the natural beauty of the locale, and consider lightweight fabrics to ensure all-day comfort in any weather.",
"id": 30
},
{
"image": "https://images.ctfassets.net/5de70he6op10/4zyQVIYpKRcYQAtu71VBRj/743309abf4ef1cb470c54f7106780c0a/070822_WeddingDressGateway_LS_05.jpg?w=1308&q=80&fm=webp",
"name": "Beach Dresses",
"details": "There's nothing quite like a romantic destination wedding. Our advice: Lean into tropical prints and saturated shades that reflect the natural beauty of the locale, and consider lightweight fabrics to ensure all-day comfort in any weather.",
"id": 31
},
{
"image": "https://images.ctfassets.net/5de70he6op10/1mKBYNN3Bg97eIHSkwNJ6d/185747de3dff4b56f94daa2c16bc8422/070822_WeddingDressGateway_LS_03.jpg?w=1308&q=80&fm=webp",
"name": "Cocktail Dresses",
"details": "Semi-formal but fully fabulous – cocktail attire weddings present the perfect opportunity to wear what suits you best, from sleek, satin maxi dresses to flirty, flouncy mini dresses to (yes, even) jumpsuits and separates.",
"id": 32
}
];
export const casual= [
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_063_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_063_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "MAGENTA",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 33
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_050_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_050_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"details": "Meet the Marais Printed Chiffon Maxi Dress, one of our bestselling dresses, ever. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline.",
"color": "PURPLE",
"name": "The Marais Printed Chiffon Maxi Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 33
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_030_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_030_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "GREEN",
"name": "The Somerset Maxi Dress: Velvet Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 34
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130264840023_038_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130264840023_038_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "GREEN MOTIF",
"details": "Style No. 4130264840023; Color Code: 038",
"name": "By Anthropologie Mini Tunic Dress",
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"price": 148,
"id": 35
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/79399986_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/79399986_001_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 79399986; Color Code: 001",
"name": "Daily Practice by Anthropologie Ruched Dress",
"price": 128,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 36
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/78196615_011_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/78196615_011_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "IVORY",
"details": "Style No. 78196615; Color Code: 011",
"name": "By Anthropologie Preppy Shirt Dress",
"price": 98,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 37
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/78965555_031_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/78965555_031_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MOSS",
"details": "Style No. 78965555; Color Code: 031",
"name": "Daily Practice by Anthropologie Hooded Dress",
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"price": 82.6,
"id": 38
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/79260527_031_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/79260527_031_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MOSS",
"details": "Style No. 79260527; Color Code: 031",
"name": "Daily Practice by Anthropologie The Elle Set",
"price": 168,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 39
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130259830212_015_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130259830212_015_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "NEUTRAL MOTIF",
"details": "Easy to wear, easy to love is the motto of the Anthropologie exclusive line Cloth & Stone. Each piece begins with an effortless silhouette, before being imbued with personal touches such as specialty washes, rich textures, and seasonal hues.",
"name": "Cloth & Stone Plaid Mini Shirtdress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 40
},
{
"details": "Meet the Marais Maxi Dress, one of our bestselling dresses, ever, updated with delicate metallic flowers. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline.",
"color": " LIGHT BLUE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210121_048_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210121_048_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "he Marais Chiffon Maxi Dress: Shine Edition",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 41
},
{
"details": "",
"color": "CRIMSON",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060100_096_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060100_096_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "By Anthropologie Plissé Halter Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 42
},
{
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "GREEN MOTIF",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_038_b16?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_038_b3?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Somerset Maxi Dress: Velvet Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 43
},
{
"details": "",
"color": "BLACK MOTIF",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060103_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060103_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 44
},
{
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "TURQUOISE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_046_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_046_b15?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 45
},
{
"details": "Meet the Marais Printed Chiffon Maxi Dress, one of our bestselling dresses, ever. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline",
"color": "BLACK & WHITE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_018_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_018_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Marais Printed Chiffon Maxi Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 46
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130264840021_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130264840021_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK MOTIF",
"details": "",
"name": "By Anthropologie Ruffled Tunic Dress",
"price": 148,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 47
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130615360010_060_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130615360010_060_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "RED",
"details": "",
"name": "Dhruv Kapoor Smocked Dress",
"price": 198,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 48
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130464030202_074_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130464030202_074_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MAIZE",
"details": "In 2010, New Yorker Daniel Saponaro launched Hutch, a contemporary womenswear brand recognized for garments that are equally easy and luxe. Emphasizing timeless sophistication over trend, the label's defined aesthetic showcases Saponaro's love of vibrant colors, conceptual prints, and feminine tailoring in every made-for-you piece.",
"name": "Hutch Velvet Wrap Dress",
"price": 198,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 49
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130456940045_038_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130456940045_038_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "GREEN MOTIF",
"name": "Verb by Pallavi Singhee Smocked Corset Dress",
"price": 298,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"details": "",
"id": 50
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130348690199_060_c14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130348690199_060_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "RED",
"details": "The name Maeve references a purple flower, a Greek goddess, and a famously beautiful Irish warrior queen. In light of these inspirations, it's no surprise that their collection is structured yet delicate, a representation of beauty and strength at once. Each Maeve design is refined, flattering, and - best of all - exclusively ours.",
"name": "Maeve Sequin Blazer Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 51
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130916210122; Color Code: 001",
"name": "By Anthropologie Embellished Velvet Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 52
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130456940046_066_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130456940046_066_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"colo": "PINK",
"details": "Style No. 4130456940046; Color Code: 066",
"name": "Verb by Pallavi Singhee Sequin Shift Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 53
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130916210122; Color Code: 001",
"name": "By Anthropologie Embellished Velvet Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 54
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130928990004_029_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130928990004_029_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BROWN MOTIF",
"details": "Style No. 4130928990004; Color Code: 029",
"name": "Caballero Deep V-Neck Maxi Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 55
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060104_003_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060104_003_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": " CARBON",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress: Shine Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 56
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130638570084_014_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130638570084_014_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "NEUTRAL",
"details": "Style No. 4130638570084; Color Code: 014",
"name": "Current Air Layered Sweater Dress",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 57
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060101_037_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060101_037_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": " DARK GREEN",
"details": "Style No. 4130370060101; Color Code: 037",
"name": "By Anthropologie Tiered Halter Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 58
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210118_096_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210118_096_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "CRIMSON",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress: Chiffon Edition",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 59
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130348690202_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130348690202_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK MOTIF",
"details": "The name Maeve references a purple flower, a Greek goddess, and a famously beautiful Irish warrior queen. In light of these inspirations, it's no surprise that their collection is structured yet delicate, a representation of beauty and strength at once. Each Maeve design is refined, flattering, and - best of all - exclusively ours.",
"name": "Maeve Cowl-Neck Velvet Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 60
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130646420009_043_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130646420009_043_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "SAPPHIRE",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress",
"price": 168,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 61
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130934910003_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130934910003_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130934910003; Color Code: 001",
"name": "SOVERE Inertia Knit Midi Dress",
"price": 229,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 62
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130292120022_029_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130292120022_029_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BROWN MOTIF",
"detail": "Style No. 4130292120022; Color Code: 029",
"name": "Daniel Rainn V-Neck Organza Dress",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 63
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210111_066_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210111_066_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "PINK",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"name": "The Somerset Mini Dress: Velvet Edition",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 64
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_061_b15?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_061_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "WINE",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 65
},
{
"details": "Meet the Marais Maxi Dress, one of our bestselling dresses, ever, updated with delicate metallic flowers. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline.",
"color": " LIGHT BLUE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210121_048_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210121_048_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "he Marais Chiffon Maxi Dress: Shine Edition",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 1
},
{
"details": "",
"color": "CRIMSON",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060100_096_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060100_096_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "By Anthropologie Plissé Halter Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 2
},
{
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "GREEN MOTIF",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_038_b16?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_038_b3?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Somerset Maxi Dress: Velvet Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 3
},
{
"details": "",
"color": "BLACK MOTIF",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060103_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060103_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 4
},
{
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "TURQUOISE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_046_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_046_b15?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 5
},
{
"details": "Meet the Marais Printed Chiffon Maxi Dress, one of our bestselling dresses, ever. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline",
"color": "BLACK & WHITE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_018_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_018_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Marais Printed Chiffon Maxi Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 6
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130264840021_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130264840021_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK MOTIF",
"details": "",
"name": "By Anthropologie Ruffled Tunic Dress",
"price": 148,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 7
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130615360010_060_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130615360010_060_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "RED",
"details": "",
"name": "Dhruv Kapoor Smocked Dress",
"price": 198,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 8
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130464030202_074_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130464030202_074_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MAIZE",
"details": "In 2010, New Yorker Daniel Saponaro launched Hutch, a contemporary womenswear brand recognized for garments that are equally easy and luxe. Emphasizing timeless sophistication over trend, the label's defined aesthetic showcases Saponaro's love of vibrant colors, conceptual prints, and feminine tailoring in every made-for-you piece.",
"name": "Hutch Velvet Wrap Dress",
"price": 198,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 9
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130456940045_038_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130456940045_038_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "GREEN MOTIF",
"name": "Verb by Pallavi Singhee Smocked Corset Dress",
"price": 298,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"details": "",
"id": 10
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130348690199_060_c14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130348690199_060_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "RED",
"details": "The name Maeve references a purple flower, a Greek goddess, and a famously beautiful Irish warrior queen. In light of these inspirations, it's no surprise that their collection is structured yet delicate, a representation of beauty and strength at once. Each Maeve design is refined, flattering, and - best of all - exclusively ours.",
"name": "Maeve Sequin Blazer Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 11
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130916210122; Color Code: 001",
"name": "By Anthropologie Embellished Velvet Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 12
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130456940046_066_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130456940046_066_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"colo": "PINK",
"details": "Style No. 4130456940046; Color Code: 066",
"name": "Verb by Pallavi Singhee Sequin Shift Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 13
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130916210122; Color Code: 001",
"name": "By Anthropologie Embellished Velvet Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 14
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130928990004_029_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130928990004_029_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BROWN MOTIF",
"details": "Style No. 4130928990004; Color Code: 029",
"name": "Caballero Deep V-Neck Maxi Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 15
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060104_003_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060104_003_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": " CARBON",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress: Shine Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 16
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130638570084_014_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130638570084_014_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "NEUTRAL",
"details": "Style No. 4130638570084; Color Code: 014",
"name": "Current Air Layered Sweater Dress",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 17
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060101_037_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060101_037_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": " DARK GREEN",
"details": "Style No. 4130370060101; Color Code: 037",
"name": "By Anthropologie Tiered Halter Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 18
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210118_096_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210118_096_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "CRIMSON",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress: Chiffon Edition",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 19
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130348690202_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130348690202_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK MOTIF",
"details": "The name Maeve references a purple flower, a Greek goddess, and a famously beautiful Irish warrior queen. In light of these inspirations, it's no surprise that their collection is structured yet delicate, a representation of beauty and strength at once. Each Maeve design is refined, flattering, and - best of all - exclusively ours.",
"name": "Maeve Cowl-Neck Velvet Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 20
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130646420009_043_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130646420009_043_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "SAPPHIRE",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress",
"price": 168,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 21
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130934910003_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130934910003_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130934910003; Color Code: 001",
"name": "SOVERE Inertia Knit Midi Dress",
"price": 229,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 22
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130292120022_029_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130292120022_029_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BROWN MOTIF",
"detail": "Style No. 4130292120022; Color Code: 029",
"name": "Daniel Rainn V-Neck Organza Dress",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 23
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210111_066_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210111_066_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "PINK",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"name": "The Somerset Mini Dress: Velvet Edition",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 24
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_061_b15?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_061_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "WINE",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 25
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_063_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_063_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "MAGENTA",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 66
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_050_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_050_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"details": "Meet the Marais Printed Chiffon Maxi Dress, one of our bestselling dresses, ever. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline.",
"color": "PURPLE",
"name": "The Marais Printed Chiffon Maxi Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 67
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_030_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_030_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "GREEN",
"name": "The Somerset Maxi Dress: Velvet Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 68
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130264840023_038_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130264840023_038_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "GREEN MOTIF",
"details": "Style No. 4130264840023; Color Code: 038",
"name": "By Anthropologie Mini Tunic Dress",
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"price": 148,
"id": 69
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/79399986_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/79399986_001_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 79399986; Color Code: 001",
"name": "Daily Practice by Anthropologie Ruched Dress",
"price": 128,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 70
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/78196615_011_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/78196615_011_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "IVORY",
"details": "Style No. 78196615; Color Code: 011",
"name": "By Anthropologie Preppy Shirt Dress",
"price": 98,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 71
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/78965555_031_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/78965555_031_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MOSS",
"details": "Style No. 78965555; Color Code: 031",
"name": "Daily Practice by Anthropologie Hooded Dress",
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"price": 82.6,
"id": 72
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/79260527_031_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/79260527_031_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MOSS",
"details": "Style No. 79260527; Color Code: 031",
"name": "Daily Practice by Anthropologie The Elle Set",
"price": 168,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 73
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130259830212_015_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130259830212_015_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "NEUTRAL MOTIF",
"details": "Easy to wear, easy to love is the motto of the Anthropologie exclusive line Cloth & Stone. Each piece begins with an effortless silhouette, before being imbued with personal touches such as specialty washes, rich textures, and seasonal hues.",
"name": "Cloth & Stone Plaid Mini Shirtdress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 74
},
{
"details": "Meet the Marais Maxi Dress, one of our bestselling dresses, ever, updated with delicate metallic flowers. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline.",
"color": " LIGHT BLUE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210121_048_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210121_048_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "he Marais Chiffon Maxi Dress: Shine Edition",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 75
},
{
"details": "",
"color": "CRIMSON",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060100_096_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060100_096_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "By Anthropologie Plissé Halter Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 76
},
{
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "GREEN MOTIF",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_038_b16?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210109_038_b3?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Somerset Maxi Dress: Velvet Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 77
},
{
"details": "",
"color": "BLACK MOTIF",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060103_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060103_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 78
},
{
"details": "Our bestselling, best-reviewed dress, ever. Flowy and flattering, sensual and subtle, it's one SMOOTH operator. Make your move: This is our sexiest Somerset yet.",
"color": "TURQUOISE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_046_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060072_046_b15?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Somerset Maxi Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 79
},
{
"details": "Meet the Marais Printed Chiffon Maxi Dress, one of our bestselling dresses, ever. A vision of feminine romance and sophisticated ease, ruffled tiers fall gracefully from the effortless waistline, swaying gently as you walk, with a breezy sleeve and open v-neckline",
"color": "BLACK & WHITE",
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_018_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210042_018_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"name": "The Marais Printed Chiffon Maxi Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 80
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130264840021_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130264840021_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK MOTIF",
"details": "",
"name": "By Anthropologie Ruffled Tunic Dress",
"price": 148,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 81
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130615360010_060_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130615360010_060_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "RED",
"details": "",
"name": "Dhruv Kapoor Smocked Dress",
"price": 198,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 82
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130464030202_074_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130464030202_074_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "MAIZE",
"details": "In 2010, New Yorker Daniel Saponaro launched Hutch, a contemporary womenswear brand recognized for garments that are equally easy and luxe. Emphasizing timeless sophistication over trend, the label's defined aesthetic showcases Saponaro's love of vibrant colors, conceptual prints, and feminine tailoring in every made-for-you piece.",
"name": "Hutch Velvet Wrap Dress",
"price": 198,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 83
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130456940045_038_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130456940045_038_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "GREEN MOTIF",
"name": "Verb by Pallavi Singhee Smocked Corset Dress",
"price": 298,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"details": "",
"id": 84
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130348690199_060_c14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130348690199_060_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "RED",
"details": "The name Maeve references a purple flower, a Greek goddess, and a famously beautiful Irish warrior queen. In light of these inspirations, it's no surprise that their collection is structured yet delicate, a representation of beauty and strength at once. Each Maeve design is refined, flattering, and - best of all - exclusively ours.",
"name": "Maeve Sequin Blazer Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 85
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130916210122; Color Code: 001",
"name": "By Anthropologie Embellished Velvet Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 86
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130456940046_066_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130456940046_066_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"colo": "PINK",
"details": "Style No. 4130456940046; Color Code: 066",
"name": "Verb by Pallavi Singhee Sequin Shift Dress",
"price": 220,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 87
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210122_001_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK",
"details": "Style No. 4130916210122; Color Code: 001",
"name": "By Anthropologie Embellished Velvet Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 88
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130928990004_029_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130928990004_029_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BROWN MOTIF",
"details": "Style No. 4130928990004; Color Code: 029",
"name": "Caballero Deep V-Neck Maxi Dress",
"price": 248,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 89
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060104_003_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060104_003_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": " CARBON",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress: Shine Edition",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 90
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130638570084_014_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130638570084_014_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "NEUTRAL",
"details": "Style No. 4130638570084; Color Code: 014",
"name": "Current Air Layered Sweater Dress",
"price": 160,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 91
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130370060101_037_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130370060101_037_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": " DARK GREEN",
"details": "Style No. 4130370060101; Color Code: 037",
"name": "By Anthropologie Tiered Halter Dress",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 92
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130916210118_096_b14?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130916210118_096_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "CRIMSON",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",
"name": "The Somerset Maxi Dress: Chiffon Edition",
"price": 170,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 93
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130348690202_009_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130348690202_009_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "BLACK MOTIF",
"details": "The name Maeve references a purple flower, a Greek goddess, and a famously beautiful Irish warrior queen. In light of these inspirations, it's no surprise that their collection is structured yet delicate, a representation of beauty and strength at once. Each Maeve design is refined, flattering, and - best of all - exclusively ours.",
"name": "Maeve Cowl-Neck Velvet Dress",
"price": 180,
"size": ["XXS", "XS", "S", "M", "L", "XL"],
"id": 94
},
{
"image": "https://images.urbndata.com/is/image/Anthropologie/4130646420009_043_b?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"flip_image": "https://images.urbndata.com/is/image/Anthropologie/4130646420009_043_b2?$a15-pdp-detail-shot$&fit=constrain&fmt=webp&qlt=80&wid=540",
"color": "SAPPHIRE",
"details": "Remember the sisterhood of the traveling pants? The Somerset is for grown-ups, but it has that magic. Insanely flattering, on everyone. Extremely versatile, for every style. The perfect outfit, for everything. If you're shopping for your first, we should warn you: You won't stop at one. You'll start a collection.",