-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
1512 lines (1512 loc) · 54.3 KB
/
Copy pathdb.json
File metadata and controls
1512 lines (1512 loc) · 54.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"products": [
{
"id": "11",
"title": "Classic Red Baseball Cap",
"price": 35,
"description": "Elevate your casual wardrobe with this timeless red baseball cap. Crafted from durable fabric, it features a comfortable fit with an adjustable strap at the back, ensuring one size fits all. Perfect for sunny days or adding a sporty touch to your outfit.",
"images": [
"https://i.imgur.com/cBuLvBi.jpeg",
"https://i.imgur.com/N1GkCIR.jpeg",
"https://i.imgur.com/kKc9A5p.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 17,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "12",
"title": "Classic Black Baseball Cap",
"price": 58,
"description": "Elevate your casual wear with this timeless black baseball cap. Made with high-quality, breathable fabric, it features an adjustable strap for the perfect fit. Whether you’re out for a jog or just running errands, this cap adds a touch of style to any outfit.",
"images": [
"https://i.imgur.com/KeqG6r4.jpeg",
"https://i.imgur.com/xGQOw3p.jpeg",
"https://i.imgur.com/oO5OUjb.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 77,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "13",
"title": "Classic Olive Chino Shorts",
"price": 84,
"description": "Elevate your casual wardrobe with these classic olive chino shorts. Designed for comfort and versatility, they feature a smooth waistband, practical pockets, and a tailored fit that makes them perfect for both relaxed weekends and smart-casual occasions. The durable fabric ensures they hold up throughout your daily activities while maintaining a stylish look.",
"images": [
"https://i.imgur.com/UsFIvYs.jpeg",
"https://i.imgur.com/YIq57b6.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 83,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "14",
"title": "Classic High-Waisted Athletic Shorts",
"price": 43,
"description": "Stay comfortable and stylish with our Classic High-Waisted Athletic Shorts. Designed for optimal movement and versatility, these shorts are a must-have for your workout wardrobe. Featuring a figure-flattering high waist, breathable fabric, and a secure fit that ensures they stay in place during any activity, these shorts are perfect for the gym, running, or even just casual wear.",
"images": [
"https://i.imgur.com/eGOUveI.jpeg",
"https://i.imgur.com/UcsGO7E.jpeg",
"https://i.imgur.com/NLn4e7S.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 43,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "15",
"title": "Classic White Crew Neck T-Shirt",
"price": 39,
"description": "Elevate your basics with this versatile white crew neck tee. Made from a soft, breathable cotton blend, it offers both comfort and durability. Its sleek, timeless design ensures it pairs well with virtually any outfit. Ideal for layering or wearing on its own, this t-shirt is a must-have staple for every wardrobe.",
"images": [
"https://i.imgur.com/axsyGpD.jpeg",
"https://i.imgur.com/T8oq9X2.jpeg",
"https://i.imgur.com/J6MinJn.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 91,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "16",
"title": "Classic White Tee - Timeless Style and Comfort",
"price": 73,
"description": "Elevate your everyday wardrobe with our Classic White Tee. Crafted from premium soft cotton material, this versatile t-shirt combines comfort with durability, perfect for daily wear. Featuring a relaxed, unisex fit that flatters every body type, it's a staple piece for any casual ensemble. Easy to care for and machine washable, this white tee retains its shape and softness wash after wash. Pair it with your favorite jeans or layer it under a jacket for a smart look.",
"images": [
"https://i.imgur.com/Y54Bt8J.jpeg",
"https://i.imgur.com/SZPDSgy.jpeg",
"https://i.imgur.com/sJv4Xx0.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 74,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "17",
"title": "Classic Black T-Shirt",
"price": 35,
"description": "Elevate your everyday style with our Classic Black T-Shirt. This staple piece is crafted from soft, breathable cotton for all-day comfort. Its versatile design features a classic crew neck and short sleeves, making it perfect for layering or wearing on its own. Durable and easy to care for, it's sure to become a favorite in your wardrobe.",
"images": [
"https://i.imgur.com/9DqEOV5.jpeg",
"https://i.imgur.com/ae0AEYn.jpeg",
"https://i.imgur.com/mZ4rUjj.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 1,
"name": "Clothes",
"image": "https://i.imgur.com/QkIa5tT.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 41,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "18",
"title": "Sleek White & Orange Wireless Gaming Controller",
"price": 69,
"description": "Elevate your gaming experience with this state-of-the-art wireless controller, featuring a crisp white base with vibrant orange accents. Designed for precision play, the ergonomic shape and responsive buttons provide maximum comfort and control for endless hours of gameplay. Compatible with multiple gaming platforms, this controller is a must-have for any serious gamer looking to enhance their setup.",
"images": [
"https://i.imgur.com/ZANVnHE.jpeg",
"https://i.imgur.com/Ro5z6Tn.jpeg",
"https://i.imgur.com/woA93Li.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 88,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "19",
"title": "Sleek Wireless Headphone & Inked Earbud Set",
"price": 44,
"description": "Experience the fusion of style and sound with this sophisticated audio set featuring a pair of sleek, white wireless headphones offering crystal-clear sound quality and over-ear comfort. The set also includes a set of durable earbuds, perfect for an on-the-go lifestyle. Elevate your music enjoyment with this versatile duo, designed to cater to all your listening needs.",
"images": [
"https://i.imgur.com/yVeIeDa.jpeg",
"https://i.imgur.com/jByJ4ih.jpeg",
"https://i.imgur.com/KXj6Tpb.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 40,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "20",
"title": "Sleek Comfort-Fit Over-Ear Headphones",
"price": 28,
"description": "Experience superior sound quality with our Sleek Comfort-Fit Over-Ear Headphones, designed for prolonged use with cushioned ear cups and an adjustable, padded headband. Ideal for immersive listening, whether you're at home, in the office, or on the move. Their durable construction and timeless design provide both aesthetically pleasing looks and long-lasting performance.",
"images": [
"https://i.imgur.com/SolkFEB.jpeg",
"https://i.imgur.com/KIGW49u.jpeg",
"https://i.imgur.com/mWwek7p.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 54,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "21",
"title": "Efficient 2-Slice Toaster",
"price": 48,
"description": "Enhance your morning routine with our sleek 2-slice toaster, featuring adjustable browning controls and a removable crumb tray for easy cleaning. This compact and stylish appliance is perfect for any kitchen, ensuring your toast is always golden brown and delicious.",
"images": [
"https://i.imgur.com/keVCVIa.jpeg",
"https://i.imgur.com/afHY7v2.jpeg",
"https://i.imgur.com/yAOihUe.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 28,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "22",
"title": "Sleek Wireless Computer Mouse",
"price": 10,
"description": "Experience smooth and precise navigation with this modern wireless mouse, featuring a glossy finish and a comfortable ergonomic design. Its responsive tracking and easy-to-use interface make it the perfect accessory for any desktop or laptop setup. The stylish blue hue adds a splash of color to your workspace, while its compact size ensures it fits neatly in your bag for on-the-go productivity.",
"images": [
"https://i.imgur.com/w3Y8NwQ.jpeg",
"https://i.imgur.com/WJFOGIC.jpeg",
"https://i.imgur.com/dV4Nklf.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 53,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "23",
"title": "Sleek Modern Laptop with Ambient Lighting",
"price": 43,
"description": "Experience next-level computing with our ultra-slim laptop, featuring a stunning display illuminated by ambient lighting. This high-performance machine is perfect for both work and play, delivering powerful processing in a sleek, portable design. The vibrant colors add a touch of personality to your tech collection, making it as stylish as it is functional.",
"images": [
"https://i.imgur.com/OKn1KFI.jpeg",
"https://i.imgur.com/G4f21Ai.jpeg",
"https://i.imgur.com/Z9oKRVJ.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 67,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "24",
"title": "Sleek Modern Laptop for Professionals",
"price": 97,
"description": "Experience cutting-edge technology and elegant design with our latest laptop model. Perfect for professionals on-the-go, this high-performance laptop boasts a powerful processor, ample storage, and a long-lasting battery life, all encased in a lightweight, slim frame for ultimate portability. Shop now to elevate your work and play.",
"images": [
"https://i.imgur.com/ItHcq7o.jpeg",
"https://i.imgur.com/55GM3XZ.jpeg",
"https://i.imgur.com/tcNJxoW.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 44,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "25",
"title": "Stylish Red & Silver Over-Ear Headphones",
"price": 39,
"description": "Immerse yourself in superior sound quality with these sleek red and silver over-ear headphones. Designed for comfort and style, the headphones feature cushioned ear cups, an adjustable padded headband, and a detachable red cable for easy storage and portability. Perfect for music lovers and audiophiles who value both appearance and audio fidelity.",
"images": [
"https://i.imgur.com/YaSqa06.jpeg",
"https://i.imgur.com/isQAliJ.jpeg",
"https://i.imgur.com/5B8UQfh.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 26,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "26",
"title": "Sleek Mirror Finish Phone Case",
"price": 27,
"description": "Enhance your smartphone's look with this ultra-sleek mirror finish phone case. Designed to offer style with protection, the case features a reflective surface that adds a touch of elegance while keeping your device safe from scratches and impacts. Perfect for those who love a minimalist and modern aesthetic.",
"images": [
"https://i.imgur.com/yb9UQKL.jpeg",
"https://i.imgur.com/m2owtQG.jpeg",
"https://i.imgur.com/bNiORct.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 49,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "27",
"title": "Sleek Smartwatch with Vibrant Display",
"price": 16,
"description": "Experience modern timekeeping with our high-tech smartwatch, featuring a vivid touch screen display, customizable watch faces, and a comfortable blue silicone strap. This smartwatch keeps you connected with notifications and fitness tracking while showcasing exceptional style and versatility.",
"images": [
"https://i.imgur.com/LGk9Jn2.jpeg",
"https://i.imgur.com/1ttYWaI.jpeg",
"https://i.imgur.com/sPRWnJH.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 2,
"name": "Electronics",
"image": "https://i.imgur.com/ZANVnHE.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 34,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "28",
"title": "Sleek Modern Leather Sofa",
"price": 53,
"description": "Enhance the elegance of your living space with our Sleek Modern Leather Sofa. Designed with a minimalist aesthetic, it features clean lines and a luxurious leather finish. The robust metal legs provide stability and support, while the plush cushions ensure comfort. Perfect for contemporary homes or office waiting areas, this sofa is a statement piece that combines style with practicality.",
"images": [
"https://i.imgur.com/Qphac99.jpeg",
"https://i.imgur.com/dJjpEgG.jpeg",
"https://i.imgur.com/MxJyADq.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 47,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "29",
"title": "Mid-Century Modern Wooden Dining Table",
"price": 24,
"description": "Elevate your dining room with this sleek Mid-Century Modern dining table, featuring an elegant walnut finish and tapered legs for a timeless aesthetic. Its sturdy wood construction and minimalist design make it a versatile piece that fits with a variety of decor styles. Perfect for intimate dinners or as a stylish spot for your morning coffee.",
"images": [
"https://i.imgur.com/DMQHGA0.jpeg",
"https://i.imgur.com/qrs9QBg.jpeg",
"https://i.imgur.com/XVp8T1I.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 45,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "30",
"title": "Elegant Golden-Base Stone Top Dining Table",
"price": 66,
"description": "Elevate your dining space with this luxurious table, featuring a sturdy golden metal base with an intricate rod design that provides both stability and chic elegance. The smooth stone top in a sleek round shape offers a robust surface for your dining pleasure. Perfect for both everyday meals and special occasions, this table easily complements any modern or glam decor.",
"images": [
"https://i.imgur.com/NWIJKUj.jpeg",
"https://i.imgur.com/Jn1YSLk.jpeg",
"https://i.imgur.com/VNZRvx5.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 22,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "31",
"title": "Modern Elegance Teal Armchair",
"price": 25,
"description": "Elevate your living space with this beautifully crafted armchair, featuring a sleek wooden frame that complements its vibrant teal upholstery. Ideal for adding a pop of color and contemporary style to any room, this chair provides both superb comfort and sophisticated design. Perfect for reading, relaxing, or creating a cozy conversation nook.",
"images": [
"https://i.imgur.com/6wkyyIN.jpeg",
"https://i.imgur.com/Ald3Rec.jpeg",
"https://i.imgur.com/dIqo03c.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 74,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "32",
"title": "Elegant Solid Wood Dining Table",
"price": 67,
"description": "Enhance your dining space with this sleek, contemporary dining table, crafted from high-quality solid wood with a warm finish. Its sturdy construction and minimalist design make it a perfect addition for any home looking for a touch of elegance. Accommodates up to six guests comfortably and includes a striking fruit bowl centerpiece. The overhead lighting is not included.",
"images": [
"https://i.imgur.com/4lTaHfF.jpeg",
"https://i.imgur.com/JktHE1C.jpeg",
"https://i.imgur.com/cQeXQMi.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 24,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "33",
"title": "Modern Minimalist Workstation Setup",
"price": 49,
"description": "Elevate your home office with our Modern Minimalist Workstation Setup, featuring a sleek wooden desk topped with an elegant computer, stylish adjustable wooden desk lamp, and complimentary accessories for a clean, productive workspace. This setup is perfect for professionals seeking a contemporary look that combines functionality with design.",
"images": [
"https://i.imgur.com/3oXNBst.jpeg",
"https://i.imgur.com/ErYYZnT.jpeg",
"https://i.imgur.com/boBPwYW.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 46,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "34",
"title": "Modern Ergonomic Office Chair",
"price": 71,
"description": "Elevate your office space with this sleek and comfortable Modern Ergonomic Office Chair. Designed to provide optimal support throughout the workday, it features an adjustable height mechanism, smooth-rolling casters for easy mobility, and a cushioned seat for extended comfort. The clean lines and minimalist white design make it a versatile addition to any contemporary workspace.",
"images": [
"https://i.imgur.com/3dU0m72.jpeg",
"https://i.imgur.com/zPU3EVa.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 3,
"name": "Furniture",
"image": "https://i.imgur.com/Qphac99.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 25,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "35",
"title": "Futuristic Holographic Soccer Cleats",
"price": 39,
"description": "Step onto the field and stand out from the crowd with these eye-catching holographic soccer cleats. Designed for the modern player, these cleats feature a sleek silhouette, lightweight construction for maximum agility, and durable studs for optimal traction. The shimmering holographic finish reflects a rainbow of colors as you move, ensuring that you'll be noticed for both your skills and style. Perfect for the fashion-forward athlete who wants to make a statement.",
"images": [
"https://i.imgur.com/qNOjJje.jpeg",
"https://i.imgur.com/NjfCFnu.jpeg",
"https://i.imgur.com/eYtvXS1.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 28,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "36",
"title": "Rainbow Glitter High Heels",
"price": 39,
"description": "Step into the spotlight with these eye-catching rainbow glitter high heels. Designed to dazzle, each shoe boasts a kaleidoscope of shimmering colors that catch and reflect light with every step. Perfect for special occasions or a night out, these stunners are sure to turn heads and elevate any ensemble.",
"images": [
"https://i.imgur.com/62gGzeF.jpeg",
"https://i.imgur.com/5MoPuFM.jpeg",
"https://i.imgur.com/sUVj7pK.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 33,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "37",
"title": "Chic Summer Denim Espadrille Sandals",
"price": 33,
"description": "Step into summer with style in our denim espadrille sandals. Featuring a braided jute sole for a classic touch and adjustable denim straps for a snug fit, these sandals offer both comfort and a fashionable edge. The easy slip-on design ensures convenience for beach days or casual outings.",
"images": [
"https://i.imgur.com/9qrmE1b.jpeg",
"https://i.imgur.com/wqKxBVH.jpeg",
"https://i.imgur.com/sWSV6DK.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 21,
"status": {
"id": 6,
"name": "Quase esgotado",
"slug": "quase_esgotado"
}
},
{
"id": "38",
"title": "Vibrant Runners: Bold Orange & Blue Sneakers",
"price": 27,
"description": "Step into style with these eye-catching sneakers featuring a striking combination of orange and blue hues. Designed for both comfort and fashion, these shoes come with flexible soles and cushioned insoles, perfect for active individuals who don't compromise on style. The reflective silver accents add a touch of modernity, making them a standout accessory for your workout or casual wear.",
"images": [
"https://i.imgur.com/hKcMNJs.jpeg",
"https://i.imgur.com/NYToymX.jpeg",
"https://i.imgur.com/HiiapCt.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 92,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "39",
"title": "Vibrant Pink Classic Sneakers",
"price": 84,
"description": "Step into style with our Vibrant Pink Classic Sneakers! These eye-catching shoes feature a bold pink hue with iconic white detailing, offering a sleek, timeless design. Constructed with durable materials and a comfortable fit, they are perfect for those seeking a pop of color in their everyday footwear. Grab a pair today and add some vibrancy to your step!",
"images": [
"https://i.imgur.com/mcW42Gi.jpeg",
"https://i.imgur.com/mhn7qsF.jpeg",
"https://i.imgur.com/F8vhnFJ.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 85,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "40",
"title": "Futuristic Silver and Gold High-Top Sneaker",
"price": 68,
"description": "Step into the future with this eye-catching high-top sneaker, designed for those who dare to stand out. The sneaker features a sleek silver body with striking gold accents, offering a modern twist on classic footwear. Its high-top design provides support and style, making it the perfect addition to any avant-garde fashion collection. Grab a pair today and elevate your shoe game!",
"images": [
"https://i.imgur.com/npLfCGq.jpeg",
"https://i.imgur.com/vYim3gj.jpeg",
"https://i.imgur.com/HxuHwBO.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 91,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "41",
"title": "Futuristic Chic High-Heel Boots",
"price": 36,
"description": "Elevate your style with our cutting-edge high-heel boots that blend bold design with avant-garde aesthetics. These boots feature a unique color-block heel, a sleek silhouette, and a versatile light grey finish that pairs easily with any cutting-edge outfit. Crafted for the fashion-forward individual, these boots are sure to make a statement.",
"images": [
"https://i.imgur.com/HqYqLnW.jpeg",
"https://i.imgur.com/RlDGnZw.jpeg",
"https://i.imgur.com/qa0O6fg.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 56,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "42",
"title": "Elegant Patent Leather Peep-Toe Pumps with Gold-Tone Heel",
"price": 53,
"description": "Step into sophistication with these chic peep-toe pumps, showcasing a lustrous patent leather finish and an eye-catching gold-tone block heel. The ornate buckle detail adds a touch of glamour, perfect for elevating your evening attire or complementing a polished daytime look.",
"images": [
"https://i.imgur.com/AzAY4Ed.jpeg",
"https://i.imgur.com/umfnS9P.jpeg",
"https://i.imgur.com/uFyuvLg.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 98,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "43",
"title": "Elegant Purple Leather Loafers",
"price": 17,
"description": "Step into sophistication with our Elegant Purple Leather Loafers, perfect for making a bold statement. Crafted from high-quality leather with a vibrant purple finish, these shoes feature a classic loafer silhouette that's been updated with a contemporary twist. The comfortable slip-on design and durable soles ensure both style and functionality for the modern man.",
"images": [
"https://i.imgur.com/Au8J9sX.jpeg",
"https://i.imgur.com/gdr8BW2.jpeg",
"https://i.imgur.com/KDCZxnJ.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 67,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "44",
"title": "Classic Blue Suede Casual Shoes",
"price": 39,
"description": "Step into comfort with our Classic Blue Suede Casual Shoes, perfect for everyday wear. These shoes feature a stylish blue suede upper, durable rubber soles for superior traction, and classic lace-up fronts for a snug fit. The sleek design pairs well with both jeans and chinos, making them a versatile addition to any wardrobe.",
"images": [
"https://i.imgur.com/sC0ztOB.jpeg",
"https://i.imgur.com/Jf9DL9R.jpeg",
"https://i.imgur.com/R1IN95T.jpeg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 4,
"name": "Shoes",
"image": "https://i.imgur.com/qNOjJje.jpeg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 34,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "45",
"title": "Sleek Futuristic Electric Bicycle",
"price": 22,
"description": "This modern electric bicycle combines style and efficiency with its unique design and top-notch performance features. Equipped with a durable frame, enhanced battery life, and integrated tech capabilities, it's perfect for the eco-conscious commuter looking to navigate the city with ease.",
"images": [
"https://i.imgur.com/BG8J0Fj.jpg",
"https://i.imgur.com/ujHBpCX.jpg",
"https://i.imgur.com/WHeVL9H.jpg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 5,
"name": "Miscellaneous",
"image": "https://i.imgur.com/BG8J0Fj.jpg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 74,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "46",
"title": "Sleek All-Terrain Go-Kart",
"price": 37,
"description": "Experience the thrill of outdoor adventures with our Sleek All-Terrain Go-Kart, featuring a durable frame, comfortable racing seat, and robust, large-tread tires perfect for handling a variety of terrains. Designed for fun-seekers of all ages, this go-kart is an ideal choice for backyard racing or exploring local trails.",
"images": [
"https://i.imgur.com/Ex5x3IU.jpg",
"https://i.imgur.com/z7wAQwe.jpg",
"https://i.imgur.com/kc0Dj9S.jpg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 5,
"name": "Miscellaneous",
"image": "https://i.imgur.com/BG8J0Fj.jpg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 54,
"status": {
"id": 5,
"name": "Disponível",
"slug": "disponivel"
}
},
{
"id": "47",
"title": "Radiant Citrus Eau de Parfum",
"price": 73,
"description": "Indulge in the essence of summer with this vibrant citrus-scented Eau de Parfum. Encased in a sleek glass bottle with a bold orange cap, this fragrance embodies freshness and elegance. Perfect for daily wear, it's an olfactory delight that leaves a lasting, zesty impression.",
"images": [
"https://i.imgur.com/xPDwUb3.jpg",
"https://i.imgur.com/3rfp691.jpg",
"https://i.imgur.com/kG05a29.jpg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 5,
"name": "Miscellaneous",
"image": "https://i.imgur.com/BG8J0Fj.jpg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 98,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "48",
"title": "Sleek Olive Green Hardshell Carry-On Luggage",
"price": 48,
"description": "Travel in style with our durable hardshell carry-on, perfect for weekend getaways and business trips. This sleek olive green suitcase features smooth gliding wheels for easy airport navigation, a sturdy telescopic handle, and a secure zippered compartment to keep your belongings safe. Its compact size meets most airline overhead bin requirements, ensuring a hassle-free flying experience.",
"images": [
"https://i.imgur.com/jVfoZnP.jpg",
"https://i.imgur.com/Tnl15XK.jpg",
"https://i.imgur.com/7OqTPO6.jpg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",
"category": {
"id": 5,
"name": "Miscellaneous",
"image": "https://i.imgur.com/BG8J0Fj.jpg",
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z"
},
"stock": 82,
"status": {
"id": 4,
"name": "Em estoque",
"slug": "em_estoque"
}
},
{
"id": "49",
"title": "Chic Transparent Fashion Handbag",
"price": 61,
"description": "Elevate your style with our Chic Transparent Fashion Handbag, perfect for showcasing your essentials with a clear, modern edge. This trendy accessory features durable acrylic construction, luxe gold-tone hardware, and an elegant chain strap. Its compact size ensures you can carry your day-to-day items with ease and sophistication.",
"images": [
"https://i.imgur.com/Lqaqz59.jpg",
"https://i.imgur.com/uSqWK0m.jpg",
"https://i.imgur.com/atWACf1.jpg"
],
"creationAt": "2024-06-11T12:23:59.000Z",
"updatedAt": "2024-06-11T12:23:59.000Z",