-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
1372 lines (1372 loc) · 84.4 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
{
"allproducts": [
{
"id": 30,
"name": "ESSENTIALS DOWN JACKET",
"color": "Victory Blue",
"colortype": "blue",
"gender": "MEN",
"category": "clothes",
"original_price": "6499",
"final_price": "3799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2ad193f5f58d4180a3a2ad48008bc2b7_9366/ESSENTIALS_DOWN_JACKET_Blue_GT9173_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ac98893864d24ae1b30fad4a00aa23f2_9366/ESSENTIALS_DOWN_JACKET_Blue_GT9173_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b6ef2e221e5f4343b6fcad48008bca2d_9366/ESSENTIALS_DOWN_JACKET_Blue_GT9173_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d88640488507470dac97ad48008bd230_9366/ESSENTIALS_DOWN_JACKET_Blue_GT9173_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/7854b7b8280141d4a94aad37012aeda0_9366/ESSENTIALS_DOWN_JACKET_Blue_GT9173_01_laydown.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 341,
"rating": 4.3
},
{
"id": 22,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue / Cloud White / Semi Screaming Green / Collegiate Navy",
"colortype": "blue",
"gender": "WOMEN",
"category": "shoes",
"original_price": "4299",
"final_price": "2999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8012a88ae5804985800bae3001041997_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d8ad3916084e414e8b20ae3001041e97_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2cb5efaa55f5441bbf1cae3001041450_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/077fd491c1b14ac5ba61ae3001041ba9_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fbcd5c3416e54c3fa198ae30011fac6e_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 146,
"rating": 4.7
},
{
"id": 23,
"name": "SOFTKNIT LOAFERS",
"color": "BLACK & GREY (BLACK SOLE)",
"colortype": "black",
"category": "shoes",
"gender": "MEN",
"original_price": "4499",
"final_price": "3649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6f2bd794a7a4b50b109aebd00c86ebd_9366/PRIMIERTO_SHOES_Black_GA1187_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/24546a5d45ed4a1fb76caebd00c83478_9366/PRIMIERTO_SHOES_Black_GA1187_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4596bc35874e539ab1aebd00c82a43_9366/PRIMIERTO_SHOES_Black_GA1187_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bdbdac8d0c149eebc26aebd00c8345f_9366/PRIMIERTO_SHOES_Black_GA1187_06_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bca23665fb014f058facaebd00c831de_9366/PRIMIERTO_SHOES_Black_GA1187_41_detail.jpg"
],
"sizes": ["small", "large"],
"reviews": 122,
"rating": 2.5
},
{
"id": 17,
"name": "THEBE MAGUGU ALLOVER PRINT CROP TEE",
"color": "Multicolor / White / Ecru Tint",
"colortype": "white",
"category": "clothes",
"gender": "WOMEN",
"original_price": "4599",
"final_price": "2599",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/4b086728df1640cebf42ae890029f0b2_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e29578ea4f8a4b35abb2ae890029fb06_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f7b3e8ae06ef46fa9a41ae89002a026e_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ec9a0b655a5241dfbb3fae89002a2d1f_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b658bf894e2d4230a928ae89002a0f7f_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_41_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 78,
"rating": 4.6
},
{
"id": 8,
"name": "ADICOLOR CLASSICS LOCK-UP TREFOIL TRACK PANTS",
"color": "Black",
"category": "clothes",
"colortype": "black",
"gender": "MEN",
"original_price": "5499",
"final_price": "3799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/265722714d9d4f3c9962ad3a00e66f35_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a5589150a0f44a39a523ad3a00e67787_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/44d55b61556b44ffbb03ad3a00e67eec_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/58eb7dfd665345309542ad2f001e875e_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a0c71c1481ff4bc4a157ad3a00e68773_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_41_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 15,
"rating": 4
},
{
"id": 7,
"name": "ESSENTIALS CORE POLO TEE",
"color": "Bold Aqua",
"category": "clothes",
"colortype": "blue",
"gender": "MEN",
"original_price": "1499",
"final_price": "899",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0b20dcdcd1b44d1fa5d0ae170160a351_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5c3801f947b44da3b6b9ae170160a67e_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5e58b0a947cc48129eb8ae170160a167_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/527811905efd49b69e99ae170160a605_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/523dea9beeee4333a0e7ae170160a549_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_41_detail.jpg"
],
"sizes": ["small"],
"reviews": 11,
"rating": 4
},
{
"id": 1,
"name": "AERO 3 STRIPES TEE",
"color": "Semi Flash Red",
"colortype": "red",
"category": "clothes",
"gender": "MEN",
"original_price": "2499",
"final_price": "799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f3e8e61310a24063b819ae9f00a1c63b_9366/AERO_3_STRIPES_TEE_Red_H66369_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/57db86369e5c4161bde5ae9f00a1c3f1_9366/AERO_3_STRIPES_TEE_Red_H66369_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d0726719958b4fbcbf5cae9f00a1cded_9366/AERO_3_STRIPES_TEE_Red_H66369_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/873259e8a5ab440cbb35ae9f00a1cba3_9366/AERO_3_STRIPES_TEE_Red_H66369_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/86239d589c904b67bce6ae9f00a1cb2d_9366/AERO_3_STRIPES_TEE_Red_H66369_41_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 15,
"rating": 4
},
{
"id": 4,
"name": "ADICOLOR CLASSICS LOCK-UP TREFOIL TRACK PANTS",
"color": "Semi Turbo",
"colortype": "red",
"category": "clothes",
"gender": "MEN",
"original_price": "5499",
"final_price": "4799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/adfb7bae19504f52a18eadd0006886b9_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d6adf6e481274547bd14add000689b18_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6366091b86d4503a7c0add0006906e1_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/92d9aefcf4bc47c39e9badd00068c2c4_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_41_detail.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/beba923c02be46049938add00068e8dc_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_42_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 25,
"rating": 4
},
{
"id": 3,
"name": "SOFTKNIT LOAFERS",
"color": "BLACK & GREY (BLACK SOLE)",
"colortype": "black",
"category": "shoes",
"gender": "MEN",
"original_price": "4499",
"final_price": "3649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6f2bd794a7a4b50b109aebd00c86ebd_9366/PRIMIERTO_SHOES_Black_GA1187_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/24546a5d45ed4a1fb76caebd00c83478_9366/PRIMIERTO_SHOES_Black_GA1187_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4596bc35874e539ab1aebd00c82a43_9366/PRIMIERTO_SHOES_Black_GA1187_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bdbdac8d0c149eebc26aebd00c8345f_9366/PRIMIERTO_SHOES_Black_GA1187_06_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bca23665fb014f058facaebd00c831de_9366/PRIMIERTO_SHOES_Black_GA1187_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 122,
"rating": 2.5
},
{
"id": 24,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue",
"colortype": "blue",
"gender": "MEN",
"category": "shoes",
"original_price": "6499",
"final_price": "5649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0a6a5259b2684d2b812ead1601405b03_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5ff8eabb94dd43d5931fad1601406a02_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/62e6cff2be2d447b805bad16014070cc_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6b31d89388c649afbdd1ad160140773d_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0b1db47184c44b50b421ad1601407f7a_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 100,
"rating": 4.6
},
{
"id": 15,
"name": "TEE DRESS",
"color": "White",
"colortype": "white",
"gender": "WOMEN",
"category": "clothes",
"original_price": "5999",
"final_price": "4999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8394e01430a44527acd3ae9100f591ff_9366/Tee_Dress_White_HL6613_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d3fc5784f1e64b2d9fb2ae9100f5996e_9366/Tee_Dress_White_HL6613_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/245f0102908b45d9b8b4ae9100f5a20c_9366/Tee_Dress_White_HL6613_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/712699f461564be89af6ae84011f6c61_9366/Tee_Dress_White_HL6613_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/929870d18d9b435da798ae9100f5acc5_9366/Tee_Dress_White_HL6613_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 77,
"rating": 3.8
},
{
"id": 16,
"name": "ADICOLOR CLASSICS POPLIN BACK LOOSE TEE",
"color": "Wonder White",
"colortype": "white",
"gender": "WOMEN",
"category": "clothes",
"original_price": "4999",
"final_price": "3999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e4ae0e316c6548f9a114ae9200339b33_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f647a15a77294f38b49fae920033a337_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2e1ff598c5a64f808296ae920033ac61_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/885b5533b2a24dd78382ae8c003909ae_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1150809b30a54c259ebaae920033b867_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 74,
"rating": 3.8
},
{
"id": 6,
"name": "ADICOLOR CLASSICS FIREBIRD PRIMEBLUE TRACK PANTS",
"color": "App Sky Rush",
"colortype": "blue",
"category": "clothes",
"gender": "MEN",
"original_price": "6499",
"final_price": "2799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/00d0eeedcadb44a1b1c9ae0d0102f02a_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6172629ba6b94d2ba8dcae0d0102f8d8_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/72d1581a080f44fab2a1ae0d01030142_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/7f91bbd764b34fecbf96ae0d01030abc_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ed863e6f145341a3bdb5ae0d01034361_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_01_laydown.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 27,
"rating": 3
},
{
"id": 2,
"name": "AEROREADY DESIGNED TO MOVE SPORT 3-STRIPES TANK TOP",
"color": "Black",
"colortype": "black",
"category": "clothes",
"gender": "MEN",
"original_price": "5499",
"final_price": "2799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bc33224c3e54955a800ac8300be6cd4_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4ca29e0fcc44e28c96ac8300be9f28_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0dfa487c7d7948ba82deac8300bead79_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/52a8f81a00314cbdbc94ac8300beecd2_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b57db224c8564fdcbb02ac8300bebd50_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_41_detail.jpg"
],
"sizes": ["small", "large"],
"reviews": 15,
"rating": 5
},
{
"id": 5,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue",
"colortype": "blue",
"gender": "MEN",
"category": "shoes",
"original_price": "6499",
"final_price": "5649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0a6a5259b2684d2b812ead1601405b03_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5ff8eabb94dd43d5931fad1601406a02_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/62e6cff2be2d447b805bad16014070cc_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6b31d89388c649afbdd1ad160140773d_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0b1db47184c44b50b421ad1601407f7a_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 100,
"rating": 4.6
},
{
"id": 9,
"name": "COURT RAGE SHOES",
"color": "Scarlet Red",
"colortype": "red",
"gender": "MEN",
"category": "shoes",
"original_price": "10499",
"final_price": "7799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/93a9ef337d9b487a9c48aec80084646f_9366/COURT_RAGE_SHOES_Red_GA0945_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e1f8e74cf6c14408b488aec800846c52_9366/COURT_RAGE_SHOES_Red_GA0945_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fa814e55547e414eb6d2aec800848219_9366/COURT_RAGE_SHOES_Red_GA0945_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e4400e45582f4e94a6d0aec8008479a5_9366/COURT_RAGE_SHOES_Red_GA0945_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/267f79cfc58145c084bbaec800847e43_9366/COURT_RAGE_SHOES_Red_GA0945_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 15,
"rating": 4.1
},
{
"id": 21,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Stone / Solar Red / Dove Grey",
"colortype": "white",
"category": "shoes",
"gender": "WOMEN",
"original_price": "3579",
"final_price": "2599",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/3882cfc554fb4e6da5f2ae30010aa513_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1ff57bd4ac4c41929aeeae30010aa4ee_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/56713ff57ad4400886eeae30010aa33d_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/95b7a1c636264acd93faae30010aa619_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/15d16a5877dc49d59b17ae30010aa344_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 49,
"rating": 4.6
},
{
"id": 22,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue / Cloud White / Semi Screaming Green / Collegiate Navy",
"colortype": "blue",
"gender": "WOMEN",
"category": "shoes",
"original_price": "4299",
"final_price": "2999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8012a88ae5804985800bae3001041997_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d8ad3916084e414e8b20ae3001041e97_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2cb5efaa55f5441bbf1cae3001041450_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/077fd491c1b14ac5ba61ae3001041ba9_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fbcd5c3416e54c3fa198ae30011fac6e_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 146,
"rating": 4.7
},
{
"id": 23,
"name": "SOFTKNIT LOAFERS",
"color": "BLACK & GREY (BLACK SOLE)",
"colortype": "black",
"category": "shoes",
"gender": "MEN",
"original_price": "4499",
"final_price": "3649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6f2bd794a7a4b50b109aebd00c86ebd_9366/PRIMIERTO_SHOES_Black_GA1187_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/24546a5d45ed4a1fb76caebd00c83478_9366/PRIMIERTO_SHOES_Black_GA1187_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4596bc35874e539ab1aebd00c82a43_9366/PRIMIERTO_SHOES_Black_GA1187_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bdbdac8d0c149eebc26aebd00c8345f_9366/PRIMIERTO_SHOES_Black_GA1187_06_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bca23665fb014f058facaebd00c831de_9366/PRIMIERTO_SHOES_Black_GA1187_41_detail.jpg"
],
"sizes": ["small", "large"],
"reviews": 122,
"rating": 2.5
},
{
"id": 24,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue",
"colortype": "blue",
"gender": "MEN",
"category": "shoes",
"original_price": "6499",
"final_price": "5649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0a6a5259b2684d2b812ead1601405b03_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5ff8eabb94dd43d5931fad1601406a02_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/62e6cff2be2d447b805bad16014070cc_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6b31d89388c649afbdd1ad160140773d_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0b1db47184c44b50b421ad1601407f7a_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 100,
"rating": 4.6
},
{
"id": 25,
"name": "COURT RAGE SHOES",
"color": "Scarlet Red",
"colortype": "red",
"gender": "MEN",
"category": "shoes",
"original_price": "10499",
"final_price": "7799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/93a9ef337d9b487a9c48aec80084646f_9366/COURT_RAGE_SHOES_Red_GA0945_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e1f8e74cf6c14408b488aec800846c52_9366/COURT_RAGE_SHOES_Red_GA0945_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fa814e55547e414eb6d2aec800848219_9366/COURT_RAGE_SHOES_Red_GA0945_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e4400e45582f4e94a6d0aec8008479a5_9366/COURT_RAGE_SHOES_Red_GA0945_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/267f79cfc58145c084bbaec800847e43_9366/COURT_RAGE_SHOES_Red_GA0945_05_standard.jpg"
],
"sizes": ["medium", "large"],
"reviews": 15,
"rating": 4.1
},
{
"id": 26,
"name": "FLYDOOT SHOES",
"color": "Shadow Red / Cloud White",
"colortype": "red",
"gender": "MEN",
"category": "shoes",
"original_price": "11499",
"final_price": "7799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bea8034cce4147cd95c5ae8f012e4c81_9366/FLYDOOT_SHOES_Burgundy_GA0890_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d6d3e9caa4f84b5cb176ae8f012e4cf1_9366/FLYDOOT_SHOES_Burgundy_GA0890_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/acb8da5736fd4204927bae8f012e499c_9366/FLYDOOT_SHOES_Burgundy_GA0890_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/565751e158f94ffa9cb0ae8f012e46bd_9366/FLYDOOT_SHOES_Burgundy_GA0890_06_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fd676886858641ac8975ae8f012e4dea_9366/FLYDOOT_SHOES_Burgundy_GA0890_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 15,
"rating": 4.2
},
{
"id": 27,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Crew Blue / Stone / Glow / Collegiate Navy",
"colortype": "blue",
"gender": "MEN",
"category": "shoes",
"original_price": "15499",
"final_price": "12799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/119dc242537e4ab080dfae32009486f6_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2946_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8bbb28f713bc4da187b9ae32009483f3_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2946_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b2e6594caa334b51b753ae32009486b7_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2946_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/182682579d9d4c40b988ae320094846d_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2946_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0f0ee9b3cba94810b1efae320094863c_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2946_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 155,
"rating": 4.7
},
{
"id": 15,
"name": "TEE DRESS",
"color": "White",
"colortype": "white",
"gender": "WOMEN",
"category": "clothes",
"original_price": "5999",
"final_price": "4999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8394e01430a44527acd3ae9100f591ff_9366/Tee_Dress_White_HL6613_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d3fc5784f1e64b2d9fb2ae9100f5996e_9366/Tee_Dress_White_HL6613_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/245f0102908b45d9b8b4ae9100f5a20c_9366/Tee_Dress_White_HL6613_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/712699f461564be89af6ae84011f6c61_9366/Tee_Dress_White_HL6613_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/929870d18d9b435da798ae9100f5acc5_9366/Tee_Dress_White_HL6613_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 77,
"rating": 3.8
},
{
"id": 16,
"name": "ADICOLOR CLASSICS POPLIN BACK LOOSE TEE",
"color": "Wonder White",
"colortype": "white",
"gender": "WOMEN",
"category": "clothes",
"original_price": "4999",
"final_price": "3999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e4ae0e316c6548f9a114ae9200339b33_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f647a15a77294f38b49fae920033a337_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2e1ff598c5a64f808296ae920033ac61_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/885b5533b2a24dd78382ae8c003909ae_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1150809b30a54c259ebaae920033b867_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 74,
"rating": 3.8
},
{
"id": 28,
"name": "DURAMO 10 SHOES",
"color": "Vivid Red / Cloud White / Core Black",
"colortype": "red",
"gender": "MEN",
"category": "shoes",
"original_price": "17499",
"final_price": "13799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f5fba6c8819540fc9aa7ad6700ba69e1_9366/Duramo_10_Shoes_Red_GW8757_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/cce67a9e5c9643e1aa41ad6700ba7842_9366/Duramo_10_Shoes_Red_GW8757_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1e83407edb274aec84e6ad6700ba8016_9366/Duramo_10_Shoes_Red_GW8757_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/92421230f31240569994ad6700ba87c1_9366/Duramo_10_Shoes_Red_GW8757_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a28160aa8d2a4d60b921ad6700ba9028_9366/Duramo_10_Shoes_Red_GW8757_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 245,
"rating": 4.4
},
{
"id": 29,
"name": "PRIMIERTO SHOES",
"color": "Core Black / Stone / Orange Rush",
"colortype": "black",
"gender": "MEN",
"category": "shoes",
"original_price": "25499",
"final_price": "15799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6f2bd794a7a4b50b109aebd00c86ebd_9366/PRIMIERTO_SHOES_Black_GA1187_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/24546a5d45ed4a1fb76caebd00c83478_9366/PRIMIERTO_SHOES_Black_GA1187_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4596bc35874e539ab1aebd00c82a43_9366/PRIMIERTO_SHOES_Black_GA1187_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bdbdac8d0c149eebc26aebd00c8345f_9366/PRIMIERTO_SHOES_Black_GA1187_06_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bca23665fb014f058facaebd00c831de_9366/PRIMIERTO_SHOES_Black_GA1187_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 25,
"rating": 4.4
},
{
"id": 11,
"name": "ADICOLOR CLASSICS LOCK-UP TRACK TOP",
"color": "Black",
"category": "clothes",
"colortype": "black",
"gender": "WOMEN",
"original_price": "4999",
"final_price": "3999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/4bb0fb54a4a3410aae50ad1600f28a5e_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bf5d982578674b66ae56ad1600f29173_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/df4657c9c19142f58338ad1600f298a2_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a8cacb4cc69b4db7997dad1600f2b5bf_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/079e7c4d73c949a2af5dad1600f2a112_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 46,
"rating": 4.1
},
{
"id": 12,
"name": "ADICOLOR CLASSICS FIREBIRD PRIMEBLUE TRACK JACKET",
"color": "Real Magenta",
"colortype": "red",
"gender": "WOMEN",
"category": "clothes",
"original_price": "5999",
"final_price": "3559",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/514b6979fa4a4e0992bcae1c00d4bd72_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/281d62537d844aa38baeae1c00d4c5f7_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6f3cf1c142b644988635ae1c00d4cf10_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/275f0e01131b43d48a8aae1c00d4f864_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/02cccacd1a614aa3b3f1ae1c00d4db71_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 64,
"rating": 4
},
{
"id": 13,
"name": "SUPERNOVA 2 RUNNING SHOES",
"color": "Solar Green / Night Metallic / Grey Six",
"colortype": "green",
"gender": "WOMEN",
"category": "sheos",
"original_price": "10999",
"final_price": "9999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a492af164e53479988aeae2b004fe0b9_9366/Supernova_2_Running_Shoes_Green_GW9092_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0bbde8a74caa42a3a076ae2b004ff0cb_9366/Supernova_2_Running_Shoes_Green_GW9092_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/246ce95ab33f47ba9ea3ae2b004ff97e_9366/Supernova_2_Running_Shoes_Green_GW9092_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/7355406693f14567bc01ae2b0050024f_9366/Supernova_2_Running_Shoes_Green_GW9092_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8b253171cdc24af798fbae2b00500b57_9366/Supernova_2_Running_Shoes_Green_GW9092_05_standard.jpg"
],
"sizes": ["medium", "large"],
"reviews": 47,
"rating": 4.2
},
{
"id": 14,
"name": "SUPERNOVA 2 RUNNING SHOES",
"color": "Core Black / Grey Six / Core Black",
"colortype": "black",
"category": "sheos",
"gender": "WOMEN",
"original_price": "12999",
"final_price": "9999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ddd7c2fceb18476f9115ae2a008922db_9366/Supernova_2_Running_Shoes_Black_GW9087_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d27a9ab359d94f67a5beae2a008932ce_9366/Supernova_2_Running_Shoes_Black_GW9087_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5ba36ad1e1f4426fb406ae2a00893b13_9366/Supernova_2_Running_Shoes_Black_GW9087_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0495056012bd46848a5eae2a00894190_9366/Supernova_2_Running_Shoes_Black_GW9087_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2e8bb08e062d46c8971bae2a00894a41_9366/Supernova_2_Running_Shoes_Black_GW9087_05_standard.jpg"
],
"sizes": ["large"],
"reviews": 46,
"rating": 4.2
},
{
"id": 15,
"name": "TEE DRESS",
"color": "White",
"colortype": "white",
"gender": "WOMEN",
"category": "clothes",
"original_price": "5999",
"final_price": "4999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8394e01430a44527acd3ae9100f591ff_9366/Tee_Dress_White_HL6613_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d3fc5784f1e64b2d9fb2ae9100f5996e_9366/Tee_Dress_White_HL6613_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/245f0102908b45d9b8b4ae9100f5a20c_9366/Tee_Dress_White_HL6613_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/712699f461564be89af6ae84011f6c61_9366/Tee_Dress_White_HL6613_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/929870d18d9b435da798ae9100f5acc5_9366/Tee_Dress_White_HL6613_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 77,
"rating": 3.8
},
{
"id": 16,
"name": "ADICOLOR CLASSICS POPLIN BACK LOOSE TEE",
"color": "Wonder White",
"colortype": "white",
"gender": "WOMEN",
"category": "clothes",
"original_price": "4999",
"final_price": "3999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e4ae0e316c6548f9a114ae9200339b33_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f647a15a77294f38b49fae920033a337_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2e1ff598c5a64f808296ae920033ac61_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/885b5533b2a24dd78382ae8c003909ae_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1150809b30a54c259ebaae920033b867_9366/Adicolor_Classics_Poplin_Back_Loose_Tee_Beige_HL9306_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 74,
"rating": 3.8
},
{
"id": 17,
"name": "THEBE MAGUGU ALLOVER PRINT CROP TEE",
"color": "Multicolor / White / Ecru Tint",
"colortype": "white",
"category": "clothes",
"gender": "WOMEN",
"original_price": "4599",
"final_price": "2599",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/4b086728df1640cebf42ae890029f0b2_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e29578ea4f8a4b35abb2ae890029fb06_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f7b3e8ae06ef46fa9a41ae89002a026e_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ec9a0b655a5241dfbb3fae89002a2d1f_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b658bf894e2d4230a928ae89002a0f7f_9366/Thebe_Magugu_Allover_Print_Crop_Tee_Multicolor_HM2621_41_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 78,
"rating": 4.6
},
{
"id": 18,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Stone / Solar Red / Dove Grey",
"colortype": "white",
"category": "shoes",
"gender": "WOMEN",
"original_price": "3579",
"final_price": "2599",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/3882cfc554fb4e6da5f2ae30010aa513_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1ff57bd4ac4c41929aeeae30010aa4ee_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/56713ff57ad4400886eeae30010aa33d_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/95b7a1c636264acd93faae30010aa619_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/15d16a5877dc49d59b17ae30010aa344_9366/CORE_LINEAR_Quickflow_SHOES_Grey_EY2944_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 49,
"rating": 4.6
},
{
"id": 19,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue / Cloud White / Semi Screaming Green / Collegiate Navy",
"colortype": "blue",
"gender": "WOMEN",
"category": "shoes",
"original_price": "4299",
"final_price": "2999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8012a88ae5804985800bae3001041997_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d8ad3916084e414e8b20ae3001041e97_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/2cb5efaa55f5441bbf1cae3001041450_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/077fd491c1b14ac5ba61ae3001041ba9_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fbcd5c3416e54c3fa198ae30011fac6e_9366/CORE_LINEAR_Quickflow_SHOES_Blue_EY2945_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 146,
"rating": 4.7
},
{
"id": 20,
"name": "FUTURE ICONS 3-STRIPES TEE",
"color": "Magic Grey",
"colortype": "blue",
"gender": "WOMEN",
"category": "clothes",
"original_price": "2299",
"final_price": "1199",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b7bd106a5d764d908b46aebb0157ffe3_9366/FUTURE_ICONS_3-STRIPES_TEE_Grey_HS8785_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/3e4e5792c9d749a88d1baebb0157e76e_9366/FUTURE_ICONS_3-STRIPES_TEE_Grey_HS8785_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/9c74d742ec074b168453aebb01580b33_9366/FUTURE_ICONS_3-STRIPES_TEE_Grey_HS8785_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/cbc3a2a3c06e4a7db6a9aebb0157fe97_9366/FUTURE_ICONS_3-STRIPES_TEE_Grey_HS8785_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/32a091467a6b4bc38c77aebb01580260_9366/FUTURE_ICONS_3-STRIPES_TEE_Grey_HS8785_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 64,
"rating": 4
}
],
"mens": [
{
"id": 1,
"name": "AERO 3 STRIPES TEE",
"color": "Semi Flash Red",
"colortype": "red",
"category": "clothes",
"gender": "MEN",
"original_price": "2499",
"final_price": "799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f3e8e61310a24063b819ae9f00a1c63b_9366/AERO_3_STRIPES_TEE_Red_H66369_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/57db86369e5c4161bde5ae9f00a1c3f1_9366/AERO_3_STRIPES_TEE_Red_H66369_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d0726719958b4fbcbf5cae9f00a1cded_9366/AERO_3_STRIPES_TEE_Red_H66369_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/873259e8a5ab440cbb35ae9f00a1cba3_9366/AERO_3_STRIPES_TEE_Red_H66369_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/86239d589c904b67bce6ae9f00a1cb2d_9366/AERO_3_STRIPES_TEE_Red_H66369_41_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 125,
"rating": 3.7
},
{
"id": 2,
"name": "AEROREADY DESIGNED TO MOVE SPORT 3-STRIPES TANK TOP",
"color": "Black",
"colortype": "black",
"category": "clothes",
"gender": "MEN",
"original_price": "5499",
"final_price": "2799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bc33224c3e54955a800ac8300be6cd4_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4ca29e0fcc44e28c96ac8300be9f28_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0dfa487c7d7948ba82deac8300bead79_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/52a8f81a00314cbdbc94ac8300beecd2_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/b57db224c8564fdcbb02ac8300bebd50_9366/AEROREADY_Designed_To_Move_Sport_3-Stripes_Tank_Top_Black_GM2130_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 155,
"rating": 3.3
},
{
"id": 7,
"name": "ESSENTIALS CORE POLO TEE",
"color": "Bold Aqua",
"colortype": "blue",
"category": "clothes",
"gender": "MEN",
"original_price": "1499",
"final_price": "899",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0b20dcdcd1b44d1fa5d0ae170160a351_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5c3801f947b44da3b6b9ae170160a67e_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5e58b0a947cc48129eb8ae170160a167_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/527811905efd49b69e99ae170160a605_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/523dea9beeee4333a0e7ae170160a549_9366/ESSENTIALS_CORE_POLO_TEE_Turquoise_GR1304_41_detail.jpg"
],
"sizes": ["small"],
"reviews": 11,
"rating": 5
},
{
"id": 4,
"name": "ADICOLOR CLASSICS LOCK-UP TREFOIL TRACK PANTS",
"color": "Semi Turbo",
"colortype": "red",
"category": "clothes",
"gender": "MEN",
"original_price": "5499",
"final_price": "4799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/adfb7bae19504f52a18eadd0006886b9_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d6adf6e481274547bd14add000689b18_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6366091b86d4503a7c0add0006906e1_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/92d9aefcf4bc47c39e9badd00068c2c4_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_41_detail.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/beba923c02be46049938add00068e8dc_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Red_HC2003_42_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 25,
"rating": 4
},
{
"id": 8,
"name": "ADICOLOR CLASSICS LOCK-UP TREFOIL TRACK PANTS",
"color": "Black",
"colortype": "black",
"category": "clothes",
"gender": "MEN",
"original_price": "5499",
"final_price": "3799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/265722714d9d4f3c9962ad3a00e66f35_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a5589150a0f44a39a523ad3a00e67787_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/44d55b61556b44ffbb03ad3a00e67eec_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/58eb7dfd665345309542ad2f001e875e_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a0c71c1481ff4bc4a157ad3a00e68773_9366/Adicolor_Classics_Lock-Up_Trefoil_Track_Pants_Black_H41387_41_detail.jpg"
],
"sizes": ["small", "medium"],
"reviews": 214,
"rating": 4.5
},
{
"id": 6,
"name": "ADICOLOR CLASSICS FIREBIRD PRIMEBLUE TRACK PANTS",
"color": "App Sky Rush",
"colortype": "blue",
"category": "clothes",
"gender": "MEN",
"original_price": "6499",
"final_price": "2799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/00d0eeedcadb44a1b1c9ae0d0102f02a_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6172629ba6b94d2ba8dcae0d0102f8d8_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_22_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/72d1581a080f44fab2a1ae0d01030142_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/7f91bbd764b34fecbf96ae0d01030abc_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ed863e6f145341a3bdb5ae0d01034361_9366/Adicolor_Classics_Firebird_Primeblue_Track_Pants_Blue_HB9386_01_laydown.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 27,
"rating": 3
},
{
"id": 3,
"name": "SOFTKNIT LOAFERS",
"color": "BLACK & GREY (BLACK SOLE)",
"colortype": "black",
"category": "shoes",
"gender": "MEN",
"original_price": "4499",
"final_price": "3649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/f6f2bd794a7a4b50b109aebd00c86ebd_9366/PRIMIERTO_SHOES_Black_GA1187_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/24546a5d45ed4a1fb76caebd00c83478_9366/PRIMIERTO_SHOES_Black_GA1187_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/1d4596bc35874e539ab1aebd00c82a43_9366/PRIMIERTO_SHOES_Black_GA1187_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6bdbdac8d0c149eebc26aebd00c8345f_9366/PRIMIERTO_SHOES_Black_GA1187_06_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bca23665fb014f058facaebd00c831de_9366/PRIMIERTO_SHOES_Black_GA1187_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 122,
"rating": 2.5
},
{
"id": 5,
"name": "CORE LINEAR QUICKFLOW SHOES",
"color": "Victory Blue",
"colortype": "blue",
"gender": "MEN",
"category": "shoes",
"original_price": "6499",
"final_price": "5649",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0a6a5259b2684d2b812ead1601405b03_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5ff8eabb94dd43d5931fad1601406a02_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/62e6cff2be2d447b805bad16014070cc_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6b31d89388c649afbdd1ad160140773d_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0b1db47184c44b50b421ad1601407f7a_9366/Lite_Racer_CLN_2.0_Shoes_Blue_GZ2812_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 100,
"rating": 4.6
},
{
"id": 9,
"name": "COURT RAGE SHOES",
"color": "Scarlet Red",
"colortype": "red",
"gender": "MEN",
"category": "shoes",
"original_price": "10499",
"final_price": "7799",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/93a9ef337d9b487a9c48aec80084646f_9366/COURT_RAGE_SHOES_Red_GA0945_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e1f8e74cf6c14408b488aec800846c52_9366/COURT_RAGE_SHOES_Red_GA0945_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/fa814e55547e414eb6d2aec800848219_9366/COURT_RAGE_SHOES_Red_GA0945_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/e4400e45582f4e94a6d0aec8008479a5_9366/COURT_RAGE_SHOES_Red_GA0945_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/267f79cfc58145c084bbaec800847e43_9366/COURT_RAGE_SHOES_Red_GA0945_05_standard.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 15,
"rating": 4.1
}
],
"womens": [
{
"id": 11,
"name": "ADICOLOR CLASSICS LOCK-UP TRACK TOP",
"color": "Black",
"category": "clothes",
"colortype": "black",
"gender": "WOMEN",
"original_price": "4999",
"final_price": "3999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/4bb0fb54a4a3410aae50ad1600f28a5e_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/bf5d982578674b66ae56ad1600f29173_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/df4657c9c19142f58338ad1600f298a2_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a8cacb4cc69b4db7997dad1600f2b5bf_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/079e7c4d73c949a2af5dad1600f2a112_9366/Adicolor_Classics_Lock-Up_Track_Top_Black_H20540_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 46,
"rating": 4.1
},
{
"id": 12,
"name": "ADICOLOR CLASSICS FIREBIRD PRIMEBLUE TRACK JACKET",
"color": "Real Magenta",
"colortype": "red",
"gender": "WOMEN",
"category": "clothes",
"original_price": "5999",
"final_price": "3559",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/514b6979fa4a4e0992bcae1c00d4bd72_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_21_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/281d62537d844aa38baeae1c00d4c5f7_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_23_hover_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/6f3cf1c142b644988635ae1c00d4cf10_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_25_model.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/275f0e01131b43d48a8aae1c00d4f864_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_01_laydown.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/02cccacd1a614aa3b3f1ae1c00d4db71_9366/Adicolor_Classics_Firebird_Primeblue_Track_Jacket_Burgundy_HG3787_41_detail.jpg"
],
"sizes": ["small", "medium", "large"],
"reviews": 64,
"rating": 4
},
{
"id": 13,
"name": "SUPERNOVA 2 RUNNING SHOES",
"color": "Solar Green / Night Metallic / Grey Six",
"colortype": "green",
"gender": "WOMEN",
"category": "sheos",
"original_price": "10999",
"final_price": "9999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/a492af164e53479988aeae2b004fe0b9_9366/Supernova_2_Running_Shoes_Green_GW9092_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0bbde8a74caa42a3a076ae2b004ff0cb_9366/Supernova_2_Running_Shoes_Green_GW9092_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/246ce95ab33f47ba9ea3ae2b004ff97e_9366/Supernova_2_Running_Shoes_Green_GW9092_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/7355406693f14567bc01ae2b0050024f_9366/Supernova_2_Running_Shoes_Green_GW9092_04_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/8b253171cdc24af798fbae2b00500b57_9366/Supernova_2_Running_Shoes_Green_GW9092_05_standard.jpg"
],
"sizes": ["medium", "large"],
"reviews": 47,
"rating": 4.2
},
{
"id": 14,
"name": "SUPERNOVA 2 RUNNING SHOES",
"color": "Core Black / Grey Six / Core Black",
"colortype": "black",
"category": "sheos",
"gender": "WOMEN",
"original_price": "12999",
"final_price": "9999",
"images": [
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/ddd7c2fceb18476f9115ae2a008922db_9366/Supernova_2_Running_Shoes_Black_GW9087_01_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/d27a9ab359d94f67a5beae2a008932ce_9366/Supernova_2_Running_Shoes_Black_GW9087_02_standard_hover.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/5ba36ad1e1f4426fb406ae2a00893b13_9366/Supernova_2_Running_Shoes_Black_GW9087_03_standard.jpg",
"https://assets.adidas.com/images/h_840,f_auto,q_auto,fl_lossy,c_fill,g_auto/0495056012bd46848a5eae2a00894190_9366/Supernova_2_Running_Shoes_Black_GW9087_04_standard.jpg",