generated from Newton-School/react-word-counter-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbHome.json
3429 lines (3429 loc) · 108 KB
/
dbHome.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
{
"mobile": [
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/6bZc0zJ/f6b32d514024.jpg",
"description": "realme 9 (Stargaze White, 128 GB)",
"stars": 4.3,
"ratings": "4,161 Ratings ",
"reviews": " 310 Reviews",
"warranty": "1 Year Manufacturer Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 1799,
"old_price": 2999,
"discount": 40,
"delivery_type": "Free delivery",
"offer": "₹16,750",
"offer2": " Off on Exchange",
"hidden_stars": 4.3,
"item_id": 1
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/8KJy15T/a17dbfdc5469.jpg",
"description": "realme C35 (Glowing Black, 64 GB)",
"stars": 4.4,
"ratings": "49,912 Ratings ",
"reviews": " 3,227 Reviews",
"warranty": "1 Year Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 1199,
"old_price": 1399,
"discount": 14,
"delivery_type": "Free delivery",
"offer": "₹11,250",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 2
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/LgCRnGH/a81962fb9052.jpg",
"description": "realme Narzo 50A (Oxygen Blue, 128 GB)",
"stars": 4.4,
"ratings": "2,94,035 Ratings ",
"reviews": " 19,383 Reviews",
"warranty": "1 Year Warranty for Mobile and 6 Months for Accessories",
"new_price": 1264,
"old_price": 1399,
"discount": 10,
"delivery_type": "Free delivery",
"offer": "₹12,000",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 3
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/zR1Mmyp/ef4fb87688aa.jpg",
"description": "POCO C31 (Shadow Gray, 64 GB)",
"stars": 4.4,
"ratings": "60,235 Ratings ",
"reviews": " 3,435 Reviews",
"warranty": "1 Year Warranty for Handset, 6 Months for Accessories",
"new_price": 9499,
"old_price": 11199,
"discount": 15,
"delivery_type": "Free delivery",
"offer": "₹8,750",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 4
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/KWq6d2x/c3a36c14548b.jpg",
"description": "POCO M3 Pro 5G (Yellow, 64 GB)",
"stars": 4.3,
"ratings": "53,358 Ratings ",
"reviews": " 4,054 Reviews",
"new_price": 1449,
"old_price": 1599,
"discount": 9,
"delivery_type": "Free delivery",
"offer": "₹13,750",
"offer2": " Off on Exchange",
"hidden_stars": 4.3,
"item_id": 5
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/8KJy15T/a17dbfdc5469.jpg",
"description": "realme C35 (Glowing Black, 128 GB)",
"stars": 4.4,
"ratings": "49,912 Ratings ",
"reviews": " 3,227 Reviews",
"warranty": "1 Year Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 1299,
"old_price": 1499,
"discount": 13,
"delivery_type": "Free delivery",
"offer": "₹12,250",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 6
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/M8WM4Q6/cdbeaa9cc54a.jpg",
"description": "realme 9 (Sunburst Gold, 128 GB)",
"stars": 4.3,
"ratings": "1,903 Ratings ",
"reviews": " 174 Reviews",
"warranty": "1 Year Manufacturer Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 1899,
"old_price": 2299,
"discount": 17,
"delivery_type": "Free delivery",
"offer": "₹18,000",
"offer2": " Off on Exchange",
"hidden_stars": 4.3,
"item_id": 7
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/M2hVdGR/2a69bd397549.jpg",
"description": "MOTOROLA G60 (Soft Silver, 128 GB)",
"stars": 4.2,
"ratings": "93,866 Ratings ",
"reviews": " 9,401 Reviews",
"new_price": 1599,
"old_price": 2199,
"discount": 27,
"delivery_type": "Free delivery",
"offer": "₹15,250",
"offer2": " Off on Exchange",
"hidden_stars": 4.2,
"item_id": 8
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/YNhDLPt/c219107c9300.jpg",
"description": "realme 9i (Prism Black, 128 GB)",
"stars": 4.5,
"ratings": "54,196 Ratings ",
"reviews": " 2,859 Reviews",
"warranty": "1 Year Manufacturer Warranty for Phone and 6 Months Warranty for in the Box Accessories",
"new_price": 1549,
"old_price": 1699,
"discount": 9,
"delivery_type": "Free delivery",
"offer": "₹14,500",
"offer2": " Off on Exchange",
"hidden_stars": 4.5,
"item_id": 9
},
{
"category_id": 3,
"category_name": "mobiles",
"image": "https://i.ibb.co/G0CPRNT/69b37a85fa63.jpg",
"description": "vivo T1 5G (Rainbow Fantasy, 128 GB)",
"stars": 4.3,
"ratings": "23,797 Ratings ",
"reviews": " 2,183 Reviews",
"warranty": "1 Year Handset and 6 Months Accessories",
"new_price": 1599,
"old_price": 1999,
"discount": 20,
"delivery_type": "Free delivery",
"offer": "Upto ",
"offer2": "₹15,250",
"hidden_stars": 4.3,
"item_id": 10
}
],
"electronics": [
{
"category_id": 5,
"category_name": "electronics",
"description": "SAMSUNG 6 kg 5 Star With Hygiene Steam and Ceramic Heater Fully Automatic Front Load with In-built Hea...",
"image": "https://i.ibb.co/KLvR4KZ/573c2d3062fa.jpg",
"stars": 4.4,
"ratings": "12,707 Ratings ",
"reviews": " 1,383 Reviews",
"more_data": "Fully Automatic Front Load",
"new_price": 2299,
"old_price": 2659,
"discount": 14,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"hidden_stars": 4.4,
"item_id": 1
},
{
"category_id": 5,
"category_name": "electronics",
"description": "Candes 6.5 kg Semi Automatic Top Load Red, White",
"image": "https://i.ibb.co/fGfmn2q/dd836dd9a6e7.jpg",
"stars": 4.3,
"ratings": "286 Ratings ",
"reviews": " 68 Reviews",
"more_data": "Semi Automatic Top Load",
"new_price": 7499,
"old_price": 11999,
"discount": 38,
"delivery_type": "Free delivery",
"warranty": "2 Years Comprehensive and 5 Years on Motor from Candes",
"offer": "Bank Offer",
"hidden_stars": 4.3,
"item_id": 2
},
{
"category_id": 5,
"category_name": "electronics",
"description": "ONIDA 6.5 kg Semi Automatic Top Load Blue, White",
"image": "https://i.ibb.co/zF0g2sL/0bf69770f45f.jpg",
"more_data": "Semi Automatic Top Load",
"new_price": 7999,
"old_price": 11159,
"discount": 28,
"delivery_type": "Free delivery",
"warranty": "2 Years Comprehensive Warranty on Product and 5 Years Warranty on Wash Motor",
"offer": "Bank Offer",
"hidden_stars": 3.8,
"item_id": 3
},
{
"category_id": 5,
"category_name": "electronics",
"description": "realme TechLife 8 kg 5 Star Rating Fully Automatic Top Load with In-built Heater Grey",
"image": "https://i.ibb.co/M61RVPY/51f818ac3a29.jpg",
"stars": 4.2,
"ratings": "6,790 Ratings ",
"reviews": " 861 Reviews",
"more_data": "Fully Automatic Top Load",
"new_price": 1599,
"old_price": 2649,
"discount": 40,
"delivery_type": "Free delivery",
"warranty": "2 Years Comprehensive Warranty on Product and 5 Years on Motor",
"offer": "Bank Offer",
"hidden_stars": 4.2,
"item_id": 4
},
{
"category_id": 5,
"category_name": "electronics",
"description": "Godrej 6.2 kg Fully Automatic Top Load Grey",
"image": "https://i.ibb.co/MC0kP0B/668dbade59b6.jpg",
"stars": 4.3,
"ratings": "820 Ratings ",
"reviews": " 51 Reviews",
"more_data": "Fully Automatic Top Load",
"warranty": "2 Years Warranty on Entire Product and 10 Years on Motor",
"new_price": 1269,
"old_price": 1899,
"discount": 33,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"hidden_stars": 4.3,
"item_id": 5
},
{
"category_id": 5,
"category_name": "electronics",
"description": "OnePlus Y1S 80 cm (32 inch) HD Ready LED Smart Android TV",
"image": "https://i.ibb.co/bJVjpDj/6408229f46a4.jpg",
"stars": 4.2,
"ratings": "3,150 Ratings ",
"reviews": " 299 Reviews",
"more_data": "Netflix|Prime Video|Disney+Hotstar|Youtube",
"new_price": 16499,
"old_price": 21999,
"discount": 25,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"warranty": "1 Year Comprehensive Warranty and Additional 1 Year on Panel Provided By the Manufacturer From Date of Purchase",
"hidden_stars": 4.2,
"item_id": 6
},
{
"category_id": 5,
"category_name": "electronics",
"description": "Vu Premium 126 cm (50 inch) Ultra HD (4K) LED Smart Android TV",
"image": "https://i.ibb.co/HHm7tr8/68459c713c10.jpg",
"stars": 4.4,
"ratings": "30,522 Ratings ",
"reviews": " 4,809 Reviews",
"more_data": "Netflix|Prime Video|Disney+Hotstar|Youtube",
"new_price": 31999,
"old_price": 45,
"discount": 28,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"warranty": "1 Year Vu Domestic Warranty",
"hidden_stars": 4.4,
"item_id": 7
},
{
"category_id": 5,
"category_name": "electronics",
"description": "OnePlus Y1 80 cm (32 inch) HD Ready LED Smart Android TV",
"image": "https://i.ibb.co/JvHyz0N/91c390d36820.jpg",
"stars": 4.3,
"ratings": "90,824 Ratings ",
"reviews": " 8,236 Reviews",
"more_data": "Netflix|Prime Video|Disney+Hotstar|Youtube",
"new_price": 15999,
"old_price": 19999,
"discount": 20,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"warranty": "1 Year Comprehensive Warranty and Additional 1 Year on Panel Provided By the Manufacturer From Date of Purchase",
"hidden_stars": 4.3,
"item_id": 8
},
{
"category_id": 5,
"category_name": "electronics",
"description": "Mi 5X 108 cm (43 inch) Ultra HD (4K) LED Smart Android TV with Dolby Atmos and Dolby Vision",
"image": "https://i.ibb.co/Mkdhn3r/eb44c5403d70.jpg",
"stars": 4.3,
"ratings": "13,888 Ratings ",
"reviews": " 1,417 Reviews",
"more_data": "Netflix|Prime Video|Disney+Hotstar|Youtube",
"new_price": 31999,
"old_price": 49999,
"discount": 36,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"hidden_stars": 4.3,
"item_id": 9
},
{
"category_id": 5,
"category_name": "electronics",
"image": "https://i.ibb.co/WWHGS0n/04055d5a6a69.jpg",
"description": "I-Plus I2",
"stars": 3.1,
"ratings": "36 Ratings ",
"reviews": " 2 Reviews",
"warranty": "1 Year Manufacturer warranty",
"new_price": 6499,
"delivery_type": "Free delivery",
"hidden_stars": 3.1,
"item_id": 51,
"old_price": 9099,
"discount": 10
},
{
"category_id": 5,
"category_name": "electronics",
"image": "https://i.ibb.co/bmmQZMq/4686f715fa69.jpg",
"description": "realme C31 (Light Silver, 32 GB)",
"stars": 4.5,
"ratings": "8,995 Ratings ",
"reviews": " 373 Reviews",
"more_data": "3 GB RAM | 32 GB ROM | Expandable Upto 1 TB",
"warranty": "1 Year Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 9299,
"old_price": 11999,
"discount": 23,
"delivery_type": "Free delivery",
"offer": "₹8,750",
"offer2": " Off on Exchange",
"hidden_stars": 4.5,
"item_id": 11
},
{
"category_id": 5,
"category_name": "electronics",
"image": "https://i.ibb.co/GkqDqSS/c11232b5c63f.jpg",
"description": "realme C31 (Dark Green, 64 GB)",
"stars": 4.4,
"ratings": "12,091 Ratings ",
"reviews": " 547 Reviews",
"more_data": "4 GB RAM | 64 GB ROM | Expandable Upto 1 TB",
"warranty": "1 Year Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 9999,
"old_price": 11199,
"discount": 11,
"delivery_type": "Free delivery",
"offer": "₹9,250",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 12
},
{
"category_id": 5,
"category_name": "electronics",
"description": "Lenovo Core i3 10th Gen - (8 GB/512 GB SSD/Windows 11 Home) 15IML05 Thin and Light Laptop",
"image": "https://i.ibb.co/q79nS2Y/f0fa91bcb004.jpg",
"stars": 4.4,
"ratings": "113 Ratings ",
"reviews": " 11 Reviews",
"more_data": "Intel Core i3 Processor (10th Gen)",
"warranty": "2 Years Warranty",
"new_price": 3699,
"old_price": 6219,
"discount": 40,
"delivery_type": "Free delivery",
"offer": "Upto ",
"offer2": "₹18,100",
"hidden_stars": 4.4,
"item_id": 13
},
{
"category_id": 5,
"category_name": "electronics",
"description": "acer Aspire 3 Dual Core 3020e - (4 GB/256 GB SSD/Windows 11 Home) A314-22 Laptop",
"image": "https://i.ibb.co/gF2b387/9a37c06f694d.jpg",
"stars": 4.1,
"ratings": "28 Ratings ",
"reviews": " 4 Reviews",
"more_data": "AMD Dual Core Processor",
"warranty": "1 Year International Travelers Warranty (ITW)",
"new_price": 2499,
"old_price": 34999,
"discount": 28,
"delivery_type": "Free delivery",
"hidden_stars": 4.1,
"item_id": 14
}
],
"fashion": [
{
"category_id": 4,
"category_name": "fashion",
"image": "https://i.ibb.co/23StKfC/5e3aa027808d.jpg",
"brand": "Fashionuma",
"description": "Georgette Blend Stitched Flared/A-line Gown",
"color": "Green",
"new_price": 1739,
"old_price": 4999,
"discount": 65,
"delivery_type": "Free delivery",
"hidden_stars": 4.2,
"item_id": 1
},
{
"category_id": 4,
"category_name": "fashion",
"image": "https://i.ibb.co/DgWgmfC/385b3d1bb53b.jpg",
"brand": "Kedar Fab",
"description": "Embroidered Silk Blend Semi Stitched Anarkali Gown",
"color": "Purple",
"new_price": 37,
"old_price": 3999,
"discount": 90,
"delivery_type": "Free delivery",
"hidden_stars": 3.8,
"item_id": 2
},
{
"category_id": 4,
"category_name": "fashion",
"image": "https://i.ibb.co/qs2KLdV/50b26124bd8f.jpg",
"brand": "rahul",
"description": "Printed Crepe Blend Stitched Flared/A-line Gown",
"color": "Orange",
"new_price": 339,
"old_price": 1899,
"discount": 82,
"delivery_type": "Free delivery",
"hidden_stars": 4,
"item_id": 3
},
{
"category_id": 4,
"category_name": "fashion",
"image": "https://i.ibb.co/Ss80W0S/c509c13a35e0.jpg",
"brand": "ANNU PARIDHAN",
"description": "Embroidered Rayon Blend Stitched Anarkali Gown",
"color": "Pink",
"new_price": 339,
"old_price": 1599,
"discount": 78,
"delivery_type": "Free delivery",
"hidden_stars": 4.2,
"item_id": 4
},
{
"category_id": 4,
"category_name": "fashion",
"image": "https://i.ibb.co/7V1RjWm/0835af00ac15.jpg",
"brand": "Afsana",
"description": "Embroidered Pure Georgette Semi Stitched Anarkali Gown",
"color": "Green",
"new_price": 1739,
"old_price": 4999,
"discount": 65,
"delivery_type": "Free delivery",
"hidden_stars": 3.9,
"item_id": 5
},
{
"category_id": 4,
"category_name": "fashion",
"image": "https://i.ibb.co/hHW50NJ/ad74d8560017.jpg",
"brand": "ANNU PARIDHAN",
"description": "Embroidered Rayon Blend Stitched Anarkali Gown",
"color": "Green",
"new_price": 339,
"old_price": 1599,
"discount": 78,
"delivery_type": "Free delivery",
"hidden_stars": 3.7,
"item_id": 7
}
],
"top_offers": [
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/8KJy15T/a17dbfdc5469.jpg",
"description": "realme C35 (Glowing Black, 64 GB)",
"stars": 4.4,
"ratings": "49,912 Ratings ",
"reviews": " 3,227 Reviews",
"warranty": "1 Year Warranty for Phone and 6 Months Warranty for In-Box Accessories",
"new_price": 1199,
"old_price": 1399,
"discount": 14,
"delivery_type": "Free delivery",
"offer": "₹11,250",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 1
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/VBCvZyk/25cb2521889c.jpg",
"description": "realme Narzo 50A (Oxygen Green, 64 GB)",
"stars": 4.4,
"ratings": "2,94,035 Ratings ",
"reviews": " 19,383 Reviews",
"warranty": "1 Year Warranty for Mobile and 6 Months for Accessories",
"new_price": 1164,
"old_price": 1299,
"discount": 10,
"delivery_type": "Free delivery",
"offer": "₹11,000",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 2
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/LgCRnGH/a81962fb9052.jpg",
"description": "realme Narzo 50A (Oxygen Blue, 128 GB)",
"stars": 4.4,
"ratings": "2,94,035 Ratings ",
"reviews": " 19,383 Reviews",
"warranty": "1 Year Warranty for Mobile and 6 Months for Accessories",
"new_price": 1264,
"old_price": 1399,
"discount": 10,
"delivery_type": "Free delivery",
"offer": "₹12,000",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 3
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/zR1Mmyp/ef4fb87688aa.jpg",
"description": "POCO C31 (Shadow Gray, 64 GB)",
"stars": 4.4,
"ratings": "60,235 Ratings ",
"reviews": " 3,435 Reviews",
"warranty": "1 Year Warranty for Handset, 6 Months for Accessories",
"new_price": 9499,
"old_price": 11199,
"discount": 15,
"delivery_type": "Free delivery",
"offer": "₹8,750",
"offer2": " Off on Exchange",
"hidden_stars": 4.4,
"item_id": 4
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/KWq6d2x/c3a36c14548b.jpg",
"description": "POCO M3 Pro 5G (Yellow, 64 GB)",
"stars": 4.3,
"ratings": "53,358 Ratings ",
"reviews": " 4,054 Reviews",
"new_price": 1449,
"old_price": 1599,
"discount": 9,
"delivery_type": "Free delivery",
"offer": "₹13,750",
"offer2": " Off on Exchange",
"hidden_stars": 4.3,
"item_id": 5
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/HpkT5G0/5f5c2646fccf.jpg",
"description": "Unstitched Polycotton Shirt Fabric Printed",
"new_price": 249,
"old_price": 999,
"discount": 75,
"delivery_type": "Free delivery",
"hidden_stars": 3.9,
"item_id": 6
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/hKmb6hk/8dd90f203cd5.jpg",
"description": "Unstitched Polycotton Shirt Fabric Printed",
"new_price": 249,
"old_price": 999,
"discount": 75,
"delivery_type": "Free delivery",
"hidden_stars": 4.4,
"item_id": 7
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/BrLP7BD/9c14dafd9040.jpg",
"description": "Unstitched Polycotton Shirt Fabric Printed",
"new_price": 249,
"old_price": 999,
"discount": 75,
"delivery_type": "Free delivery",
"hidden_stars": 4.4,
"item_id": 8
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/MGT4YDb/7e9ad9bf0da7.jpg",
"description": "Casual Regular Sleeves Floral Print Women Multicolor To...",
"new_price": 218,
"old_price": 499,
"discount": 56,
"delivery_type": "Free delivery",
"hidden_stars": 3.7,
"item_id": 9
},
{
"category_id": 1,
"category_name": "top_offers",
"image": "https://i.ibb.co/XDQfqLC/218fac5c0317.jpg",
"description": "Redgear A-10 Gaming Mouse with LED and DPI Upto 2400 Wi...",
"stars": 4.5,
"reviews": "(4,943)",
"new_price": 299,
"old_price": 699,
"discount": 57,
"offer": "Bank Offer",
"hidden_stars": 4.5,
"item_id": 10
}
],
"appliances": [
{
"category_id": 7,
"category_name": "appliances",
"description": "SAMSUNG 6.5 kg Diamond Drum feature Fully Automatic Top Load Silver",
"image": "https://i.ibb.co/rGxFXRT/ce39ad8d6345.jpg",
"stars": 4.4,
"ratings": "1,04,278 Ratings ",
"reviews": " 9,689 Reviews",
"new_price": 1459,
"old_price": 1689,
"discount": 14,
"delivery_type": "Free delivery",
"offer": "Bank Offer",
"hidden_stars": 4.4,
"item_id": 1
},
{
"category_id": 7,
"category_name": "appliances",
"description": "LG 7 kg 5 star rating and Wind jet dry Semi Automatic Top Load Grey, White",
"image": "https://i.ibb.co/KNsRLmz/02a77630f93a.jpg",
"stars": 4.5,
"ratings": "1,039 Ratings ",
"reviews": " 50 Reviews",
"new_price": 1149,
"old_price": 1349,
"discount": 15,
"delivery_type": "Free delivery",
"Warranty": "2 Years Comprehensive Warranty on product and 5 Years on Motor from LG",
"offer": "Bank Offer",
"hidden_stars": 4.5,
"item_id": 2
},
{
"category_id": 7,
"category_name": "appliances",
"description": "SAMSUNG 7 kg Semi Automatic Top Load Grey, Purple",
"image": "https://i.ibb.co/5YnzY6Z/2d63ab20dde6.jpg",
"stars": 4.4,
"ratings": "15,403 Ratings ",
"reviews": " 1,407 Reviews",
"new_price": 1499,
"old_price": 11359,
"discount": 87,
"delivery_type": "Free delivery",
"Warranty": "2 Years Comprehensive Warranty on Product and 5 Years on Motor",
"offer": "Bank Offer",
"hidden_stars": 4.4,
"item_id": 3
},
{
"category_id": 7,
"category_name": "appliances",
"description": "Whirlpool 7 kg 5 Star,Turbo Scrub Technology Semi Automatic Top Load Grey",
"image": "https://i.ibb.co/V3J62H2/a341dc244c01.jpg",
"stars": 4.4,
"ratings": "58,166 Ratings ",
"reviews": " 5,550 Reviews",
"mechine type": "Semi Automatic Top Load",
"new_price": 1499,
"old_price": 11195,
"discount": 87,
"delivery_type": "Free delivery",
"Warranty": "2 Years\n Comprehensive Warranty and 5 Years Warranty on Wash Motor and Prime Mover\n from Whirlpool",
"offer": "Bank Offer",
"hidden_stars": 4.4,
"item_id": 4
},
{
"category_id": 7,
"category_name": "appliances",
"description": "LG 7.5 kg with Roller Jet Pulsator + Soak Semi Automatic Top Load Purple",
"image": "https://i.ibb.co/58vrRVz/2fa71e84a3da.jpg",
"stars": 4.5,
"ratings": "498 Ratings ",
"reviews": " 43 Reviews",
"machine type": "Semi Automatic Top Load",
"new_price": 1269,
"old_price": 1499,
"discount": 15,
"delivery_type": "Free delivery",
"Warranty": "2 Years Comprehensive and 5 Years on Motor From LG",
"offer": "Bank Offer",
"hidden_stars": 4.5,
"item_id": 5
},
{
"category_id": 7,
"category_name": "appliances",
"image": "https://i.ibb.co/7WHtRvt/14826fd806b4.jpg",
"description": "HM HIGH SPEED TABLE FAN BLACK 225 mm Anti Dust 3 Blade ...",
"color": "BLACK, Pack of 1",
"stars": 3.9,
"reviews": "(1,024)",
"new_price": 979,
"old_price": 1545,
"discount": 36,
"delivery_type": "Free delivery",
"delivery_type1": "Bank Offer",
"hidden_stars": 3.9,
"item_id": 6
},
{
"category_id": 7,
"category_name": "appliances",
"image": "https://i.ibb.co/KD3Z6sy/7c04ddd8cd67.jpg",
"description": "Sampri FANGDGAUFG2VMDRD 3 Blade Table Fan",
"color": "Pink & Multi, Pack of 1",
"stars": 4.3,
"reviews": "(55)",
"new_price": 599,
"old_price": 1299,
"discount": 53,
"delivery_type": "Free delivery",
"delivery_type1": "Bank Offer",
"hidden_stars": 4.3,
"item_id": 7
},
{
"category_id": 7,
"category_name": "appliances",
"image": "https://i.ibb.co/f0dH9hW/9f82ccc02cb3.jpg",
"description": "Haier 182 L Direct Cool Single Door 2 Star Refrigerator",
"stars": 4.3,
"ratings": "66 Ratings ",
"reviews": " 5 Reviews",
"Warranty": "1 Year Warranty on Product and 10 Years on Compressor",
"new_price": 12759,
"old_price": 19999,
"discount": 36,
"delivery_type": "Free delivery",
"offer": "No Cost EMI from ₹2,125/month",
"hidden_stars": 4.3,
"item_id": 8
},
{
"category_id": 7,
"category_name": "appliances",
"image": "https://i.ibb.co/JnksPjR/f6f3152cad2e.jpg",
"description": "SAMSUNG 192 L Direct Cool Single Door 2 Star Refrigerator",
"stars": 4.4,
"ratings": "3,958 Ratings ",
"reviews": " 381 Reviews",
"Warranty": "1 Year on Product and 10 Years on Compressor From Samsung",
"new_price": 13999,
"old_price": 15999,
"discount": 13,
"delivery_type": "Free delivery",
"offer": "Lowest Price in 15 days",
"hidden_stars": 4.4,
"item_id": 9
},
{
"category_id": 7,
"category_name": "appliances",
"image": "https://i.ibb.co/fHL2hXn/c769de97df26.jpg",
"description": "LG 260 L Frost Free Double Door Top Mount 3 Star Refrigerator",
"stars": 4.4,
"ratings": "14,847 Ratings ",
"reviews": " 1,850 Reviews",
"Warranty": "1 Year on Product and 10 Years on Compressor from LG",
"new_price": 25699,
"old_price": 33699,
"discount": 24,
"delivery_type": "Free delivery",
"offer": "No Cost EMI from ₹2,141/month",
"hidden_stars": 4.4,
"item_id": 10
}
],
"groceries": [
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.postimg.cc/gJSxxxX6/shamppo.webp",
"brand": "TRESemme Keratin Smooth Shampoo (580 ml)",
"description": "Flaunt your fabulous, shiny, smooth, and luscious hair every single day by using the TRESemme Keratin Smooth shampoo",
"new_price": 189,
"old_price": 150,
"discount": 52,
"delivery_type": "Free delivery",
"hidden_stars": 4.4,
"item_id": 1
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.ibb.co/FwhPZx0/2a303a406383.jpg",
"brand": "Kwality Original Corn Flakes Pouch (800 g)",
"description": "Corn",
"new_price": 180,
"old_price": 200,
"discount": 68,
"delivery_type": "Free delivery",
"hidden_stars": 4.3,
"item_id": 2
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.postimg.cc/nV3K612p/oil.webp",
"brand": "Fortune Refined Soyabean Oil Pouch (1 L)",
"description": "Fortune soya health is certified as India�s No. 1 cooking oil brand.",
"new_price": 150,
"old_price": 120,
"discount": 64,
"delivery_type": "Free delivery",
"hidden_stars": 3.6,
"item_id": 3
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.postimg.cc/rwZwTKbd/chill-powder.webp",
"brand": "AASHIRVAAD Chilli Powder (200 g)",
"description": "Natural chilli Powder",
"new_price": 150,
"old_price": 200,
"discount": 54,
"delivery_type": "Free delivery",
"hidden_stars": 3.6,
"item_id": 4
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.postimg.cc/XYLQY0cB/fair-and-some.webp",
"description": "Fair & Handsome Fair and Handsome Fairness Cream(60G)",
"new_price": 99,
"old_price": 120,
"discount": 20,
"delivery_type": "Free delivery",
"hidden_stars": 4,
"item_id": 5
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.postimg.cc/XYLQY0cB/fair-and-some.webp",
"description": "Fair & Handsome Fair and Handsome Fairness Cream(60G)",
"new_price": 99,
"old_price": 120,
"discount": 20,
"delivery_type": "Free delivery",
"hidden_stars": 4,
"item_id": 6
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.postimg.cc/XYLQY0cB/fair-and-some.webp",
"description": "Fair & Handsome Fair and Handsome Fairness Cream(60G)",
"new_price": 99,
"old_price": 120,
"discount": 20,
"delivery_type": "Free delivery",
"hidden_stars": 4,
"item_id": 7
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.ibb.co/FwhPZx0/2a303a406383.jpg",
"brand": "Kwality Original Corn Flakes Pouch (800 g)",
"description": "Corn",
"new_price": 180,
"old_price": 200,
"discount": 68,
"delivery_type": "Free delivery",
"hidden_stars": 4.3,
"item_id": 8
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.ibb.co/FwhPZx0/2a303a406383.jpg",
"brand": "Kwality Original Corn Flakes Pouch (800 g)",
"description": "Corn",
"new_price": 180,
"old_price": 200,
"discount": 68,
"delivery_type": "Free delivery",
"hidden_stars": 4.3,
"item_id": 9
},
{
"category_id": 2,
"category_name": "grocery",
"image": "https://i.ibb.co/FwhPZx0/2a303a406383.jpg",
"brand": "Kwality Original Corn Flakes Pouch (800 g)",
"description": "Corn",
"new_price": 180,
"old_price": 200,
"discount": 68,
"delivery_type": "Free delivery",
"hidden_stars": 4.3,
"item_id": 10
}
],
"bestselling": [
{
"category_id": 6,
"category_name": "home",
"image": "https://i.ibb.co/kK8Mdwy/e006df024052.jpg",
"color": "Pack of 1, Multicolor",
"description": "Casa Confort 144 TC Microfiber Double Printed Bedsheet",
"stars": 4,
"reviews": "(6,567)",
"new_price": 241,
"old_price": 1299,
"discount": 81,
"delivery_type": "Free delivery",
"hidden_stars": 4,
"item_id": 1
},
{
"category_id": 6,
"category_name": "home",
"image": "https://i.ibb.co/gRMpH3D/67428e28e4f9.jpg",
"color": "Pack of 1, Green",
"description": "Flipkart SmartBuy 152 TC Microfiber Double Floral Bedsh...",
"stars": 4.2,
"reviews": "(4,365)",
"new_price": 349,
"old_price": 1199,
"discount": 70,
"delivery_type": "Free delivery",
"hidden_stars": 4.2,
"item_id": 2
},