-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
1350 lines (1350 loc) · 44.5 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"products": [
{
"id": 1,
"name": "CozyChic® Socks",
"description": "Made from Barefoot Dreams' plush CozyChic knit for ultimate warmth and softness, these socks will become fast down-time favorites.",
"brand": "Barefoot Dreams ®",
"type": "socks",
"gender": "common",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/f513ab38-993f-4d9e-912e-efdd6cb60848.jpeg",
"https://n.nordstrommedia.com/id/sr3/c145f5f0-8269-4660-8b64-8a6d62028599.jpeg"
],
"strikeOfPrice": 2000,
"price": "1289.95",
"ratings": {
"rating": 4,
"count": 295
}
},
{
"id": 2,
"name": "Moonflower Nights",
"description": "Moonflower Ornament Pure Silk Skinny Scrunchie Set",
"brand": "SLIP",
"type": "ornament",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/44cb989f-104d-4e4c-bb19-a3a3ca759596.jpeg",
"https://n.nordstrommedia.com/id/sr3/6fa736c3-f1d7-4598-b8d3-c60c97c0c498.jpeg"
],
"strikeOfPrice": 2199,
"price": 2149.92,
"ratings": {
"rating": 5,
"count": 164
}
},
{
"id": 3,
"name": "Ribbed Crew Socks",
"description": "Soft, stretchy ribbed socks have a cozy slouchy fit through the ankles and reinforced heels and toes for durability.",
"brand": "UGG ®",
"type": "socks",
"gender": "common",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/3b6c8ee3-5552-4a00-9043-a8f6af67f17e.jpeg",
"https://n.nordstrommedia.com/id/sr3/60fdbf5c-0866-4e11-87c2-8827f97dab47.jpeg"
],
"strikeOfPrice": 1799,
"price": 1581.8,
"ratings": {
"rating": 4,
"count": 304
}
},
{
"id": 4,
"name": "Sugar Lip Balm Set USD $38/CAD $51 Value",
"description": "What it is: Treat your lips to this limited-edition three-piece set of to-go essentials that will deliver all-day moisture and color.",
"brand": "FRESH®",
"type": "ornament",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/48198d4d-f990-4a03-92ec-b34b4326dc1b.jpeg",
"https://n.nordstrommedia.com/id/sr3/88da5d0e-b351-4bb2-a7b2-53e576826527.jpeg"
],
"strikeOfPrice": 2199,
"price": 2149.92,
"ratings": {
"rating": 5,
"count": 1
}
},
{
"id": 5,
"name": "GinZing Radiance-Boosting Ornament Set USD $35 Value",
"description": "What it is: A limited-edition, glow-boosting duo complete with a best-selling vitamin C serum and eye cream that will keep you looking merry and bright.",
"brand": "ORIGINS",
"type": "ornament",
"gender": "common",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/b5e7d73c-a8ae-4bdb-a248-41939383d33a.jpeg",
"https://n.nordstrommedia.com/id/sr3/bb3380c2-98f0-4beb-a9b7-3dce9e8f3857.jpeg"
],
"strikeOfPrice": 1891.93,
"price": 945.97,
"ratings": {
"rating": 4,
"count": 108
}
},
{
"id": 6,
"name": "Kiss Me with Kiehl's Set USD $30 Value",
"description": "What it is: A boxed set that includes three full-sized lip balms in Mint, Cranberry and Original Unscented.",
"brand": "KIEHL'S SINCE 1851",
"type": "health-care",
"gender": "common",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/12f17bca-647a-497b-995a-f84e955ff057.jpeg",
"https://n.nordstrommedia.com/id/sr3/2099bd56-d878-4250-88f3-e28e477aa43d.jpeg"
],
"strikeOfPrice": 2499,
"price": 2149.92,
"ratings": {
"rating": 4,
"count": 51
}
},
{
"id": 7,
"name": "Heart Bracelet",
"description": "Heart-shaped links in a double rainbow of colors forms a sweet bracelet that's ready for a jingly collection of clip-on charms.",
"brand": "CHARM IT!®",
"type": "cosmetics",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/2bb344f4-32e8-4f9c-8b37-f09b6f154481.jpeg",
"https://n.nordstrommedia.com/id/sr3/f65d8b51-5bc5-4670-b646-1e0182b96a6f.jpeg"
],
"strikeOfPrice": 999,
"price": 678.98,
"ratings": {
"rating": 5,
"count": 22
}
},
{
"id": 8,
"name": "Men's Butter Crew Socks",
"description": "Soft, loopy bouclé brings ridiculous comfort to a pair of crew socks made with plenty of added stretch to move with you day and night.",
"brand": "NORDSTROM",
"type": "socks",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/4357d81a-8327-45b5-b392-a96f14636a65.jpeg",
"https://n.nordstrommedia.com/id/sr3/975f7278-7243-44be-8710-51fd5fddaeba.jpeg"
],
"strikeOfPrice": 799,
"price": 773.97,
"ratings": {
"rating": 5,
"count": 6
}
},
{
"id": 9,
"name": "6 Inch Premium Waterproof Boot",
"description": "Celebrate the holiday season in these cozy cotton-blend crew socks.",
"brand": "HOT SOX",
"type": "socks",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/af5b3656-2110-4c8d-9bfd-04a059b9ca65.jpeg",
"https://n.nordstrommedia.com/id/sr3/0433bc7d-2cb2-40fd-8c54-9953cf9c3f08.jpeg"
],
"strikeOfPrice": 678.98,
"price": 412.79,
"ratings": {
"rating": 4,
"count": 33
}
},
{
"id": 10,
"name": "Mokara Classic Candle",
"description": "What it is: A candle presented in an embossed vessel with gorgeous floral designs that take inspiration from the beauty of Japanese art.",
"brand": "VOLUSPA",
"type": "candle",
"gender": "common",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/e5a446c8-33ec-4d50-b5aa-9a460af9a8fc.jpeg",
"https://n.nordstrommedia.com/id/sr3/04c9bda8-dff5-472c-8500-f8187d2aab0c.jpeg"
],
"strikeOfPrice": 2407.91,
"price": 1805.93,
"ratings": {
"rating": 5,
"count": 6
}
},
{
"id": 11,
"name": "Little Lipstick Trio",
"description": "What it is: A limited-edition set of three lipsticks in all-new Sparkling Wine and Rosé shades, in a box for gifting.",
"brand": "MAC COSMETICS",
"type": "cosmetics",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/aab00891-0ef1-4a70-86d2-3278b37aa37f.jpeg",
"https://n.nordstrommedia.com/id/sr3/8cf067b4-e9d2-41ca-832b-8951c5255026.jpeg"
],
"strikeOfPrice": 2407.91,
"price": 1805.93,
"ratings": {
"rating": 5,
"count": 6
}
},
{
"id": 12,
"name": "Featherlight Cozy Socks",
"description": "Cozy up in the colder months with these supersoft and lightweight socks that will keep you warm without the extra bulk of chunky socks.",
"brand": "BP.",
"type": "socks",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/6117ded6-3e82-42f6-8bd7-390addba82e6.jpeg",
"https://n.nordstrommedia.com/id/sr3/80f98de9-92f3-48aa-b042-6e70b8c07304.jpeg"
],
"strikeOfPrice": 1074.54,
"price": 632.72,
"ratings": {
"rating": 5,
"count": 10
}
},
{
"id": 13,
"name": "Suzane Smiley Crew Socks",
"description": "Add a whimsical accent to any ensemble with these cotton-blend crew socks featuring an positively beaming mascot.",
"brand": "RAINBOW UNICORN BIRTHDAY SURPRISE",
"type": "socks",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/97d89814-4851-4199-bc3f-c94cf87d017e.jpeg",
"https://n.nordstrommedia.com/id/sr3/4c43faa0-a095-4592-91d2-6ad3cc80ae97.jpeg"
],
"strikeOfPrice": 1574.54,
"price": 1318.72,
"ratings": {
"rating": 4,
"count": 13
}
},
{
"id": 14,
"name": "Cheers to You Lipglass Kit",
"description": "What it is: A three-piece set featuring a trio of products that will leave lips looking and feeling their plump best.",
"brand": "MAC COSMETICS",
"type": "cosmetics",
"gender": "Female",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/6966a394-bed2-49a5-81af-868e8cbae2d3.jpeg",
"https://n.nordstrommedia.com/id/sr3/1c0821c0-d7ab-4b2c-aa89-8db86e6de678.jpeg"
],
"strikeOfPrice": 2294.25,
"price": 2240.98,
"ratings": {
"rating": 4,
"count": 1
}
},
{
"id": 15,
"name": "Blazer Mid '77 Premium Sneaker",
"description": "Old-school b-ball is alive and scoring in a '70s-reissue high-top sporting a streamlined profile and sleek autoclave sole that keep the vintage vibes hustling.",
"brand": "Nike",
"type": "shoe",
"gender": "Male",
"size": 8,
"images": [
"https://n.nordstrommedia.com/id/sr3/6966a394-bed2-49a5-81af-868e8cbae2d3.jpeg",
"https://n.nordstrommedia.com/id/sr3/1c0821c0-d7ab-4b2c-aa89-8db86e6de678.jpeg"
],
"strikeOfPrice": 10999.25,
"price": 9227.18,
"ratings": {
"rating": 5,
"count": 3
}
},
{
"name": "Cashmere Crewneck Sweater",
"description": "Knit from soft cashmere yarns, a lightweight, refined crewneck sweater is a luxe layering option when the temperature starts to drop.",
"brand": "NORDSTROM",
"type": "cloth",
"gender": "Male",
"size": 7,
"images": [
"https://n.nordstrommedia.com/id/sr3/b8afd0c7-cc0f-4ab0-a5da-a1b23096c662.jpeg",
"https://n.nordstrommedia.com/id/sr3/b71960a9-9b54-499c-91b3-47126d6e9077.jpeg"
],
"strikeOfPrice": 14499.85,
"price": 12302,
"ratings": {
"rating": 4,
"count": 68
},
"id": 16
}
],
"male": [
{
"name": "Cashmere Crewneck Sweater",
"description": "Knit from soft cashmere yarns, a lightweight, refined crewneck sweater is a luxe layering option when the temperature starts to drop.",
"brand": "NORDSTROM",
"type": "cloth",
"gender": "Male",
"size": 7,
"images": [
"https://n.nordstrommedia.com/id/sr3/b8afd0c7-cc0f-4ab0-a5da-a1b23096c662.jpeg",
"https://n.nordstrommedia.com/id/sr3/b71960a9-9b54-499c-91b3-47126d6e9077.jpeg"
],
"strikeOfPrice": 14499.85,
"price": 12302,
"ratings": {
"rating": 4,
"count": 68
},
"id": 1
},
{
"name": "Blazer Low '77 Sneaker",
"description": "Old-school b-ball is alive and scoring in a '70s-reissue low-top sporting a streamlined profile and sleek autoclaved sole that keep the vintage vibes hustling.",
"brand": "NIKE",
"type": "shoe",
"gender": "Male",
"size": 7,
"images": [
"https://n.nordstrommedia.com/id/sr3/921a30f5-ca57-4ae7-bfeb-a40257678339.jpeg",
"https://n.nordstrommedia.com/id/sr3/30770d90-e2af-48da-9208-4c97e6ee7cea.jpeg"
],
"strikeOfPrice": 1498,
"price": 1245.46,
"ratings": {
"rating": 4,
"count": 56
},
"id": 2
},
{
"name": "327 Sneaker",
"description": "Heritage details meet modern attitudes in a '70s-throwback running shoe reissued as a standout street sneaker.",
"brand": "NEW BALANCE",
"type": "shoe",
"gender": "Male",
"size": 8,
"images": [
"https://n.nordstrommedia.com/id/sr3/8ca923a6-2da3-42bf-8210-a0d7f9dbf772.jpeg",
"https://n.nordstrommedia.com/id/sr3/e19951e2-9f56-4558-b7e3-1887effd451d.jpeg"
],
"strikeOfPrice": 8786.91,
"price": 6589.96,
"ratings": {
"rating": 2,
"count": 15
},
"id": 3
},
{
"name": "Wood Sage & Sea Salt Cologne",
"description": "What it is: A mineral and woody cologne that helps you escape the everyday, along the windswept shore.",
"brand": "JO MALONE LONDON™",
"type": "cosmetics",
"gender": "Male",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/ada60d30-e5b2-4a25-92c5-d4c7fe67dc50.jpeg",
"https://n.nordstrommedia.com/id/sr3/d70f8d4c-98b7-4252-8e4e-cc26f9344f67.jpeg"
],
"strikeOfPrice": 13621.07,
"price": 7030.23,
"ratings": {
"rating": 5,
"count": 1600
},
"id": 4
},
{
"name": "Sportswear Tech Fleece Zip Hoodie",
"description": "Lightweight, insulating Tech Fleece brings warmth without bulk to a hoodie that sports a higher neck for added coverage and a fit that's easy to layer.",
"brand": "NIKE",
"type": "cloth",
"gender": "Male",
"size": 10,
"images": [
"https://n.nordstrommedia.com/id/sr3/00241b7f-bfa8-4f12-9c44-69240704efa4.jpeg",
"https://n.nordstrommedia.com/id/sr3/341402aa-d622-4254-8157-f26a40f2862b.jpeg"
],
"strikeOfPrice": 15999,
"price": 11423.36,
"ratings": {
"rating": 4,
"count": 72
},
"id": 5
},
{
"name": "Kånken Water Resistant Backpack",
"description": "Scandinavian design has long been known for offering practical, functional pieces that are beautiful to behold but that are meant to be used.",
"brand": "FJÄLLRÄVEN",
"type": "bag",
"gender": "Male",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/0d9e65cf-bd8e-401c-ac13-4ef72abf4fe2.jpeg",
"https://n.nordstrommedia.com/id/sr3/77fcfc4a-620a-4d4a-a393-829b3d2fc316.jpeg"
],
"strikeOfPrice": 8203,
"price": 7030.23,
"ratings": {
"rating": 4,
"count": 563
},
"id": 6
},
{
"name": "Second Skin 6-Inch Boxer Briefs",
"description": "Silky, stretchy and ridiculously comfortable, these everyday boxer briefs sport an internal Contour Pouch for support and an easy-access Quick Draw® Fly.",
"brand": "TOMMY JOHN",
"type": "cloth",
"gender": "Male",
"size": 4,
"images": [
"https://n.nordstrommedia.com/id/sr3/39462f95-46e0-4eb0-af21-99b509965baa.jpeg",
"https://n.nordstrommedia.com/id/sr3/ee5b0f07-468f-4827-8a34-472cab92bced.jpeg"
],
"strikeOfPrice": 3199,
"price": 3163.6,
"ratings": {
"rating": 2,
"count": 4
},
"id": 7
},
{
"name": "Tech Fleece Jogger Sweatpants",
"description": "Nike Tech Fleece spacer knit retains heat without added bulk in jogger-style sweatpants that are relaxed through the thigh and taper below the knee.",
"brand": "NIKE",
"type": "cloth",
"gender": "Male",
"size": 9,
"images": [
"https://n.nordstrommedia.com/id/sr3/37c55c1c-eef8-4807-85f5-45154c06a338.jpeg",
"https://n.nordstrommedia.com/id/sr3/78454076-1b38-403d-a82f-819c4543ce40.jpeg"
],
"strikeOfPrice": 10234,
"price": 9666.57,
"ratings": {
"rating": 3,
"count": 147
},
"id": 8
},
{
"name": "Hydrating Cleanser Duo (Nordstrom Exclusive) USD $42 Value",
"description": "What it is: A limited-edition set that includes a gentle, plant-powered cleanser and toner for normal to dry skin.",
"brand": "CLARINS",
"type": "cosmetics",
"gender": "Male",
"size": 1,
"images": [
"https://n.nordstrommedia.com/id/sr3/7ccb0614-ab41-468f-baf1-27fa03e13a61.jpeg",
"https://n.nordstrommedia.com/id/sr3/82a3665e-5b51-437c-b5f8-5f37d6c7358b.jpeg"
],
"strikeOfPrice": 3024.34,
"price": 2724.21,
"ratings": {
"rating": 5,
"count": 168
},
"id": 9
},
{
"name": "Sportswear Club Hoodie",
"description": "Cotton-rich fleece keeps you comfy in a street-ready hoodie with a bold Swoosh logo on the chest.",
"brand": "NIKE",
"type": "cloth",
"gender": "Male",
"size": 12,
"images": [
"https://n.nordstrommedia.com/id/sr3/cd3ca7b6-3118-4a14-ac32-0154bb6f94db.jpeg",
"https://n.nordstrommedia.com/id/sr3/58f2fbcc-c77d-456f-85f8-bea7e3b7a0c9.jpeg"
],
"strikeOfPrice": 4833.28,
"price": 4218.14,
"ratings": {
"rating": 4,
"count": 135
},
"id": 10
},
{
"name": "Men's Club Crewneck Sweatshirt",
"description": "This crewneck sweatshirt cut from lightweight fleece is one you'll want in every color.",
"brand": "NIKE",
"type": "cloth",
"gender": "Male",
"size": 12,
"images": [
"https://n.nordstrommedia.com/id/sr3/e609eb77-4e30-4f19-bc97-e4e560f553f9.jpeg",
"https://n.nordstrommedia.com/id/sr3/2e28ce8f-0dd4-4ffc-a418-ad43253ba8bb.jpeg"
],
"strikeOfPrice": 2046.98,
"price": 1346.56,
"ratings": {
"rating": 4,
"count": 107
},
"id": 11
},
{
"name": "MacMillan Wool Blend 625 Fill Power Down Parka",
"description": "Quilted, down-filled construction offers reliable warmth in a modern hip-length Italian parka that fuses form and function.",
"brand": "CANADA GOOSE",
"type": "cloth",
"gender": "Male",
"size": 15,
"images": [
"https://n.nordstrommedia.com/id/sr3/4a93d4f1-d1f5-470b-99f0-835bdf5aaee1.jpeg",
"https://n.nordstrommedia.com/id/sr3/d1882c38-7c80-4902-b1fc-778df60f6eed.jpeg"
],
"strikeOfPrice": 12564.65,
"price": 10256.56,
"ratings": {
"rating": 3,
"count": 1
},
"id": 12
},
{
"name": "Hidden Falls Leaf Pima Cotton Blend Polo",
"description": "Laid-back days require the cool comfort of this breathable pima cotton–blend polo that's perfect for chilling at home or heading out.",
"brand": "TRAVISMATHEW",
"type": "cloth",
"gender": "Male",
"size": 10,
"images": [
"https://n.nordstrommedia.com/id/sr3/6a065c35-f400-46aa-9da5-752e9a06a85e.jpeg",
"https://n.nordstrommedia.com/id/sr3/451aa40d-6717-475a-8fe8-105914deb9a7.jpeg"
],
"strikeOfPrice": 8344.01,
"price": 5841.24,
"ratings": {
"rating": 5,
"count": 1
},
"id": 13
},
{
"name": "Nike Dri-FIT Victory Golf Polo",
"description": "Stretchy, sweat-wicking fabric keeps up from links to lunch in an all-activity golf polo that's seamed for greater range of movement through your swings.",
"brand": "NIKE GOLF",
"type": "cloth",
"gender": "Male",
"size": 13,
"images": [
"https://n.nordstrommedia.com/id/sr3/8ad00eb8-3195-4f33-a1d1-532edd233dcd.jpeg",
"https://n.nordstrommedia.com/id/sr3/abcd046a-c17d-47a4-9698-1dec3bfa9237.jpeg"
],
"strikeOfPrice": 5096.92,
"price": 3822.69,
"ratings": {
"rating": 5,
"count": 163
},
"id": 14
},
{
"name": "Reign Short Sleeve T-Shirt",
"description": "",
"brand": "RHONE",
"type": "Stretchy moisture-wicking fabric keeps up with you at any intensity in a T-shirt sporting 50+ sun protection and GoldFusion anti-odor technology.",
"gender": "Male",
"size": 9,
"images": [
"https://n.nordstrommedia.com/id/sr3/4cabae55-0fe0-45df-a93a-ae6a25dc2d42.jpeg",
"https://n.nordstrommedia.com/id/sr3/fed0ad56-b79e-4b1f-a186-ba99796a1f77.jpeg"
],
"strikeOfPrice": 5975.7,
"price": 2546.7,
"ratings": {
"rating": 4,
"count": 19
},
"id": 15
},
{
"name": "Classic Reversible Wool Blend Scarf",
"description": "Long fringe brings cozy charm to this handsome scarf with a reversible design that lets you change up your cold-weather look at will.",
"brand": "POLO RALPH LAUREN",
"type": "cloth",
"gender": "Male",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/c3bc71de-793f-41b7-9db5-b5450518c720.jpeg",
"https://n.nordstrommedia.com/id/sr3/1e583c73-49f1-4308-bea7-ef1cca034410.jpeg"
],
"strikeOfPrice": 8630.46,
"price": 5975.7,
"ratings": {
"rating": 5,
"count": 123
},
"id": 16
},
{
"name": "Ghost 15 Running Shoe",
"description": "The Ghost lineup remains a favorite of so many runners as each iteration of the shoe is light and cushioned enough for running almost any pace and distance.",
"brand": "BROOKS",
"type": "shoe",
"gender": "Male",
"size": 10,
"images": [
"https://n.nordstrommedia.com/id/sr3/a99a6ab4-cd11-41dc-82f8-0312c864c335.jpeg",
"https://n.nordstrommedia.com/id/sr3/f1d82219-5d6d-4874-84b0-e71bc35d0cb4.jpeg"
],
"strikeOfPrice": 15352.24,
"price": 12302.91,
"ratings": {
"rating": 4,
"count": 129
},
"id": 17
},
{
"name": "Space Dye Marl Ankle Socks",
"description": "A combination of space-dyed yarns and marled details pattern these cotton-kissed ankle socks with signature honeycomb arch support.",
"brand": "BOMBAS",
"type": "cloth",
"gender": "Male",
"size": 163,
"images": [
"https://n.nordstrommedia.com/id/sr3/61fbd683-cb63-4d73-b33a-1ceb669a40be.jpeg",
"https://n.nordstrommedia.com/id/sr3/54dfcfbc-5b30-4c30-8142-a5b25e44d908.jpeg"
],
"strikeOfPrice": 1449.99,
"price": 1159.99,
"ratings": {
"rating": 4,
"count": 456
},
"id": 18
},
{
"name": "Essentals Cotton Blend Sweatshirt",
"description": "A logo graphic brings signature style to the chest and back of a roomy mock-neck sweatshirt cut from soft, brushed cotton-blend fleece.",
"brand": "FEAR OF GOD ESSENTIALS",
"type": "cloth",
"gender": "Male",
"size": 13,
"images": [
"https://n.nordstrommedia.com/id/sr3/4aac5434-bff7-41c9-84af-edd26a6b4170.jpeg",
"https://n.nordstrommedia.com/id/sr3/e8ed7aaa-bb8d-4186-929d-c30d220b8cdc.jpeg"
],
"strikeOfPrice": 9546.8,
"price": 7469.62,
"ratings": {
"rating": 5,
"count": 753
},
"id": 19
},
{
"name": "Fisherman Cardigan",
"description": "Varied stitchwork defines a handsome cotton-blend cardigan just right for sitting by the fire and regaling friends with tales of adventure on the high seas.",
"brand": "LIVERPOOL LOS ANGELES",
"type": "cloth",
"gender": "Male",
"size": 12,
"images": [
"https://n.nordstrommedia.com/id/sr3/2ca6f1cf-dc6a-4d3f-a5f7-ccf5cb6567fb.jpeg",
"https://n.nordstrommedia.com/id/sr3/1672d7a7-5290-4d90-aa1a-5dc9e5dfec24.jpeg"
],
"strikeOfPrice": 10457.47,
"price": 7843.1,
"ratings": {
"rating": 5,
"count": 869
},
"id": 20
}
],
"female": [
{
"name": "Performance Joggers",
"description": "Give your work-from-home uniform a cozy upgrade with these soft, relaxed joggers that are also stylish enough for errands",
"brand": "VUORI",
"type": "cloth",
"gender": "Female",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/e52b3d19-7611-4b25-9342-f46ce7a75975.jpeg",
"https://n.nordstrommedia.com/id/sr3/4429bf87-78b1-4655-852b-e3dee70cc62e.jpeg"
],
"strikeOfPrice": 9999,
"price": 8260,
"ratings": {
"rating": 4,
"count": 522
},
"id": 1
},
{
"name": "Live In High Waist Leggings",
"description": "Built from moisture-wicking fabric and fitted with a no-slip waistband, these stretchy, figure-sculpting leggings keep you cool as your workout warms up.",
"brand": "ZELLA",
"type": "cloth",
"gender": "Female",
"size": 5,
"images": [
"https://n.nordstrommedia.com/id/sr3/532f599c-3846-476d-a41f-7863625b22fa.jpeg",
"https://n.nordstrommedia.com/id/sr3/11b782e0-99dc-45a2-9b6a-5ce7af60addc.jpeg"
],
"strikeOfPrice": 6543,
"price": 5184,
"ratings": {
"rating": 4.3,
"count": 7300
},
"id": 2
},
{
"name": "Halo 2.0 Performance Zip Front Hoodie",
"description": "Made from moisture-wicking, four-way stretch fabric, this soft jersey hoodie is the perfect companion for gym days, sick days and everything between.",
"brand": "VUORI",
"type": "cloth",
"gender": "Female",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/568c2dcc-62d2-4c40-ae33-a968c4ebf2e0.jpeg",
"https://n.nordstrommedia.com/id/sr3/5f8bf641-43dc-4114-bdc6-495e1ac3476f.jpeg"
],
"strikeOfPrice": 9000,
"price": 8612.43,
"ratings": {
"rating": 4,
"count": 5
},
"id": 3
},
{
"name": "Knit Midi Skirt",
"description": "Update your midi skirt for sweater weather with this cozy ribbed version that hugs your curves and keeps you warm.",
"brand": "OPEN EDIT",
"type": "cloth",
"gender": "Female",
"size": 4,
"images": [
"https://n.nordstrommedia.com/id/sr3/83ac6f55-840f-4d56-84b7-34313406478b.jpeg",
"https://n.nordstrommedia.com/id/sr3/c601cd37-5342-4a18-8ea4-10fa0971fcce.jpeg"
],
"strikeOfPrice": 5299,
"price": 4833,
"ratings": {
"rating": 4.6,
"count": 17
},
"id": 4
},
{
"name": "Ab-Solution High Waist Itty Bitty Bootcut Jean",
"description": "Strategic fading adds to the relaxed feel of stretch-denim jeans featuring a slightly flared leg and a fit system that's designed to comfortably shape and hold.",
"brand": "WIT & WISDOM",
"type": "cloth",
"gender": "Female",
"size": 4,
"images": [
"https://n.nordstrommedia.com/id/sr3/51a8e341-56a4-4e85-9729-6cef2cdfe4e7.jpeg",
"https://n.nordstrommedia.com/id/sr3/f6d27119-baca-4d91-973c-eca527adb6c3.jpeg"
],
"strikeOfPrice": 7599,
"price": 7733.45,
"ratings": {
"rating": 4,
"count": 244
},
"id": 5
},
{
"name": "Good Legs High Rise Skinny Jeans",
"description": "With exclusive mold-and-hold technology and a touch of stretch, these jeans really and truly are cute as well as comfortable.",
"brand": "GOOD AMERICAN",
"type": "cloth",
"gender": "Female",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/ae2fa614-3bab-4b08-9a55-3abd9d4e01af.jpeg",
"https://n.nordstrommedia.com/id/sr3/bb7cbf00-4176-4206-8dfd-4873cb19c7ec.jpeg"
],
"strikeOfPrice": 8999,
"price": 8502.19,
"ratings": {
"rating": 4,
"count": 305
},
"id": 6
},
{
"name": "'Ab'Solution Skinny Ankle Jeans",
"description": "With exclusive mold-and-hold technology and a touch of stretch, these jeans really and truly are cute as well as comfortable.",
"brand": "WIT & WISDOM",
"type": "cloth",
"gender": "Female",
"size": 5,
"images": [
"https://n.nordstrommedia.com/id/sr3/6535c596-3d41-4531-a73e-5d61dff37d79.jpeg",
"https://n.nordstrommedia.com/id/sr3/76ea74d0-e547-4590-9441-62f33cae45d8.jpeg"
],
"strikeOfPrice": 6707.56,
"price": 5847.79,
"ratings": {
"rating": 4,
"count": 587
},
"id": 7
},
{
"name": "Puddle Low Rise Cargo Jeans",
"description": "Work the utility trend in these wide-leg cargo jeans cut from nonstretch denim",
"brand": "BDG URBAN OUTFITTERS",
"type": "cloth",
"gender": "Female",
"size": 7,
"images": [
"https://n.nordstrommedia.com/id/sr3/c0d170c0-c6fb-4829-bc57-75463869f52e.jpeg",
"https://n.nordstrommedia.com/id/sr3/7fa35ac9-e534-419d-a62a-c0d874b41ad1.jpeg"
],
"strikeOfPrice": 6767,
"price": 3638.54,
"ratings": {
"rating": 5,
"count": 1
},
"id": 8
},
{
"name": "Kånken Water Resistant Backpack",
"description": "Scandinavian design has long been known for offering practical, functional pieces that are beautiful to behold but that are meant to be used.",
"brand": "FJÄLLRÄVEN",
"type": "bag",
"gender": "Female",
"size": 5,
"images": [
"https://n.nordstrommedia.com/id/sr3/0d9e65cf-bd8e-401c-ac13-4ef72abf4fe2.jpeg",
"https://n.nordstrommedia.com/id/sr3/77fcfc4a-620a-4d4a-a393-829b3d2fc316.jpeg"
],
"strikeOfPrice": 7499,
"price": 7030.32,
"ratings": {
"rating": 4.5,
"count": 504
},
"id": 9
},
{
"name": "Mini Kånken Water Resistant Backpack",
"description": "Scandinavian design has long been known for offering practical, functional pieces that are beautiful to behold but are meant to be used.",
"brand": "FJÄLLRÄVEN",
"type": "bag",
"gender": "Female",
"size": 5,
"images": [
"https://n.nordstrommedia.com/id/sr3/5fce4f3a-100f-4c3d-8505-0d2da03c2382.jpeg",
"https://n.nordstrommedia.com/id/sr3/8e9381be-3b61-4b6e-b9f7-e524c3f31ee5.jpeg"
],
"price": 6019.78,
"ratings": {
"rating": 4.5,
"count": 390
},
"id": 10
},
{
"name": "Puffer Backpack",
"description": "Twin with your favorite puffy topper with this well-organized, spacious backpack made from recycled materials that'll keep your gear as toasty warm as you.",
"brand": "ADIDAS ORIGINALS",
"type": "bag",
"gender": "Female",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/ca688bf6-0290-4202-b65f-89ead35735a4.jpeg",
"https://n.nordstrommedia.com/id/sr3/2ad209e1-ea3e-4ee7-834d-408f8dfede3b.jpeg"
],
"strikeOfPrice": 3999.5,
"price": 3624,
"ratings": {
"rating": 5,
"count": 7
},
"id": 11
},
{
"name": "Stark Crossbody Coated Canvas Mini Backpack",
"description": "MCM's signature Stark silhouette gets a modern upgrade as a mini crossbody backpack with a removable, adjustable strap.",
"brand": "MCM",
"type": "bag",
"gender": "Female",
"size": 5,
"images": [
"https://n.nordstrommedia.com/id/sr3/8ef8b2fa-a6fb-4ebe-b712-e9dd2b82ede7.jpeg",
"https://n.nordstrommedia.com/id/sr3/79d43994-337c-4661-ad92-ebf69748b0f1.jpeg"
],
"strikeOfPrice": 90000,
"price": 85136,
"ratings": {
"rating": 4,
"count": 122
},
"id": 12
},
{
"name": "Luka Belt Bag",
"description": "Durable tech construction defines a no-nonsense belt bag with utilitarian appeal.",
"brand": "CALPAK",
"type": "bag",
"gender": "Female",
"size": 5,
"images": [
"https://n.nordstrommedia.com/id/sr3/8c49c078-67ed-484b-83d1-151c708a27aa.jpeg",
"https://n.nordstrommedia.com/id/sr3/ab84c9d0-a9d8-4fc5-b8a8-221b14bfd1a8.jpeg"
],
"strikeOfPrice": 5287.25,
"price": 4987.32,
"ratings": {
"rating": 4.6,
"count": 7
},
"id": 13
},
{
"name": "Milan Leather Belt Bag",
"description": "Toss this belt bag on before you leave the house so you can keep you hands free and your essentials secure while you're out and about.",
"brand": "AIMEE KESTENBERG",
"type": "bag",
"gender": "Female",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/40adcecd-a438-43e7-8535-e12e90d39d32.jpeg",
"https://n.nordstrommedia.com/id/sr3/e44c39a5-d80d-4b2b-bb76-a2525ffa3efa.jpeg"
],
"strikeOfPrice": 1367.34,
"price": 11007.69,
"ratings": {
"rating": 4,
"count": 167
},
"id": 14
},
{
"name": "Ace Water Resistant Neoprene Belt Bag",
"description": "Capacity, comfort and convenience combine in this water-resistant bag that's ready to get you through a full day of touring without a hint of carry fatigue.",
"brand": "DAGNE DOVER",
"type": "bag",
"gender": "Female",
"size": 6,
"images": [
"https://n.nordstrommedia.com/id/sr3/6c0e3388-ca97-4214-bfde-e5a1a2993160.jpeg",
"https://n.nordstrommedia.com/id/sr3/fea2af04-ca22-4948-a004-3ae1c3f25b71.jpeg"
],
"strikeOfPrice": 8365.54,
"price": 7909.34,
"ratings": {
"rating": 4,
"count": 345
},
"id": 15
},
{
"name": "Ultralight Stuff Sack Packable Belt Bag",
"description": "Built from lightweight ripstop, this belt bag is outfitted with plenty of adventure-ready features and packs down into its own pocket when you're back home",
"brand": "OSPREY",
"type": "bag",
"gender": "Female",
"size": 7,
"images": [
"https://n.nordstrommedia.com/id/sr3/8182c3a4-7f3a-4097-959b-0a923e2a2d24.jpeg",
"https://n.nordstrommedia.com/id/sr3/4711c78e-344b-4a48-b416-d551c7828e19.jpeg"
],
"strikeOfPrice": 4300,
"price": 2107.65,
"ratings": {
"rating": 5,
"count": 10
},
"id": 16
},
{
"name": "Lou Matelassé Leather Camera Bag",
"description": "A calfskin crossbody inspired by vintage camera bags goes for maximum impact with matelassé chevrons, logo-monogram hardware and a bold tassel at one side.",
"brand": "SAINT LAURENT",
"type": "bag",
"gender": "Female",
"size": 5,