-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdb.json
3435 lines (3435 loc) · 141 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
{
"posts": [
{
"name": "dolo 50",
"image": "hsjjs",
"price": "52737",
"discount": "66",
"category": "Healthcare",
"id": 1
}
],
"homePage": {
"homePageData": {
"logo": "https://cdn.pharmeasy.in/cms/lp_logo.png",
"programId": 52,
"userStatus": 0,
"url": "https://pharmeasy.in/plus/redirect/landing?source=tagline",
"identifier": "plus/redirect/landing?source=tagline",
"expiresAt": null,
"tagline": "Save flat <strong>5%</strong> extra on medicines & enjoy <strong>FREE</strong> delivery with PLUS membership",
"taglineCTAText": {
"url": "https://pharmeasy.in/plus/redirect/landing?source=taglineCTAText",
"identifier": "plus/redirect/landing?source=taglineCTAText"
},
"faqs": [
{
"question": "What are the benefits of PharmEasy Plus?",
"answer": "Plus members get extra 5% cashback on medicine/healthcare orders with free delivery and extra 10% cashback on diagnostics orders along with free doctor teleconsultations. Also, you won't be charged any convenience fees for pay on delivery."
},
{
"question": "How long is my PharmEasy Plus membership valid for?",
"answer": "Depending on the plan you choose, your PharmEasy Plus membership is valid for 3 months or 6 months from the date of purchase of the program."
},
{
"question": "When will I get the cashback?",
"answer": "Cashback will be credited into your PharmEasy wallet within 48 hours of order delivery."
},
{
"question": "What is the validity of the cashback?",
"answer": "Cashback earned through the PharmEasy Plus Membership will not have any expiry."
},
{
"question": "Is there a cap on the maximum amount that can be earned through the 5% cashback on Medicine/Healthcare orders?",
"answer": "Yes, based on the value of your order, a 5% cashback up to ₹200 will be credited for Medicine/Healthcare orders."
},
{
"question": "Is there a cap on the maximum amount that can be earned through the 10% cashback on Diagnostic Tests?",
"answer": "Yes, based on the value of your order, a 10% cashback up to ₹200 will be credited for Diagnostic Test orders."
},
{
"question": "Is free delivery applicable for all orders?",
"answer": "For orders placed during your membership period, free delivery is applicable on orders above ₹199 for 50 orders when opting for standard delivery. For priority delivery the additional delivery fee will be applicable. However, if your order weighs more than 1 Kgs, standard delivery charges based on weight will be applicable."
},
{
"question": "Can I cancel my PharmEasy Plus Membership?",
"answer": "No. Once enrolled, you will not be able to cancel your PharmEasy Plus membership."
},
{
"question": "Can I renew my PharmEasy Plus membership?",
"answer": "Yes, once your existing membership has expired, you will see an option to buy the membership again if you are eligible. However, PharmEasy Plus membership prices are subject to change."
},
{
"question": "Can I use other discounts/coupons along with the PharmEasy Plus Cashback?",
"answer": "Yes, you can use any other discounts/coupons along with the PharmEasy Plus membership."
},
{
"question": "How do I avail PharmEasy Plus cashback?",
"answer": "Cashback will be auto-applied on all Medicine, Healthcare & Diagnostics orders. No need to apply any coupon code."
},
{
"question": "Are there any restrictions on PharmEasy Wallet usage?",
"answer": "No, there are no restrictions on the usage of your PharmEasy wallet. You can use it in full against any of your orders."
},
{
"question": "Is there a limit on the number of orders I can get PharmEasy Plus Cashback on?",
"answer": "Yes, this benefit is available on a maximum of 50 medicine/healthcare products orders and 50 lab tests booked during your membership."
},
{
"question": "How many Doctor Consultations can I avail through PharmEasy Plus Membership?",
"answer": "As a Plus member, you can avail 20 free doctor consultations during your membership period. Feel free to get in touch with our doctors whenever you are in need. We strongly advise that you take any medication only after consulting with a registered medical practitioner."
},
{
"question": "What’s the process for consulting the doctor?",
"answer": "You can submit a request for doctor consultation after getting enrolled from your membership details page."
},
{
"question": "Can I get a faster delivery through PharmEasy Plus?",
"answer": "While we would love to provide faster delivery, this option is not available under the PharmEasy Plus membership right now."
},
{
"question": "Can I buy PharmEasy Plus via COD?",
"answer": "Yes, you can buy the PharmEasy Plus membership via COD only if you buy it along with your medicines or healthcare products order. For COD order, first add your medicine or healthcare items to cart and then select the Plus membership."
},
{
"question": "Can I avail the cashback on Diagnostics tests in all cities?",
"answer": "We are expanding rapidly. For now, you can avail this cashback only if our diagnostic services are available in your city."
},
{
"question": "Are there any products where plus benefits are not eligible?",
"answer": "Yes, cashback benefits are not applicable on baby food products that cater to infants under the age of 1."
}
],
"details": {
"title": "Subscribe now to get exclusive benefits",
"list": [
{
"icon": "https://club-cdn.pharmeasy.in/production/ui/med_cb.svg",
"title": "5% Extra Cashback",
"subtext": "Applicable on medicine & healthcare orders",
"tag": "main"
},
{
"icon": "https://club-cdn.pharmeasy.in/production/ui/delivery.svg",
"title": "FREE Delivery",
"subtext": "Enjoy free delivery on medicine and healthcare orders above ₹199",
"tag": "main"
},
{
"icon": "https://club-cdn.pharmeasy.in/production/ui/diag_cb.svg",
"title": "10% Extra Cashback",
"subtext": "Applicable on diagnostic tests",
"tag": "main"
},
{
"icon": "https://club-cdn.pharmeasy.in/production/ui/cash_handling.svg",
"title": "Zero Convenience Fees",
"subtext": "Pay on delivery with no extra charges",
"tag": "additional"
},
{
"icon": "https://club-cdn.pharmeasy.in/production/ui/doc_consult.svg",
"title": "Free Doctor Teleconsultation",
"subtext": "Consult with a qualified doctor whenever you need",
"tag": "additional"
}
]
},
"homeTagline": "Enjoy benefits worth <strong>₹4400</strong>",
"testimonials": [
{
"name": "Rahul Singh",
"tagline": "Saved <strong>₹3782<strong> in 6 months",
"content": "I must admit that I’ve made huge savings since I became a member of Pharmeasy Plus. There’s not just free deliveries but extra cashback on every order too! It makes ordering monthly medicines a truly satisfying experience.",
"icon": "https://club-cdn.pharmeasy.in/production/ui/med_cb.svg",
"image": ""
},
{
"name": "Preeti Sharma",
"tagline": "Saved <strong>₹2142<strong> in 3 months",
"content": "I feel like a premium customer as a PharmEasy plus member. All the extra discounts, free deliveries, it can’t get any better than this! Also, since lockdown, I didn’t have to step out for my medical and healthcare needs anymore.",
"icon": "https://club-cdn.pharmeasy.in/production/ui/med_cb.svg",
"image": ""
},
{
"name": "Ashok Bhagia",
"tagline": "Saved <strong>₹1527<strong> in 3 months",
"content": "With the ongoing pandemic, online doctor consultation is the need of the hour. I’ve enjoyed the benefit of FREE doctor consultations with my Plus membership. I’ve made extra savings on all my medicine orders & lab test bookings too.",
"icon": "https://club-cdn.pharmeasy.in/production/ui/med_cb.svg",
"image": ""
}
],
"calculations": [
{
"key": "2000",
"savings": "1650",
"breakdown": [
{
"title": "5% Cashback on Medicines",
"value": "₹600"
},
{
"title": "10% Cashback on Lab Tests*",
"value": "₹200"
},
{
"title": "Savings on Shipping & Convenience Charges",
"value": "₹250"
},
{
"title": "Savings on Doctor Consultation**",
"value": "₹600"
},
{
"title": "<strong>Total 6 Months Savings</strong>",
"value": "₹1650"
}
],
"terms": [
"*Assuming you get a lab test done every 3 months",
"**Assuming you consult a doctor every 3 months"
]
},
{
"key": "3000",
"savings": "2000",
"breakdown": [
{
"title": "5% Cashback on Medicines",
"value": "₹900"
},
{
"title": "10% Cashback on Lab Tests*",
"value": "₹200"
},
{
"title": "Savings on Shipping & Convenience Charges",
"value": "₹300"
},
{
"title": "Savings on Doctor Consultation**",
"value": "₹600"
},
{
"title": "<strong>Total 6 Months Savings</strong>",
"value": "₹2000"
}
],
"terms": [
"*Assuming you get a lab test done every 3 months",
"**Assuming you consult a doctor every 3 months"
]
},
{
"key": "4000",
"savings": "2400",
"breakdown": [
{
"title": "5% Cashback on Medicines",
"value": "₹1200"
},
{
"title": "10% Cashback on Lab Tests*",
"value": "₹200"
},
{
"title": "Savings on Shipping & Convenience Charges",
"value": "₹400"
},
{
"title": "Savings on Doctor Consultation**",
"value": "₹600"
},
{
"title": "<strong>Total 6 Months Savings</strong>",
"value": "₹2400"
}
],
"terms": [
"*Assuming you get a lab test done every 3 months",
"**Assuming you consult a doctor every 3 months"
]
}
],
"categories": [
{
"name": "orderType_medicine",
"tagline": "Save 5% extra on every order",
"description": "Medicine order",
"definition": [
{
"key": "orderType",
"value": "medicine",
"opType": "="
}
],
"preconditions": [
{
"opType": ">=",
"key": "cartValue",
"value": "0"
}
],
"benefits": {
"cashbackPercentage": "5",
"maxCashback": "200"
},
"perUserLimit": 20,
"used": 0,
"perMonthUsed": 0,
"remainingRedemptions": 0,
"remainingMonthlyRedemptions": 0,
"savings": 0
},
{
"name": "orderType_diagnostics",
"tagline": "Save 10% extra on every order",
"description": "Diagnostics order",
"definition": [
{
"key": "orderType",
"value": "diagnostics",
"opType": "="
}
],
"preconditions": [
{
"opType": ">=",
"key": "cartValue",
"value": "0"
}
],
"benefits": {
"cashbackPercentage": "5",
"maxCashback": "200"
},
"perUserLimit": 20,
"used": 0,
"perMonthUsed": 0,
"remainingRedemptions": 0,
"remainingMonthlyRedemptions": 0,
"savings": 0
},
{
"name": "orderType_otc",
"description": "Otc order",
"definition": [
{
"key": "orderType",
"value": "otc",
"opType": "="
}
],
"preconditions": [
{
"opType": ">=",
"key": "cartValue",
"value": "0"
}
],
"benefits": {
"cashbackPercentage": "0",
"maxCashback": "0"
},
"perUserLimit": 20,
"used": 0,
"perMonthUsed": 0,
"remainingRedemptions": 0,
"remainingMonthlyRedemptions": 0,
"savings": 0
}
],
"variants": [
{
"programID": 52,
"id": 48,
"description": "3 Months",
"validity": 92,
"amount": 499,
"discountedAmount": 199,
"discount": "60",
"createdAt": "2021-01-20T18:13:13+05:30",
"updatedAt": "2021-01-20T18:13:13+05:30"
}
],
"invoice": null,
"daysToExpiry": -1,
"taglineCTA": "Start Saving",
"expiryNote": null
},
"paymentdiscountBanner": [
{
"id": 9247,
"image": "https://cms-contents.pharmeasy.in/banner/a93d45ef9eb-HSBC.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/flat-10-cashback-upto-rs-150-on-hsbc-cashback-credit-card-8989",
"url": "https://pharmeasy.in/discounts/flat-10-cashback-upto-rs-150-on-hsbc-cashback-credit-card-8989",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/a93d45ef9eb-HSBC.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 8491,
"image": "https://cms-contents.pharmeasy.in/banner/051ca0c08ef-AMAZON-PAY.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/1144",
"url": "https://pharmeasy.in/discounts/1144",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/051ca0c08ef-AMAZON-PAY.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 9908,
"image": "https://cms-contents.pharmeasy.in/banner/b12a27172b0-hdfcbanner.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/get-15-flat-rs-150-instant-discount-on-hdfc-bank-cards-9877",
"url": "https://pharmeasy.in/discounts/get-15-flat-rs-150-instant-discount-on-hdfc-bank-cards-9877",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/b12a27172b0-hdfcbanner.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 9385,
"image": "https://cms-contents.pharmeasy.in/banner/9466405c308-au.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/flat-rs-150-off-on-au-bank-debit-and-credit-card-8990",
"url": "https://pharmeasy.in/discounts/flat-rs-150-off-on-au-bank-debit-and-credit-card-8990",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/9466405c308-au.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 6601,
"image": "https://cms-contents.pharmeasy.in/banner/0c5c9ec6841-mobikwik.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/get-up-to-650-cashback-via-mobikwik-use-code-mbk650-on-mobikiwik-635",
"url": "https://pharmeasy.in/discounts/get-up-to-650-cashback-via-mobikwik-use-code-mbk650-on-mobikiwik-635",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/0c5c9ec6841-mobikwik.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 8503,
"image": "https://cms-contents.pharmeasy.in/banner/3c88b411e46-ola-money.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/get-minimum-50-and-up-to-1000-cashback-via-olamoney-postpaid--379",
"url": "https://pharmeasy.in/discounts/get-minimum-50-and-up-to-1000-cashback-via-olamoney-postpaid--379",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/3c88b411e46-ola-money.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 8502,
"image": "https://cms-contents.pharmeasy.in/banner/7297689b914-AIRTEL.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/discounts/get-flat-80-cashback-via-airtel-payments-bank--650",
"url": "https://pharmeasy.in/discounts/get-flat-80-cashback-via-airtel-payments-bank--650",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/7297689b914-AIRTEL.jpg",
"face": "",
"sequence": ""
}
]
}
],
"LabelBanner": [
{
"id": 5037,
"image": "https://cms-contents.pharmeasy.in/banner/fcbf95577c3-VELCRO.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/8889",
"url": "https://pharmeasy.in/health-care/8889",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/fcbf95577c3-VELCRO.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 5034,
"image": "https://cms-contents.pharmeasy.in/banner/a9ad640ce01-4.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/9323",
"url": "https://pharmeasy.in/health-care/9323",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/a9ad640ce01-4.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 3327,
"image": "https://cms-contents.pharmeasy.in/banner/93ef9d6df4f-SLIPPERS.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/8677",
"url": "https://pharmeasy.in/health-care/8677",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/93ef9d6df4f-SLIPPERS.jpg",
"face": "",
"sequence": ""
}
]
},
{
"id": 8192,
"image": "https://cms-contents.pharmeasy.in/banner/6e16a38ea89-ORTHO_PEDOC.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-wellness/collections/pe-osg-range-168",
"url": "https://pharmeasy.in/health-wellness/collections/pe-osg-range-168",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/banner/banner/6e16a38ea89-ORTHO_PEDOC.jpg",
"face": "",
"sequence": ""
}
]
}
]
},
"discountPage": {
"categories": [
{
"id": 109,
"name": "Covid Essentials",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/6d462f424a43372ea8b7b6f8ca13e052.png?f=png",
"discountText": "Upto 77% off",
"slug": "covid-essentials-109",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=109&category_name=Covid Essentials"
},
{
"id": 877,
"name": "Personal Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/1e622b0308ec3ab48887512eaa3488a5.png?f=png",
"discountText": "Upto 80% off",
"slug": "personal-care-877",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=877&category_name=Personal Care"
},
{
"id": 648,
"name": "Health Food and Drinks",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/335dae76832d370c94f0440f5ba89e1f.png?f=png",
"discountText": "Upto 57% off",
"slug": "health-food-and-drinks-648",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=648&category_name=Health Food and Drinks"
},
{
"id": 8881,
"name": "Beauty",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/403b8ada7b113c7cb2e8d09e3420edfa.png?f=png",
"discountText": "Upto 35% off",
"slug": "beauty-8881",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=8881&category_name=Beauty"
},
{
"id": 93,
"name": "Skin Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/154dec0567b23244b7dcbf2158d39eee.png?f=png",
"discountText": "Upto 50% off",
"slug": "skin-care-93",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=93&category_name=Skin Care"
},
{
"id": 734,
"name": "Home Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/dc96175686f135b5a22d1e57165d0246.png?f=png",
"discountText": "Upto 35% off",
"slug": "home-care-734",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=734&category_name=Home Care"
},
{
"id": 765,
"name": "Ayurvedic Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/ecad9a974e003fb987858b3ee81413c6.png?f=png",
"discountText": "Upto 70% off",
"slug": "ayurvedic-care-765",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=765&category_name=Ayurvedic Care"
},
{
"id": 575,
"name": "Sexual Wellness",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/d1b29f7a2b5f3d62a3d47b617aceef1b.png?f=png",
"discountText": "Upto 53% off",
"slug": "sexual-wellness-575",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=575&category_name=Sexual Wellness"
},
{
"id": 623,
"name": "Fitness Supplements",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/514d0d7d01a63502b4ebfec9ae26f4d2.png?f=png",
"discountText": "Upto 80% off",
"slug": "fitness-supplements-623",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=623&category_name=Fitness Supplements"
},
{
"id": 838,
"name": "Mother and Baby Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/f692f7243b8036ed97d99a7973dd42b3.png?f=png",
"discountText": "Upto 50% off",
"slug": "mother-and-baby-care-838",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=838&category_name=Mother and Baby Care"
},
{
"id": 717,
"name": "Healthcare Devices",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/cfc8ee511609321e91eb86a34f5b2885.png?f=png",
"discountText": "Upto 65% off",
"slug": "healthcare-devices-717",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=717&category_name=Healthcare Devices"
},
{
"id": 693,
"name": "Health Condition",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/8a31db906db93f7cba59f1c48d3ba239.png?f=png",
"discountText": "Upto 65% off",
"slug": "health-condition-693",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=693&category_name=Health Condition"
},
{
"id": 145,
"name": "Diabetic Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/105ceca515ee30509f93309ae75306aa.png?f=png",
"discountText": "Upto 65% off",
"slug": "diabetic-care-145",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=145&category_name=Diabetic Care"
},
{
"id": 750,
"name": "Elderly Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/fa936f30b4563fc4abd187fb22fe5258.png?f=png",
"discountText": "Upto 45% off",
"slug": "elderly-care-750",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=750&category_name=Elderly Care"
},
{
"id": 788,
"name": "Accessories And Wearables",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/763b558b32313005bc11d0cae0e26f58.png?f=png",
"discountText": "Upto 35% off",
"slug": "accessories-and-wearables-788",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=788&category_name=Accessories And Wearables"
},
{
"id": 9297,
"name": "Top Products",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/f10917087a483040b557e4b18204312c.png?f=png",
"discountText": "Upto % off",
"slug": "top-products-9297",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=9297&category_name=Top Products"
}
],
"banner": [
{
"id": 10212,
"image": "https://cms-contents.pharmeasy.in/banner/79c73041650-Centrumm.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/centrum-men-world-s-no-1-multivitamin-for-overall-health-veg-50s-3779949",
"url": "https://pharmeasy.in/health-care/products/centrum-men-world-s-no-1-multivitamin-for-overall-health-veg-50s-3779949"
},
{
"id": 3087,
"image": "https://cms-contents.pharmeasy.in/banner/0546085c3c6-Softovac.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/2372",
"url": "https://pharmeasy.in/health-care/2372"
},
{
"id": 4281,
"image": "https://cms-contents.pharmeasy.in/banner/4600109971c-OneTouchSPS-CB-Sep22-min.png",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/3415",
"url": "https://pharmeasy.in/health-care/3415"
},
{
"id": 10213,
"image": "https://cms-contents.pharmeasy.in/banner/21ddc1b9f25-hairr.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/hair-4u-shampoo-bottle---100-ml-172865",
"url": "https://pharmeasy.in/health-care/products/hair-4u-shampoo-bottle---100-ml-172865"
},
{
"id": 8489,
"image": "https://cms-contents.pharmeasy.in/banner/df29c329f51-Huggies.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/4513",
"url": "https://pharmeasy.in/health-care/4513"
},
{
"id": 9846,
"image": "https://cms-contents.pharmeasy.in/banner/c4432d461ec-Mintop.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/online-medicine-order/mintop-forte-5-solution-60ml-8206",
"url": "https://pharmeasy.in/online-medicine-order/mintop-forte-5-solution-60ml-8206"
},
{
"id": 1322,
"image": "https://cms-contents.pharmeasy.in/banner/9e0c8cc9a56-Venusiaa.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/venusia-max-intensive-moisturizing-lotion-for-everyday-use---500g-214676",
"url": "https://pharmeasy.in/health-care/products/venusia-max-intensive-moisturizing-lotion-for-everyday-use---500g-214676"
},
{
"id": 6858,
"image": "https://cms-contents.pharmeasy.in/banner/1229593baf0-Godrej.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/3372",
"url": "https://pharmeasy.in/health-care/3372"
},
{
"id": 10315,
"image": "https://cms-contents.pharmeasy.in/banner/a8c80c13891-SENQUEL.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/senquel-f-tooth-paste-100gm-172657",
"url": "https://pharmeasy.in/health-care/products/senquel-f-tooth-paste-100gm-172657"
},
{
"id": 10316,
"image": "https://cms-contents.pharmeasy.in/banner/612f14cb340-DEPIWHITE.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/depiwhite-tube-of-15ml-eye-contour-gel-170228",
"url": "https://pharmeasy.in/health-care/products/depiwhite-tube-of-15ml-eye-contour-gel-170228"
},
{
"id": 10066,
"image": "https://cms-contents.pharmeasy.in/banner/447598d4bad-Omez.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/molecules/omeprazole-20-0-mg--6971",
"url": "https://pharmeasy.in/molecules/omeprazole-20-0-mg--6971"
},
{
"id": 10067,
"image": "https://cms-contents.pharmeasy.in/banner/6b42d7a1f1d-Keterol.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/molecules/ketorolac-10-0-mg--7827",
"url": "https://pharmeasy.in/molecules/ketorolac-10-0-mg--7827"
}
]
},
"healthCarePage": {
"categories": [
{
"id": 109,
"name": "Covid Essentials",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/6d462f424a43372ea8b7b6f8ca13e052.png?f=png",
"discountText": "Upto 77% off",
"slug": "covid-essentials-109",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=109&category_name=Covid Essentials"
},
{
"id": 877,
"name": "Personal Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/1e622b0308ec3ab48887512eaa3488a5.png?f=png",
"discountText": "Upto 80% off",
"slug": "personal-care-877",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=877&category_name=Personal Care"
},
{
"id": 648,
"name": "Health Food and Drinks",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/335dae76832d370c94f0440f5ba89e1f.png?f=png",
"discountText": "Upto 57% off",
"slug": "health-food-and-drinks-648",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=648&category_name=Health Food and Drinks"
},
{
"id": 8881,
"name": "Beauty",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/403b8ada7b113c7cb2e8d09e3420edfa.png?f=png",
"discountText": "Upto 35% off",
"slug": "beauty-8881",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=8881&category_name=Beauty"
},
{
"id": 93,
"name": "Skin Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/154dec0567b23244b7dcbf2158d39eee.png?f=png",
"discountText": "Upto 50% off",
"slug": "skin-care-93",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=93&category_name=Skin Care"
},
{
"id": 734,
"name": "Home Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/dc96175686f135b5a22d1e57165d0246.png?f=png",
"discountText": "Upto 35% off",
"slug": "home-care-734",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=734&category_name=Home Care"
},
{
"id": 765,
"name": "Ayurvedic Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/ecad9a974e003fb987858b3ee81413c6.png?f=png",
"discountText": "Upto 70% off",
"slug": "ayurvedic-care-765",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=765&category_name=Ayurvedic Care"
},
{
"id": 575,
"name": "Sexual Wellness",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/d1b29f7a2b5f3d62a3d47b617aceef1b.png?f=png",
"discountText": "Upto 53% off",
"slug": "sexual-wellness-575",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=575&category_name=Sexual Wellness"
},
{
"id": 623,
"name": "Fitness Supplements",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/514d0d7d01a63502b4ebfec9ae26f4d2.png?f=png",
"discountText": "Upto 80% off",
"slug": "fitness-supplements-623",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=623&category_name=Fitness Supplements"
},
{
"id": 838,
"name": "Mother and Baby Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/f692f7243b8036ed97d99a7973dd42b3.png?f=png",
"discountText": "Upto 50% off",
"slug": "mother-and-baby-care-838",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=838&category_name=Mother and Baby Care"
},
{
"id": 717,
"name": "Healthcare Devices",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/cfc8ee511609321e91eb86a34f5b2885.png?f=png",
"discountText": "Upto 65% off",
"slug": "healthcare-devices-717",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=717&category_name=Healthcare Devices"
},
{
"id": 693,
"name": "Health Condition",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/8a31db906db93f7cba59f1c48d3ba239.png?f=png",
"discountText": "Upto 65% off",
"slug": "health-condition-693",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=693&category_name=Health Condition"
},
{
"id": 145,
"name": "Diabetic Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/105ceca515ee30509f93309ae75306aa.png?f=png",
"discountText": "Upto 65% off",
"slug": "diabetic-care-145",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=145&category_name=Diabetic Care"
},
{
"id": 750,
"name": "Elderly Care",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/fa936f30b4563fc4abd187fb22fe5258.png?f=png",
"discountText": "Upto 45% off",
"slug": "elderly-care-750",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=750&category_name=Elderly Care"
},
{
"id": 788,
"name": "Accessories And Wearables",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/763b558b32313005bc11d0cae0e26f58.png?f=png",
"discountText": "Upto 35% off",
"slug": "accessories-and-wearables-788",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=788&category_name=Accessories And Wearables"
},
{
"id": 9297,
"name": "Top Products",
"imageUrl": "https://cdn01.pharmeasy.in/dam/discovery/categoryImages/f10917087a483040b557e4b18204312c.png?f=png",
"discountText": "Upto % off",
"slug": "top-products-9297",
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_list?category_id=9297&category_name=Top Products"
}
],
"banner": [
{
"id": 10212,
"image": "https://cms-contents.pharmeasy.in/banner/79c73041650-Centrumm.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/centrum-men-world-s-no-1-multivitamin-for-overall-health-veg-50s-3779949",
"url": "https://pharmeasy.in/health-care/products/centrum-men-world-s-no-1-multivitamin-for-overall-health-veg-50s-3779949"
},
{
"id": 3087,
"image": "https://cms-contents.pharmeasy.in/banner/0546085c3c6-Softovac.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/2372",
"url": "https://pharmeasy.in/health-care/2372"
},
{
"id": 4281,
"image": "https://cms-contents.pharmeasy.in/banner/4600109971c-OneTouchSPS-CB-Sep22-min.png",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/3415",
"url": "https://pharmeasy.in/health-care/3415"
},
{
"id": 10213,
"image": "https://cms-contents.pharmeasy.in/banner/21ddc1b9f25-hairr.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/hair-4u-shampoo-bottle---100-ml-172865",
"url": "https://pharmeasy.in/health-care/products/hair-4u-shampoo-bottle---100-ml-172865"
},
{
"id": 8489,
"image": "https://cms-contents.pharmeasy.in/banner/df29c329f51-Huggies.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/4513",
"url": "https://pharmeasy.in/health-care/4513"
},
{
"id": 9846,
"image": "https://cms-contents.pharmeasy.in/banner/c4432d461ec-Mintop.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/online-medicine-order/mintop-forte-5-solution-60ml-8206",
"url": "https://pharmeasy.in/online-medicine-order/mintop-forte-5-solution-60ml-8206"
},
{
"id": 1322,
"image": "https://cms-contents.pharmeasy.in/banner/9e0c8cc9a56-Venusiaa.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/venusia-max-intensive-moisturizing-lotion-for-everyday-use---500g-214676",
"url": "https://pharmeasy.in/health-care/products/venusia-max-intensive-moisturizing-lotion-for-everyday-use---500g-214676"
},
{
"id": 6858,
"image": "https://cms-contents.pharmeasy.in/banner/1229593baf0-Godrej.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/3372",
"url": "https://pharmeasy.in/health-care/3372"
},
{
"id": 10315,
"image": "https://cms-contents.pharmeasy.in/banner/a8c80c13891-SENQUEL.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/senquel-f-tooth-paste-100gm-172657",
"url": "https://pharmeasy.in/health-care/products/senquel-f-tooth-paste-100gm-172657"
},
{
"id": 10316,
"image": "https://cms-contents.pharmeasy.in/banner/612f14cb340-DEPIWHITE.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/health-care/products/depiwhite-tube-of-15ml-eye-contour-gel-170228",
"url": "https://pharmeasy.in/health-care/products/depiwhite-tube-of-15ml-eye-contour-gel-170228"
},
{
"id": 10066,
"image": "https://cms-contents.pharmeasy.in/banner/447598d4bad-Omez.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/molecules/omeprazole-20-0-mg--6971",
"url": "https://pharmeasy.in/molecules/omeprazole-20-0-mg--6971"
},
{
"id": 10067,
"image": "https://cms-contents.pharmeasy.in/banner/6b42d7a1f1d-Keterol.jpg",
"type": 3,
"deeplink": "https://pharmeasy.in/molecules/ketorolac-10-0-mg--7827",
"url": "https://pharmeasy.in/molecules/ketorolac-10-0-mg--7827"
}
]
},
"LiveEasySearch": [
{
"entityType": 2,
"entityText": "",
"productId": 3058800,
"productType": 2,
"name": "Liveasy Essentials Men'S Diabetic & Orthopedic Slippers - Brown - Size Uk 10 / Us 11",
"variantCount": 0,
"slug": "liveasy-essentials-men-s-diabetic-orthopedic-slippers---brown---size-uk-10-us-11-3058800",
"subtitleText": "2 Slippers(s) in Box",
"productTierAttributes": {
"type": 5,
"text": "Guaranteed Delivery"
},
"productAvailabilityFlags": {
"isAvailable": true,
"showVariantsInBottomSheet": false,
"notifyMe": false
},
"productSubstitutionAttributes": null,
"similarProductsAttributes": null,
"maxQuantity": 20,
"deeplink": "push.pharmeasy.clevertap://deeplink/healthcare_product_details?product_id=3058800",
"packform": "BOX",
"measurementUnit": "2 Slippers(s) in Box",
"image": "https://cdn01.pharmeasy.in/dam/products_otc/J67437/liveasy-essentials-mens-diabetic-orthopedic-slippers-brown-size-uk-10-us-11-2-1666089666.jpg?dim=300x0&f=jpg&dpr=3&q=60",
"isRxRequired": 0,
"isRefrigerated": false,
"manufacturer": "LIVEASY ESSENTIALS",
"mrpDecimal": "999.00",
"salePriceDecimal": "519.48",
"discountPercent": "48",
"discountDecimal": "479.52",
"damImages": [
{
"url": "https://cdn01.pharmeasy.in/dam/products_otc/J67437/liveasy-essentials-mens-diabetic-orthopedic-slippers-brown-size-uk-10-us-11-2-1666089666.jpg",
"face": "front",
"sequence": "2"
},
{
"url": "https://cdn01.pharmeasy.in/dam/products_otc/J67437/liveasy-essentials-mens-diabetic-orthopedic-slippers-brown-size-uk-10-us-11-3-1666089670.jpg",
"face": "combo",
"sequence": "3"
},
{
"url": "https://cdn01.pharmeasy.in/dam/products_otc/J67437/liveasy-essentials-mens-diabetic-orthopedic-slippers-brown-size-uk-10-us-11-6.1-1666089678.jpg",