-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDigestion.json
More file actions
4238 lines (4238 loc) · 507 KB
/
Digestion.json
File metadata and controls
4238 lines (4238 loc) · 507 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
{
"data":[
{
"url": "https://www.amazon.in/Zandu-Pancharishta-450-ml/dp/B06X6BVYKX/ref=sr_1_5?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-5",
"title": "Zandu Pancharishta 450ml, Ayurvedic Tonic, Relief from disgetive problems like Acidity, Constipation and Gas, boosts digestive immunity",
"main_img": "https://m.media-amazon.com/images/I/61J9gXM+qFL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/4187jPMwsQL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Z4vg5D7+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg"
],
"description": "Made with 35 ayurvedic ingredients like Lavang, Triphala, Ajwain, Draksha, Ghrit Kumari etc.\nDigestive elixir helps in improving Digestive health and increases Appetite\nDraksha acts as an antacid while ajwain provides relief from gastric disorders\nHerbal formulation of Zandu Pancharishta helps in relief from acidity, gas, indigestion and constipation\nDosage - 30 ml of syrup with equal amount of water to be taken twice a day after meal",
"list_price": "\u20b9121\n00",
"price": "121",
"discount": "-14%",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 7.5 x 3.1 x 7.5 cm; 450 Grams\nDate First Available : 9 February 2017\nManufacturer : Emami Limited\nASIN : B06X6BVYKX\nItem model number : 8901248704014\nCountry of Origin : India\nManufacturer : Emami Limited\nItem Weight : 450 g\nItem Dimensions LxWxH : 7.5 x 3.1 x 7.5 Centimeters\nNet Quantity : 450.0 millilitre"
},
{
"url": "https://www.amazon.in/Naturals-Constipation-Isabgol-Ayurvedic-Laxative/dp/B0BMTXCPW9/ref=sr_1_6?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-6",
"title": "Vitro Naturals Constipation Relief Powder with Isabgol | Non Habit Forming 100% Safe Ayurvedic Laxative Powder- 250g",
"main_img": "https://m.media-amazon.com/images/I/71NG2yswujL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/61ac4kWrnQL._SY450_.jpg",
"https://m.media-amazon.com/images/I/81DMADsuDLL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61FiJAaCnPL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71NG2yswujL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71nrhngf5rL._SY450_.jpg",
"https://m.media-amazon.com/images/I/81DUNvEUQNL._SY450_.jpg"
],
"description": "Relieves gas and bloating\nHerbal laxative\nSuitable for chronic constipation\nConsume 2-3 gm with warm water at bedtime for best results",
"list_price": "\u20b9384\n00",
"price": "384",
"discount": "-30%",
"details": "Product Dimensions : 15 x 6 x 23 cm; 260 Grams\nDate First Available : 18 November 2022\nManufacturer : VITROMED HEALTHCARE\nASIN : B0BMTXCPW9\nCountry of Origin : India\nManufacturer : VITROMED HEALTHCARE\nItem Weight : 260 g\nItem Dimensions LxWxH : 15 x 6 x 23 Centimeters\nNet Quantity : 250.0 gram"
},
{
"url": "https://www.amazon.in/Zandu-Sugar-Free-Pancharishta-450/dp/B07DSXK3KL/ref=ice_ac_b_dpb?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-7",
"title": "Zandu Pancharishta Suitable for Diabetics | Ayurvedic Tonic for Digestion, Acidity, Constipation and Gas Relief, Helps Improve Digestive Immunity, Sugarfree 450ml",
"main_img": "https://m.media-amazon.com/images/I/61ygSZYZAZL._SX425_.jpg",
"images": [
"https://m.media-amazon.com/images/I/713BFnvgRZL._SX425_.jpg",
"https://m.media-amazon.com/images/I/71+NoDIJysL._SX425_.jpg",
"https://m.media-amazon.com/images/I/61gO1-h19UL._SX425_.jpg",
"https://m.media-amazon.com/images/I/71D0My7qlzL._SX425_.jpg",
"https://m.media-amazon.com/images/I/71ptoJcPGdL._SX425_.jpg",
"https://m.media-amazon.com/images/I/81pswRbAvtL._SX425_.jpg",
"https://m.media-amazon.com/images/I/61ygSZYZAZL._SX425_.jpg"
],
"description": "Made with 35 ayurvedic ingredients like Lavang, Triphala, Ajwain, Draksha, Ghrit Kumari etc\nSugarfree Digestive elixir helps in improving Digestive health and increases Appetite\nDraksha acts as an antacid while ajwain provides relief from gastric disorders\nHerbal formulation of Zandu Pancharishta suitable for Diabetics helps in relief from acidity, gas, indigestion and constipation\nDosage - 30 ml of syrup with equal amount of water to be taken twice a day after meal",
"list_price": "\u20b9142\n00",
"price": "142",
"discount": "-11%",
"details": "Date First Available : 16 June 2018\nManufacturer : Emami Limited\nASIN : B07DSXK3KL\nItem model number : 8901248704083\nManufacturer : Emami Limited\nItem Dimensions LxWxH : 7.5 x 7.5 x 18.7 Centimeters\nNet Quantity : 1 count"
},
{
"url": "https://www.amazon.in/Dipya-Syrup-Ayurvedic-Digestive-200ml/dp/B09J17KXL6/ref=sr_1_8?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-8",
"title": "Charak Dipya Syrup - Ayurvedic Digestive Care Syrup | Syrup For Digestion Acidity Gas and Bloating (200 ml (Pack of 1))",
"main_img": "https://m.media-amazon.com/images/I/51rcwFQNBuL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/61RWyDCNV4L._SY450_.jpg",
"https://m.media-amazon.com/images/I/61hPaQWeuAL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61dtqnKYl-L._SY450_.jpg",
"https://m.media-amazon.com/images/I/51B6SJ3MZjL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61gtUa2i3DL._SY450_.jpg",
"https://m.media-amazon.com/images/I/51rcwFQNBuL._SY450_.jpg"
],
"description": "Complete Digestive Care\nHelps reduce acidity & relieve Constipation\nAids in digestion of heavy foods & absorption of nutrients\nSupports gut health and improves digestion\nHelps improve natural digestive enzymes secretion",
"list_price": "\u20b989.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 5.5 x 5.5 x 13.5 cm; 250 Grams\nDate First Available : 8 October 2021\nManufacturer : Charak Pharma Pvt Ltd\nASIN : B09J17KXL6\nItem part number : Dipya Syrup_PT1\nCountry of Origin : India\nManufacturer : Charak Pharma Pvt Ltd\nItem Weight : 250 g\nItem Dimensions LxWxH : 5.5 x 5.5 x 13.5 Centimeters\nNet Quantity : 1.00 count"
},
{
"url": "https://www.amazon.in/ORGANIC-INDIA-Constipation-Peristalsis-Elimination/dp/B081RXWHT1/ref=sr_1_9?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-9",
"title": "ORGANIC INDIA Bowelcare Relieves Constipation & Irritable Bowel Syndrome Ayurvedic Capsules || Improves Peristalsis || Normalizes Digestion & Elimination || Improves Peristalsis - 180 Veg Capsules",
"main_img": "https://m.media-amazon.com/images/I/61hXqVmVlwL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/41To0hP3jBL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41GDVYYV41L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/4107gw3CyWL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/21y928i1hlL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Relieves chronic and occasional constipation, cures irritable bowel syndrome (ibs), corrects irregular evacuation\nNormalizes digestion and elimination, improves peristalsis\nRelief in constipation, stomach pain, colitis, indigestion, hyperacidity, giardiasis, inflammation, diarrhea, dystentary, piles",
"list_price": "\u20b9637\n00",
"price": "637",
"discount": "-2%",
"details": "Product Dimensions : 6.5 x 6.5 x 11.9 cm; 250 Grams\nDate First Available : 27 November 2019\nManufacturer : Organic India Private Limited\nASIN : B081RXWHT1\nItem model number : 801541516001\nCountry of Origin : India\nManufacturer : Organic India Private Limited\nItem Weight : 250 g\nItem Dimensions LxWxH : 6.5 x 6.5 x 11.9 Centimeters\nNet Quantity : 180 count"
},
{
"url": "https://www.amazon.in/Nutrafirst-Digestion-Capsules-Men-Women/dp/B08519VV7S/ref=sr_1_10?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-10",
"title": "Nutrafirst Digestion Capsules 500mg with Ayurvedic Herbs for Better Digestion - 60 Capsules, Pack of 1",
"main_img": "https://m.media-amazon.com/images/I/41r8VdJHQ2L._SY300_SX300_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31UPt0ZPv1L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41486OYMMpL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41eL+ZndpNL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51GXA32CA5L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "60 Capsules: 60 vegetarian capsules suitable for men and women to support the body\u2019s digestive function.\nIngredients: A completely natural composition enriched with fennel seeds, ginger root, licorice root, and peppermint.\nSupport Digestive Health \u2013 These digestion capsules are helpful against indigestion. Ginger root and kennel seeds in their composition help regulating bowel movement effectively and remove toxins from the body.\nEnhance Nutrient Absorption \u2013 As you age, your body loses its ability to absorb nutrients. These digestion capsules effectively bring digestive enzymes into action & help the body absorb micronutrients.\nNutrafirst: We\u2019re a fast-growing nutraceutical brand committed to make people healthy. All our products meet international safety standards and combine the best of nature & science.",
"list_price": "\u20b9287\n00",
"price": "287",
"discount": "-85%",
"details": "Product Dimensions : 5 x 5 x 9 cm; 50 Grams\nDate First Available : 13 February 2020\nManufacturer : Magic of Herbs (Ayurvedic Div.)\nASIN : B08519VV7S\nItem part number : NFINDN01\nCountry of Origin : India\nManufacturer : Magic of Herbs (Ayurvedic Div.)\nItem Weight : 50 g\nItem Dimensions LxWxH : 50 x 50 x 90 Millimeters\nNet Quantity : 60.00 count"
},
{
"url": "https://www.amazon.in/Simply-Herbal-Ayurvedic-Supplement-Constipation/dp/B09QXBB2VS/ref=sr_1_11?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-11",
"title": "Simply Herbal Ayurvedic Digestive Elixir Syrup Tonic Enriched With 37 Digestion Enzymes Supplement for Gas & Acidity, Constipation, Bloating, and Improve Immune System - Pack of 1 (450ml each)",
"main_img": "https://m.media-amazon.com/images/I/81gj-x3xxwL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/61HZGLa267L._CR020412241224_UX175.jpg",
"https://m.media-amazon.com/images/I/612RZ1D1UgL._CR020412241224_UX175.jpg",
"https://m.media-amazon.com/images/I/815wC8jAgpL._CR020412241224_UX175.jpg",
"https://m.media-amazon.com/images/I/61j7HzGXnhL._CR020412241224_UX175.jpg"
],
"description": "WHY IT IS NECESSARY FOR YOUR GUT HEALTH? \u2013 Simply Herbal Digestive enzymes are natural substances needed by the body to help break down and digest food. It is used when the pancreas cannot make or does not release enough digestive enzymes into the gut to digest the food.\nCONTAINS 37 NATURAL AYURVEDIC HERBS FOR IMPROVED DIEGSTION \u2013 Powerful combination of Ayurveda Supplement Enzyme mainly consists of ALOVERA, GILOY, DALCHINI (Cinamon), HALDI(Turmeric), KAUCHBHEEJ (Fenugreek Seed), Black Cardamom and many more. Please check detailed ingredient list on the bottle label Images.\nONE STOP SOLUTION FOR YOUR HEALTHY HAPPY STOMACH!! \u2013 It acts on the entire digestive system, building digestive immunity and help reducing the recurrence of digestive problems like indigestion, gas, |flatulence|, |acidity|, |bloating| and stomach heaviness. it also helps in increasing appetite and boosting your digestive immunity. A trusted herbal tonic for long lasting relief.\n100% NATURAL & AYURVEDIC: 100% Ayurvedic Product, All-Natural Healer With No Side Effects! This Product Is Appreciated For the Hygienic Formulation, Long Shelf Life, Airtight Packing, and With High Efficacy. Pure Vegetarian & Safe for Everyday Consumption.\nDOSAGE \u2013 Bottle contains 450ML of Digestive Liquid Syrup, \u00bd-1 Teaspoon 2 times a day for children and 1-2 Teaspoon 2 times a day for adults without any dilution, you have to take directly after the meals. Natural Ayurvedic formulation without any kind of side effects.",
"list_price": "\u20b9386.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 16 x 7 x 7 cm; 560 Grams\nDate First Available : 21 January 2022\nManufacturer : Soulager Healthcare\nASIN : B09QXBB2VS\nItem part number : DIgestive_Elixir\nCountry of Origin : India\nManufacturer : Soulager Healthcare\nItem Weight : 560 g\nItem Dimensions LxWxH : 16 x 7 x 7 Centimeters\nNet Quantity : 450.0 millilitre\nGeneric Name : DIgestive Elixir Syrup"
},
{
"url": "https://www.amazon.in/Matsyaveda-Digestion-Natural-Supplement-Constipation/dp/B071JRWY7X/ref=sr_1_12?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-12",
"title": "Matsya Veda Digestion Pro Ayurvedic Supplement for Digestion, Acidity, Constipation & Gas- 60 Capsules",
"main_img": "https://m.media-amazon.com/images/I/710eBFjgCXL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51KkFgS3ZeL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41gTBE8+hjL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Z4vg5D7+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Dosage- Take 1-2 capsules twice a day with warm water, 30 minutes after Breakfast & Dinner. Exercise regularly, maintain healthy weight, avoid fried and processed food.",
"list_price": "\u20b9549.00",
"price": "",
"discount": "N/A",
"details": "Is Discontinued By Manufacturer : No\nPackage Dimensions : 9.8 x 3.4 x 3.4 cm; 90 Grams\nDate First Available : 17 January 2018\nManufacturer : UK HERBS\nASIN : B071JRWY7X\nItem part number : MVH1003\nCountry of Origin : India\nManufacturer : UK HERBS, Matsya Veda Herbals LLP, 34 Mohammadpur, Bhikaji Cama Place, Delhi-110066, Helpline- +919999404323\nItem Weight : 90 g\nNet Quantity : 60 count"
},
{
"url": "https://www.amazon.in/BANSIWALA-Ayurvedic-Appetizer-Digestion-Digestive/dp/B0B184T4R9/ref=sr_1_13?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-13",
"title": "BANSIWALA Ayurvedic Swadisht Pachak Chatpata Churan for family | Khatta Meetha Mouth Freshener Mukhwas Tasty Peppery Powder for Gas Acidity Heartburn Bloating Vomit Feeling Stomach Heaviness Relief | Food Digestive Digestion Churan - 500 gm",
"main_img": "https://m.media-amazon.com/images/I/61hjdPe3FXL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Wgfe1ejhL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "IMPROVES DIGESTION: Bansiwala Pachak Churna contains natural ingredients may helps to provide you immediate as well as long-term relief from gastric issues. It may effectively regulates the digestive process thereby providing relief from gas, acidity, and bloating.\nFOOD DIGESTIVE CHURAN : Bansiwala Pachak Churna may promotes digestion of foods, it's digestive enzymes are use to digest foods. If you are feeling heavyness after eation food, it may help you from get over the heavyness or stomach pain.\nAYURVEDIC HERBS & SPICES: Bansiwala Pachak Churna is an effective formulation combining potent Ayurvedic herbs and spices that helps in stimulating the digestive process and easing abdominal discomfort. It combines the goodness of natural ingredients like Saunf, Safed Jeera, Dhaniya, Pudina, and Saunth.\nRID YOURSELF OF GASTRIC TROUBLES: Say bye-bye to acidity, indigestion, bloating and other gastric disorders with Bansiwala Pachak Churna. The authentic Ayurvedic ingredients ensures that toxins and wastes are eliminated from the stomach and stimulate the secretion of the necessary digestive enzymes.\nWHY YOU NEED IT: Bansiwala Pachak Churna helps in flatulence, gas formation, sour belching, burning in the chest, indigestion, constipation etc. This churan can be eaten by a person of all ages, whether it is a child or an elder. This churan is completely Ayurvedic which is recognized by AYUSH India",
"list_price": "\u20b9485\n00",
"price": "485",
"discount": "-12%",
"details": "Product Dimensions : 11 x 11 x 11 cm; 510 Grams\nDate First Available : 13 May 2022\nManufacturer : BANSIWALA KHADI GRAM UDYOG HERBAL PRODUCTS\nASIN : B0B184T4R9\nCountry of Origin : India\nManufacturer : BANSIWALA KHADI GRAM UDYOG HERBAL PRODUCTS\nPacker : BANSIWALA KHADI GRAM UDYOG HERBAL PRODUCTS\nItem Weight : 510 g\nItem Dimensions LxWxH : 11 x 11 x 11 Centimeters\nNet Quantity : 500.0 gram"
},
{
"url": "https://www.amazon.in/Khana-Hazam-Churan-Ayurvedic-Constipation/dp/B0BCX69DFW/ref=sr_1_14?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-14",
"title": "Khana Hazam Churan - 100% Ayurvedic Medicine for Digestion, Acidity, Constipation and Gas Relief",
"main_img": "https://m.media-amazon.com/images/I/81pBXWMoLVL._SX466_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Include- Ajmod,Chavya,amal bait. vaayu Khumma, Saunf, Podina, Heing,Sanaay, Vaay Virang,Marorfali, and Sat Podina\nDosage: 3-5 gm dose twice a day, with luke warm water or water.",
"list_price": "\u20b9120\n00",
"price": "120",
"discount": "N/A",
"details": "Product Dimensions : 7.62 x 7.62 x 17.78 cm; 120 Grams\nDate First Available : 2 September 2022\nManufacturer : RK Jain Pharmacy\nASIN : B0BCX69DFW\nItem part number : KH003\nCountry of Origin : India\nManufacturer : RK Jain Pharmacy\nItem Weight : 120 g\nItem Dimensions LxWxH : 7.6 x 7.6 x 17.8 Centimeters\nNet Quantity : 100.0 gram\nGeneric Name : Ayurvedic Medicine"
},
{
"url": "https://www.amazon.in/Sugandhim-Gastric-Acidity-Oil-10/dp/B08PKWKCPW/ref=sr_1_15?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-15",
"title": "Sugandhim Gastric Acidity Oil, 1 x 10ml, Natural Blend Of Oils Peppermint Fennel & Lemon, Helps In Digestion, Ayurvedic Tonic, Instant Relief from Gas, Fat Reduction, Helps Eliminate Toxins, Green Drink, Healthy & Happy Stomach, Coolant, Fresh & Minty Breathe, Immunity Booster, Suitable for all Age Groups, Made In India",
"main_img": "https://m.media-amazon.com/images/I/91SPXZ4UAbL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Sugandhim's GASTRIC ACIDITY OIL is a synergistic blend of peppermint, fennel seed & lemon oil to get instant relief from carminative, digestive disorders like gastritis, indigestion & mild acidity etc.\nBENEFIT : It helps to eliminate toxins from the body & leaves you with a fresh & clean breath anywhere, anytime!\nHOW TO USE: Take 2-3 drops of mixture in 50 - 100ml luke warm water or as directed by the physician.",
"list_price": "\u20b9219\n00",
"price": "219",
"discount": "N/A",
"details": "Date First Available : 3 December 2020\nManufacturer : Sugandhim\nASIN : B08PKWKCPW\nItem part number : HO-GAO\nCountry of Origin : India\nManufacturer : Sugandhim\nNet Quantity : 10.0 millilitre"
},
{
"url": "https://www.amazon.in/Ayurvedic-Digestion-Heartburn-Gastritis-Asma/dp/B09F9PM4SX/ref=sr_1_16?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-16",
"title": "Paet Dhara Pachan Ayurvedic Medicine tablets for Acidity and Gas, Digestion, Anxiety Medicine | Remedy for Heartburn, Gastritis, Acid- reflux & Gastric problems (60 Tablets x Pack of 2) by Dr. Asma",
"main_img": "https://m.media-amazon.com/images/I/711KwrJNVkL._SX450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41GDVYYV41L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41PfBndvlUL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41eL+ZndpNL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "N/A",
"list_price": "\u20b9199\n00",
"price": "199",
"discount": "-17%",
"details": "Date First Available : 2 September 2021\nManufacturer : Dr. Asma Herbals\nASIN : B09F9PM4SX\nCountry of Origin : India\nManufacturer : Dr. Asma Herbals\nNet Quantity : 120.00 count"
},
{
"url": "https://www.amazon.in/Sheth-Brothers-Kayam-Churna-Pack/dp/B074J5M2KB/ref=sr_1_17?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-17",
"title": "Sheth Brothers Kayam Churan, Constipation Relief Medicine, Kayam Churna Powder, Ayurvedic Medicine to Help Reduce Acidity & Aid Digestion, 100 gm | Pack Of 3",
"main_img": "https://m.media-amazon.com/images/I/71SDCFGBy+L._SY450_PIbundle-3,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/71SDCFGBy+L._SY450_PIbundle-3TopRight00_AA450SH20_.jpg"
],
"description": "Provides Relief from Chronic Constipation: A well-known constipation medicine Ayurvedic formulation, this churan for digestion works by increasing bile secretion in the liver, which eases bowel passage in the large intestine.\nCleanses Stomach & Aids Digestion: A healthy digestive system is essential for maintaining overall good health. The highly effective formulation in this Kayam Churna powder works as an excellent stomach cleanser. Your very own trusty immunity kit!\nRelieves Acidity, Gas & Bloating: The potent ingredients provide stomach gas relief, while reducing flatulence and bloating. They promote enzyme secretion and reduce abdominal distension, making this an effective anti acidity Ayurvedic medicine.\nAlleviates IBS Symptoms: The result of a sensitive digestive system and poor dietary choices, IBS causes diarrhoea and constipation. This churna Ayurvedic medicine helps treat a number of the symptoms of this painful, often unmanageable disease.\nKayamchurna 100 gm dosage: 1/2 to 2 teaspoons of the Ayurvedic Churna before bedtime. You are recommended to consult your general physician. Pregnant or lactating women are advised against taking this constipation relief medicine.",
"list_price": "\u20b9297\n00",
"price": "297",
"discount": "N/A",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 5 x 15 x 15.5 cm; 100 Grams\nDate First Available : 3 August 2017\nManufacturer : Sheth Brothers\nASIN : B074J5M2KB\nItem model number : SBKAY901\nCountry of Origin : India\nManufacturer : Sheth Brothers, shahyash729amazon@gmail.com\nPacker : JAYANTILAL AND BROTHERS,GALA NO 6-7,NADIYADWALA COMPOUND,HAJI BAPU ROAD,MALAD EAST,MUMBAI 400097\nImporter : JAYANTILAL AND BROTHERS,GALA NO 6-7,NADIYADWALA COMPOUND,HAJI BAPU ROAD,MALAD EAST,MUMBAI 400097\nItem Weight : 100 g\nItem Dimensions LxWxH : 50 x 150 x 155 Millimeters\nNet Quantity : 3 count\nIncluded Components : Sheth Brothers Kayam Churna - 100 Gm (Pack Of 3)\nGeneric Name : Sheth Brothers Kayam Churna - 100 Gm (Pack Of 3"
},
{
"url": "https://www.amazon.in/AADAR-Herbals-Medicine-Constipation-Wellness/dp/B07GPRX94F/ref=sr_1_18?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-18",
"title": "AADAR Re-LAX Constipation Relief, Ayurvedic Natural Laxative Digestion Support & Bowel Wellness Capsules, 60 units (Pack of 2)- with Senna, Harade(Haritaki), Ajwain",
"main_img": "https://m.media-amazon.com/images/I/71-3OKh+i1L._SY450_PIbundle-2,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/71+tqzL0WnL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71DAxfwRatL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71qux+ct60L._SY450_.jpg",
"https://m.media-amazon.com/images/I/715lyd5uMIL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71-QRFkhPhL._SY450_.jpg"
],
"description": "EFFECTIVE RELIEF FROM CONSTIPATION: Re-Lax is a natural laxative which helps provide instant relief in constipation and hyperacidity, improves digestion and facilitates regular bowel movements.\nGOODNESS OF PURE HERBS: A unique blend of herbs for acidity, gastric relief and stomach ailments, Re-Lax is an ayurvedic proprietary formulation that constitutes pure herbal ingredients namely Senna Leaves (Sonamukhi), Ajwain, Harde (Haritaki), and Sanchal.\nIMPROVES DIGESTION: Re-Lax cleanses the body naturally and helps in maintaining a healthy digestive system. It normalizes the elimination process and helps to keep the body healthy.\nSAFE AND EFFECTIVE: Re-Lax is a clinically researched ayurvedic formulation for constipation that can be used regularly without causing dependence. It doesn\u2019t have any additives or preservatives and thus free from any side effects.\nDOSAGE: The ideal dosage of Re-Lax is 2 capsules every day just before bed time, with normal water. Re-Lax constipation relief capsules are a perfect alternative to our flagship product Re-Lax constipation powder.",
"list_price": "\u20b9550.00",
"price": "",
"discount": "N/A",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 4.5 x 4.5 x 7 cm; 60 Grams\nDate First Available : 20 August 2018\nManufacturer : S.G.M.L.S.S.S.M.LTD.\nASIN : B07GPRX94F\nItem part number : AADAR RELAX C-02\nCountry of Origin : India\nManufacturer : S.G.M.L.S.S.S.M.LTD., 9867667699\nItem Weight : 60 g\nItem Dimensions LxWxH : 45 x 45 x 70 Millimeters\nNet Quantity : 120 count"
},
{
"url": "https://www.amazon.in/AADAR-Herbals-Constipation-Wellness-Problems/dp/B07D7ZV3ZD/ref=sr_1_19?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-19",
"title": "AADAR Ayurvedic Re-LAX Powder for Constipation Relief | Natural Laxative, Improves Digestion & Gastric Relief, 90 gm (Pack of 1) - with Senna, Haritaki (Harade), Ajwain",
"main_img": "https://m.media-amazon.com/images/I/51qgE0p+36L._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/81vZccrCWlL._CR020412241224_UX175.jpg",
"https://m.media-amazon.com/images/I/71fhgFLysKL._CR020412241224_UX175.jpg",
"https://m.media-amazon.com/images/I/71eOwZYKUQL._CR020412241224_UX175.jpg",
"https://m.media-amazon.com/images/I/7152ejzblcL._CR020412241224_UX175.jpg"
],
"description": "EFFECTIVE RELIEF FROM CONSTIPATION: A herbal remedy for natural relief from constipation, acidity, excessive gas and indigestion, Re-Lax is a perfect blend of herbs such as Senna Leaves (Sonamukhi), Ajwain, Harde (Haritaki), and Sanchal.\nPROMOTES PROPER DIGESTION: Re-Lax is a natural laxative that cleanses the body, regulates bowel movements, helps against weak digestion system and provides a long-lasting relief in constipation.\nSAFE AND EFFECTIVE: Re-Lax is completely natural and safe for regular use, and doesn\u2019t cause dependence. It is an ayurvedic approach for constipation and gastric discomforts.\nNO SIDE EFFECTS: A clinically researched ayurvedic formulation, it doesn\u2019t contain any additives or preservatives and thus have no side effects.\nDOSAGE: The ideal dosage of Re-Lax powder is 1 teaspoon per day before bed time, with normal water. In case of chronic constipation, the dosage can be increased to 2 teaspoons.",
"list_price": "\u20b9140.00",
"price": "",
"discount": "N/A",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 6 x 6 x 10 cm; 90 Grams\nDate First Available : 22 May 2018\nManufacturer : S.G.M.L.S.S.S.M. Ltd.\nASIN : B07D7ZV3ZD\nItem part number : AADAR RELAX P-01\nCountry of Origin : India\nManufacturer : S.G.M.L.S.S.S.M. Ltd., S.G.M.L.S.S.S.M. Ltd.; 30, 79, 80, Yogeshwar Estate, Amraiwadi, Ahmedabad- 320008; 079-22747450\nPacker : INMART COMMERCE PVT. LTD.4th Floor,B-2/405,DSK Madhuban,Andheri Kurla Road Sakinaka,Andheri east,Mumbai-400072 / contact : 9867667699\nItem Weight : 90 g\nItem Dimensions LxWxH : 6 x 6 x 10 Centimeters\nNet Quantity : 100 gram\nIncluded Components : 1-Ayurvedic Constipation Relief\nGeneric Name : Ayurvedic Constipation Relief"
},
{
"url": "https://www.amazon.in/MULTANI-PACHMEENA-TONIC-DIGESTIVE-SYRUP/dp/B08W5DJJN5/ref=sr_1_20?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-20",
"title": "Multani Pachmeena Tonik Digestion Syrup | Ayurvedic Products For Better Digestion | Laxative For Constipation Relief, Gas, Bloating & Abdominal Discomfort | Improves Appetite | Natural Stomach Medicine 300 Ml",
"main_img": "https://m.media-amazon.com/images/I/41JlCKgtjeS._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51PIP+8bzwL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg"
],
"description": "\u3010Ayurvedic Digestive Laxative \u3011: Multani Pachmeena Tonik Is an Ayurvedic Laxative Beneficial for Relief from Gas, Bloating, Abdominal Discomfort & Improves Appetite.\n\u3010Improves Digestive Enzymes Functions\u3011: Multani Pachmeena Has All Ingredients That Helps to Increase Digestive Enzymes Functions. Multani Pachmeena Syrup Has Everything That Constipation Relief Medicine Should Contains.\n\u3010No Side Effect\u3011: Our Products Are Made From A Combination Of Herbs I.E That To Improve Health And Wellness. Backed By Doctors For Quality And Potency.\n\u3010Ingredients & Benefits\u3011: Nagarmotha, Haritaki, Ajwain, Kali Mirch, Methidana, Chitrak, Jeera Safed, Saunf, Lavang, Sugar, Flavor- Ras Berry. Improve Appetite, Indigestion, Acidity Gas & Flatulence, Heavy/Queasy Stomach Heartburn, Bloating, Belching, Constipation, Abdominal Pain, Nausea And Vomiting Aroused Due To Indigestion And Abdominal Discomfort.\n\u3010Dosage & Doctor Consultation\u3011: 2 Teaspoonful Thrice a Day or as Directed by the Physician. For Any Query, You Can Consult Our In House Doctors Freely.",
"list_price": "\u20b9115.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 10 x 5 x 8 cm; 1.25 Kilograms\nDate First Available : 8 February 2021\nManufacturer : Multani Pharmaceuticals Limited\nASIN : B08W5DJJN5\nItem part number : MP-01\nCountry of Origin : India\nManufacturer : Multani Pharmaceuticals Limited\nItem Weight : 1 kg 250 g\nItem Dimensions LxWxH : 10 x 5 x 8 Centimeters\nNet Quantity : 900 millilitre"
},
{
"url": "https://www.amazon.in/Gynoveda-Constipation-Medicine-Ayurvedic-Digestion/dp/B09JCL1R2P/ref=sr_1_25?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-25",
"title": "Gynoveda Constipation Fast Relief Medicine | Ayurvedic Colon Cleanser For Gut health | Natural Laxative Haritaki Castor Oil Improves Digestion |Goodbye Isabgol, Powder, Triphala | 1 Bottle 60 Tablets",
"main_img": "https://m.media-amazon.com/images/I/71G-CvSZmhL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51v5QKT4YPL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/4107gw3CyWL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41RLraYCwfL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41gTBE8+hjL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41UbTFfBWJL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/413aU+Y9ZfL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "\u2705 BENEFITS: Overnight constipation relief and work within 6 to 12 hours. Consume at night to flush-out blocked bowel by morning. Fast relief from constipation, gas, acidity, bloating and works while you sleep. Gently detoxifies intestines, maintains gut flora, improves digestion. Feel relieved, everyday!\n\u2705 WHO SHOULD TAKE IT: Anyone with constipation, gas, acidity, acid reflux. Dry, hard, lumpy stools. Don't completely empty bowels. Difficult or painful to pass stool. Gets cramps, bloating, nausea due to kabz amlapitta irregular bowel movement. Pet Saffa, Kabj Daffa.\n\u2705 DOSAGE: Eat at Bedtime, Wake-up to Goodtimes. Adjust dosage as per your body constitution. Start with 2 tablets at bedtime 2 hours after last meal of the day. If 2 tablets result in loose motion next morning, then reduce dosage to 1 tablet next time. Take 3 tablets in case 2 tablets show no results. Raat ko khao, Subah fresh ho jao.\n\u2705 HOW IT WORKS: HARITAKI is age-old herb described in Ayurvedic scripture 'Charak Samhita' for Gut Detox, Clean Colon, Improved Digestion. CASTOR OIL softens stools, lubricates inner lining of gut for smooth passage. Haritaki is main ingredient in Triphala powder, churna, tablets, capsules & used as laxatives for constipation. Gandharva Haritaki is better Colon Cleanser than Isabgol Psyllium Husk, fiber supplement for constipation, Pancharishta for gut health. Potty Tight, Haritaki Fights.\n\"\u2705ABOUT PRODUCT: 100% AYURVEDIC formula called 'Gandharva Haritaki'. Clinical research published in ResearchGate, NCBI found it to be most potent constipation relief medicine. Made in GMP Certified factory with FDA approval. Tested for Safety, Purity, Potency. Toxin-free with zero side-effects. Fast Acting Natural Laxative. Non Habit Forming Colon Cleanser. More powerful than regular sat isabgol, triphala powder, haritaki churna tablets, gut health supplements.\"",
"list_price": "\u20b9400.00",
"price": "",
"discount": "N/A",
"details": "Package Dimensions : 7.8 x 4.7 x 4.6 cm; 60 Grams\nDate First Available : 12 October 2021\nManufacturer : Gynoveda Private Limited\nASIN : B09JCL1R2P\nCountry of Origin : India\nManufacturer : Gynoveda Private Limited\nItem Weight : 60 g\nNet Quantity : 60.00 count"
},
{
"url": "https://www.amazon.in/MULTANI-PACHMEENA-TONIK-300-PACK/dp/B08BLPSG3D/ref=sr_1_26?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-26",
"title": "Multani Pachmeena Tonik Digestive Syrup |Ayurvedic Products For Better Digestion | Relief From Gas, Bloating, Abdominal Discomfort | Improves Appetite 100% Natural & Ayurvedic | 300 Ml",
"main_img": "https://m.media-amazon.com/images/I/41JlCKgtjeS._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51GXA32CA5L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg"
],
"description": "\u3010Ayurvedic Digestive Laxative \u3011: Multani Pachmeena Tonik Is an Ayurvedic Laxative Beneficial for Relief from Gas, Bloating, Abdominal Discomfort & Improves Appetite.\n\u3010Improves Digestive Enzymes Functions\u3011: Multani Pachmeena Has All Ingredients That Helps to Increase Digestive Enzymes Functions. Multani Pachmeena Syrup Has Everything That Constipation Relief Medicine Should Contains.\n\u3010No Side Effect\u3011: Our Products Are Made From A Combination Of Herbs I.E That To Improve Health And Wellness. Backed By Doctors For Quality And Potency.\n\u3010Ingredients & Benefits\u3011: Nagarmotha, Haritaki, Ajwain, Kali Mirch, Methidana, Chitrak, Jeera Safed, Saunf, Lavang, Sugar, Flavor- Ras Berry. Improve Appetite, Indigestion, Acidity Gas & Flatulence, Heavy/Queasy Stomach Heartburn, Bloating, Belching, Constipation, Abdominal Pain, Nausea And Vomiting Aroused Due To Indigestion And Abdominal Discomfort.\n\u3010Dosage & Doctor Consultation\u3011: 2 Teaspoonful Thrice a Day or as Directed by the Physician. For Any Query, You Can Consult Our In House Doctors Freely.",
"list_price": "\u20b9115.00",
"price": "",
"discount": "N/A",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 10 x 4 x 8 cm; 1.2 Kilograms\nDate First Available : 24 March 2018\nManufacturer : MULTANI PHARMACEUTICALS LIMITED\nASIN : B08BLPSG3D\nItem model number : MPL46\nCountry of Origin : India\nManufacturer : MULTANI PHARMACEUTICALS LIMITED, Multani Pharmaceuticals Ltd\nPacker : Multani Pharmaceuticals Ltd\nItem Weight : 1 kg 200 g\nItem Dimensions LxWxH : 10 x 4 x 8 Centimeters\nNet Quantity : 600 millilitre\nGeneric Name : Multani Pachmeena Tonik | Digestive Syrup 300 ml- 4 Pack"
},
{
"url": "https://www.amazon.in/Multani-Pachmeena-Ayurvedic-Constipation-Discomfort/dp/B0BLRMXPZX/ref=sr_1_27?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-27",
"title": "Multani Pachmeena Tonik With Pachmeena Liquid Sugar Free (No Added Sugar) | Ayurvedic Product For Better Digestion | Laxative For Constipation Relief,Bloating & Abdominal Discomfort | 300 Ml Each",
"main_img": "https://m.media-amazon.com/images/I/71lWfQzSsfL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "\u3010Ayurvedic Digestive Laxative \u3011: Multani Pachmeena Tonik Is an Ayurvedic Laxative Beneficial for Relief from Gas, Bloating, Abdominal Discomfort & Improves Appetite.\n\u3010Improves Digestive Enzymes Functions\u3011: Multani Pachmeena Has All Ingredients That Helps to Increase Digestive Enzymes Functions. Multani Pachmeena Syrup Has Everything That Constipation Relief Medicine Should Contains.\n\u3010No Side Effect\u3011: Our Products Are Made From A Combination Of Herbs I.E That To Improve Health And Wellness. Backed By Doctors For Quality And Potency.\n\u3010Ingredients & Benefits\u3011: Nagarmotha, Harar, Ajwain Pachak, Kali Mirch, Methi Dana, Chitrakmul, Jeera Safed, Saunf, Lavang. Flavor- Lemon Flavour. Improve Appetite, Indigestion, Acidity Gas & Flatulence, Heavy/queasy Stomach Heartburn, Bloating, Belching, Constipation, Abdominal Pain, Nausea And Vomiting Aroused Due To Indigestion And Abdominal Discomfort.\n\u3010Dosage & Doctor Consultation\u3011: 2 Teaspoonful Thrice a Day or as Directed by the Physician. For Any Query, You Can Consult Our In House Doctors Freely.",
"list_price": "\u20b9220.00",
"price": "",
"discount": "N/A",
"details": "Package Dimensions : 19.4 x 13.2 x 6.4 cm; 800 Grams\nDate First Available : 8 November 2022\nManufacturer : Multani Pharmaceuticals Ltd\nASIN : B0BLRMXPZX\nCountry of Origin : India\nManufacturer : Multani Pharmaceuticals Ltd\nItem Weight : 800 g\nNet Quantity : 300.0 millilitre"
},
{
"url": "https://www.amazon.in/General-MULTANI-PACHMEENA-TONIC-DIGESTIVE/dp/B08XK2SBKS/ref=sr_1_29_mod_primary_new?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sbo=RZvfv%2F%2FHxDF%2BO5021pAnSA%3D%3D&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-29",
"title": "Multani Pachmeena Tonik Digestion Syrup | Ayurvedic Products For Better Digestion | Laxative For Constipation Relief, Gas, Bloating & Abdominal Discomfort | Improves Appetite |300 Ml",
"main_img": "https://m.media-amazon.com/images/I/41W0R7R1SVS._SY450_PIbundle-4,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51h8pxez7JL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31tlNccn6BL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "\u3010Improves Appetite\u3011: Multani Pachmeenatonik Is An Ayurvedic Tonic Used To Relief From Gas, Bloating ,Abdominal Discomfort & Improves Appetite.\n\u3010100% Natural & Ayurvedic\u3011: It Is A 100% Ayurvedic Product , All-Natural Healer With No Side Effects! This Product Is Appreciated For The Hygienic Formulation, Long Shelf Life, Airtight Packing, And With High Efficacy ..Pure Vegetarian & Safe For Everyday Consumption.\n\u3010No Side Effect\u3011: Our Products Are Made From A Combination Of Herbs That To Improve Health And Wellness. Backed By Doctors For Quality And Potency\n\u3010Ingredients & Benefits\u3011: Nagarmotha, Haritaki, Ajwain, Kali Mirch, Methi Dana, Chitrak, Jeera Safed, Saunf, Sugar, Citric Acid, Flavour: Ras Berry.\n\u3010Dosage\u3011: 2 Teaspoonful Thrice A Day Or As Directed By The Physician.",
"list_price": "\u20b965\n00",
"price": "65",
"discount": "-46%",
"details": "Product Dimensions : 20 x 5 x 16 cm; 1.2 Kilograms\nDate First Available : 25 February 2021\nManufacturer : MULTANI PHARMACEUTICALS LTD.\nASIN : B08XK2SBKS\nItem model number : MPS-01\nCountry of Origin : India\nManufacturer : MULTANI PHARMACEUTICALS LTD., Multani Pharmaceuticals Ltd\nPacker : Multani Pharmaceuticals Ltd\nItem Weight : 1 kg 200 g\nItem Dimensions LxWxH : 20 x 5 x 16 Centimeters\nNet Quantity : 1200.0 millilitre\nGeneric Name : MULTANI PACHMEENA TONIC - 300ML (PACK OF 4) | DIGESTIVE SYRUP."
},
{
"url": "https://www.amazon.in/Nabhi-Sutra-Daily-Digestion-Dose/dp/B08LBLV1ML/ref=sr_1_30?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-30",
"title": "Nabhi Sutra - Belly Button Oil for Digestion Booster (15 ml) | Blend of Coconut Oil, Ginger Oil, Castor Oil | Ayurvedic Cold Pressed Oil Helps in Digestion | Promotes Body Detoxification | Chemical Free Nabhi Oil",
"main_img": "https://m.media-amazon.com/images/I/71BDMa4vl5L._SX450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31K-DV43dWL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/318gaVuaZyL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31WGWrihB1L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41S7E2WG7yL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31Bf74BwJ0L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41qA4kYY0zL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg"
],
"description": "Good exercise, good food and these 3 drops of daily digestion oil - is the key to your lifestyle. Ayurveda has given us many gifts and supporting our digestion is one of them. With help of nabhi chikitsa healing method, we could come up with this dose to support our digestion with ease and effectiveness. It helps us to balance our tridoshas: vata, pitta, kapha. It will help us improve your healing and feeling.\nHelps in digestion of food\nSupports cleaning of the system\nHow To Apply: Put 2-3 drops of required nabhi sutra oil in your belly button before you go to bed in the night. Allow it to penetrate by massaging it in a circular clockwise motion for beneficial results. And you are done! Just do not forget to clean your belly button in the morning.; Supports your metabolism\nPackage Content: 1 Daily Digestion Dose Oil; Quantity: 15 Ml",
"list_price": "\u20b9531\n00",
"price": "531",
"discount": "-10%",
"details": "Package Dimensions : 20.3 x 7.6 x 4.1 cm; 110 Grams\nDate First Available : 17 October 2020\nManufacturer : Nabhi sutra\nASIN : B08LBLV1ML\nItem part number : Nabhi sutra\nCountry of Origin : India\nManufacturer : Nabhi sutra\nItem Weight : 110 g\nNet Quantity : 15.0 gram"
},
{
"url": "https://www.amazon.in/Cannavedic-Acidity-Relief-Natural-Formulation/dp/B09XX4DCRP/ref=sr_1_31?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-31",
"title": "Cannavedic Acidity Relief | Instant Relief From Acidity | For Acidity & Gas Relief | For Hyperacidity and Digestion | Acidity Ayurvedic Medicine",
"main_img": "https://m.media-amazon.com/images/I/6188KGhOR-L._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/61vOa7+BD3L._SY450_.jpg",
"https://m.media-amazon.com/images/I/61Mu0xYD4sL._SX450_.jpg",
"https://m.media-amazon.com/images/I/71m7ewGasUL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61BjL4qzK5L._SY450_.jpg",
"https://m.media-amazon.com/images/I/6188KGhOR-L._SY450_.jpg",
"https://m.media-amazon.com/images/I/611JHiFbnuL._SY450_.jpg"
],
"description": "EFFECTIVE CONSTIPATION RELIEF: It is a wonderful combination of herbs used as an herbal or ayurvedic medicine to treat indigestion, constipation, excessive gas, and acidity.\nEFFECTIVE AND SAFE: When used regularly, Acidity relief is absolutely safe and doesn't lead to dependence. Constipation and stomach discomfort are treated using an ayurvedic method.\nNO SIDE EFFECTS: It is an ayurvedic composition that has undergone clinical investigation and has no negative effects because it doesn't contain any additives or preservatives.\nMADE WITH OUTSTANDING INGREDIENTS: Acidity Relief is a natural ingredient powerhouse. Sunthi, Pipali, Maricha, Twak, Krishnajeeraka, Yavani, Soupa, Saindhava Lavana, Hingu, Haritaki, Sarjishara, and Pudina work synergistically to promote happy gut health.\nDOSAGE: The recommended dosage of Cannavedic's Adicity Relief is 2 teaspoons with warm water twice daily, or as prescribed by a doctor.\nSTORAGE : Keep the Cannavedic's Adicity Relief container tightly closed at temperatures below 30\u00b0C. Use within 45 days of opening the container.",
"list_price": "\u20b9489\n00",
"price": "489",
"discount": "-18%",
"details": "Item Weight : 150 Grams\nDate First Available : 14 April 2022\nManufacturer : Cannavedic\nASIN : B09XX4DCRP\nCountry of Origin : India\nManufacturer : Cannavedic\nItem Weight : 150 g\nNet Quantity : 1.0 gram"
},
{
"url": "https://www.amazon.in/Baidyanath-Avipattikar-Churna-120-g/dp/B00JYJK5LC/ref=sr_1_32?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-32",
"title": "Baidyanath Avipattikar Churna - For Hyperacidity and Digestion - 120 g",
"main_img": "https://m.media-amazon.com/images/I/41JkNW6CtdL.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41ABOdAeNUL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41s1ZZdYUXL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41nNkyP5Y4L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41oz-oELqjL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "HELPS BOOST DIGESTION: Avipattikar Churna is a traditional Ayurvedic formulation made from commonly known herbs for digestive relief. It is known to provide quick relief from digestive distress like hyperacidity, flatulence, bloating and more. It contains Vitamin C rich Amlas which helps in elevating your immunity levels and energy levels. Regular consumption of this powder keeps you active through the day while supporting healthy functioning of the digestive system.\nHERBAL LAXATIVE: Baidyanath Avipattikar Churn helps ease bowel movements and keeps digestive troubles at bay. Bloating is a common problem in today\u2019s lifestyle which triggers formation of gas and uneasiness. Regular consumption of Baidyanath Avipattikar Churna powder can help fight such common digestive issues. It acts as a carminative and a purgative.\nHELPS BALANCE PITTA DOSHA: Also known as Avipathi Choornam, it is known in Ayurveda to help balance the pitta dosha in the body. It is known for its digestive prowess such as helping in breakdown of food and quick absorption of nutrients by the body. It may help combat nausea and heartburn occurring due to severe indigestion. For best results, regular consumption is recommended.\nPOTENT COMBINATION OF HERBS: These three major medicinal plants of India are rich in essential minerals and vitamins that help in maintaining a healthy digestive tract. Amla is rich in Vitamin C which helps in bolstering the immune system of the body. Baheda has anti-allergy properties and helps detoxify the body. Ginger acts as a carminative that helps reduce excess gas collecting in the digestive tract.\nUNCOMPROMISED QUALITY AND GMP CERTIFIED: Baidyanath Avipattikar Churna is a GMP certified product which is absolutely safe and can be consumed on a daily basis. The product is made from plant-based ingredients and hence is vegan. Mix 1-2 teaspoons of this Baidyanath Churna in a glass of water and consume daily on an empty stomach in the morning. For best results, consume this churna with coconut water for a calming effect.",
"list_price": "\u20b9144.00",
"price": "",
"discount": "N/A",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 6.5 x 1.7 x 8.5 cm; 120 Grams\nDate First Available : 7 November 2016\nManufacturer : Shree Baidyanath Ayurved Bhawan Pvt. Ltd.\nASIN : B00JYJK5LC\nItem model number : 2194144000038\nCountry of Origin : India\nManufacturer : Shree Baidyanath Ayurved Bhawan Pvt. Ltd., SHREE BAIDYANATH AYURVED BHAWAN PVT. LTD 1, Gupta Lane, Kolkata 700006, India. Phone: 18001021855. Email: cc@baidyanath.com.\nPacker : SHREE BAIDYANATH AYURVED BHAWAN PVT. LTD 1, Gupta Lane, Kolkata 700006, India. Phone: 18001021855. Email: cc@baidyanath.com.\nItem Weight : 120 g\nItem Dimensions LxWxH : 6.5 x 1.7 x 8.5 Centimeters\nNet Quantity : 120.0 gram\nGeneric Name : Ayurvedic Product"
},
{
"url": "https://www.amazon.in/AADAR-Constipation-Gastric-Capsules-Digestion/dp/B07V4ZBHML/ref=sr_1_33?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-33",
"title": "AADAR RELAX PRO | Ayurvedic Natural Laxative For Fast Constipation Relief & Gastric Troubles | Improves Digestion & Regulates Bowel Movement | 60 Capsules (Pack of 1)",
"main_img": "https://m.media-amazon.com/images/I/61vwsxV6OHL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/71L5fKf3bXL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71QJS+67HaL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61vwsxV6OHL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71xMOlqka8L._SY450_.jpg",
"https://m.media-amazon.com/images/I/81CLn20op7L._SY450_.jpg",
"https://m.media-amazon.com/images/I/71TEfsb0KqL._SY450_.jpg"
],
"description": "EFFECTIVE RELIEF FROM CONSTIPATION: Re-Lax Pro works as a natural laxative for your constipation and gastric troubles and offers a fast relief. A daily use of it improves digestion, facilitates regular bowel movements and keep your gut healthy.\nADDED BENEFITS OF HERBS: Re-Lax Pro is a unique blend of herbal ingredients, such as Senna, Trivrut, Harad, Ajwain and Kala Namak. While Senna leaves and Harad helps in relief from constipation, Trivrut helps with gastric troubles.\nABOUT RELAX PRO: 100% natural ingredients, safe for daily use, no side effects, GMP Certified, Tested for heavy metals, made in India, Chemical free products.\nSAFE FOR EVERYDAY USE: Clinically tested and validated, Re-lax Pro is a natural and ayurvedic product and is absolutely safe to consume daily, without worrying about dependency.\nHOW TO USE: Two capsules with warm water, every day, before going to bed. Living a healthy life is a matter of discipline. And making AADAR Re-Lax Pro as part of your routine, helps offer comprehensive gut care.",
"list_price": "\u20b9340.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 4.5 x 4.5 x 7 cm; 60 Grams\nDate First Available : 11 July 2019\nManufacturer : S.G.M.L.S.S.S.M.LTD.\nASIN : B07V4ZBHML\nItem part number : AADAR RELAXPRO C-01\nCountry of Origin : India\nManufacturer : S.G.M.L.S.S.S.M.LTD.\nItem Weight : 60 g\nItem Dimensions LxWxH : 45 x 45 x 70 Millimeters\nNet Quantity : 60 count"
},
{
"url": "https://www.amazon.in/DETOX11-tablets-Intestine-Ayurvedic-Digestion/dp/B0BRNR65FT/ref=sr_1_34?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-34",
"title": "DETOX11 Liver Detox tablets , Intestine cleanse & detox tablets for Men Women Detox Ayurvedic tablets Improve Digestion",
"main_img": "https://m.media-amazon.com/images/I/61DI3K7Vz5L._SX450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41ZBzepz8WL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41P0RNIqslL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Antioxidant properties of ayurvedic ingredients help reduce free radical production & prevent toxins from attaching to the intestine , thereby assisting in liver detoxification. Also assists in improving metabolism that helps detoxify liver.\nIngredients - Kali Mirch, Senna Leaf, Haritaki, Neem, Haridra, Kutki, Vibhitaki, Pudina, Gudhuchi,Daruharidra\nBENEFITS: Flush out harmful toxins from liver One tablet of Detox11 is a powerful liver care supplement to protect from damage caused by free radicals, excessive alcohol consumption, various allopathic medicines & other unwated medication\nVEGETARIAN NATURAL PURE : 100% Vegetarian/Vegan, Natural, Herbal and Pure.\nRecommended Dosage: One capsule daily or as directed by physician",
"list_price": "\u20b9399\n00",
"price": "399",
"discount": "-7%",
"details": "Product Dimensions : 8 x 8 x 13 cm; 80 Grams\nDate First Available : 4 January 2023\nManufacturer : DAKSHITH AYURVEDA\nASIN : B0BRNR65FT\nItem part number : DETOX11\nCountry of Origin : India\nManufacturer : DAKSHITH AYURVEDA\nItem Weight : 80 g\nItem Dimensions LxWxH : 8 x 8 x 13 Centimeters\nNet Quantity : 1.00 count"
},
{
"url": "https://www.amazon.in/Ayurvel-Syrup-Ayurvedic-Constipation-Digestion/dp/B0BRKGN56N/ref=sr_1_35?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-35",
"title": "Ayurvel Syrup 150 ml | Ayurvedic laxative Syrup Relieves Constipation, Acidity, Gas, Aids Digestion ( Pack of 2)",
"main_img": "https://m.media-amazon.com/images/I/615r0cjteOL._SX466_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41LnpmWpD+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dyLmCTVUL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Ayurvel Syrup is a safe and gentle laxative with 100% balanced natural formula, ideal for daily use to regularize bowel movement and cleanse the entire gastrointestinal system.\nAyurvel Syrup contains natural ingredients is completely safe without any known side effects.\nDose: For adults- 10 to 15 ml two times a day preferably, after meal, individual sensitivity best suited to him/her once a person fixes the dose normally it would remain the same everyday unless change in diet or as directed by the physicians.\nFor children above six years- Half of the adult dose or use as directed by the physician.\nAyurvel Syrup has a natural flavour of saunf\nSo Keep out of reach of the children. Read the label carefully before use. Do not exceed the recommended dose.\nDrug Interactions: There are no any serious drug interactions by the consumption of Ayurvel.\nPack of 2",
"list_price": "\u20b9224\n00",
"price": "224",
"discount": "N/A",
"details": "Package Dimensions : 12.4 x 11.6 x 6.1 cm; 410 Grams\nDate First Available : 2 January 2023\nManufacturer : Ayurvel\nASIN : B0BRKGN56N\nItem model number : Ayurvel Syrup\nCountry of Origin : India\nManufacturer : Ayurvel\nItem Weight : 410 g\nNet Quantity : 150.0 millilitre\nGeneric Name : Syrub"
},
{
"url": "https://www.amazon.in/Vansaar-Gut-Relief-Baidyanath-Constipation/dp/B09BJP4LDC/ref=sr_1_36?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-36",
"title": "Vansaar Gut Relief | Relieves Constipation & Indigestion |Non Habit Forming 100% Safe Ayurvedic Laxative Powder to Cure Digestive Problems - 200g",
"main_img": "https://m.media-amazon.com/images/I/51qBNFCeVlL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/51915RDG5wL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Fi9bUEKHL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Z4vg5D7+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg"
],
"description": "EFFECTIVELY RELIEVES CONSTIPATION & INDIGESTION : This high fiber formulation helps relive constipation, hyperacidity & indigestion. Natural ingredients such as Senna leaves, Choti Harad & Ajwain help regularize bowel back to its natural rhythm.\nSUGAR-FREE & NON-HABIT FORMING FORMULATION : This 100% ayurvedic laxative improves your natural gut rhythm and provides long term relief from constipation, especially optimised for 45+.\n100% SAFE AYURVEDIC LAXATIVE POWDER : Made with all ayurvedic ingredients, it does not cause any harsh side effects such as cramping, bloating or gas. This sugar free formulation is safe and all ingredients are WHO and FDA approved.\nSTRENGTHENS THE DIGESTIVE SYSTEM: Enriched with 7 natural herbs, it helps strengthen the digestive system and maintain a healthy digestive tract.",
"list_price": "\u20b9285.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 7 x 7 x 14 cm; 200 Grams\nDate First Available : 9 August 2021\nManufacturer : Shree Baidyanath Ayurved Bhawan Pvt. Ltd.\nASIN : B09BJP4LDC\nItem model number : 2194144444161\nCountry of Origin : India\nManufacturer : Shree Baidyanath Ayurved Bhawan Pvt. Ltd., SHREE BAIDYANATH AYURVED BHAWAN PVT. LTD 1, Gupta Lane, Kolkata 700006, India. Phone: 18001021855. Email: cc@baidyanath.com.\nPacker : SHREE BAIDYANATH AYURVED BHAWAN PVT. LTD 1, Gupta Lane, Kolkata 700006, India. Phone: 18001021855. Email: cc@baidyanath.com.\nItem Weight : 200 g\nItem Dimensions LxWxH : 7 x 7 x 14 Centimeters\nNet Quantity : 200.0 gram\nGeneric Name : Ayurvedic Product"
},
{
"url": "https://www.amazon.in/AMLANT-Maharishi-Ayurveda-Antacid-Digestive/dp/B00A78SDV8/ref=sr_1_37?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-37",
"title": "Maharishi Ayurveda Amlant - For Acidity & Gas Relief | Strengthens the Digestive System |Helps in Balancing Pitta Doshas | 100% Herbal | 60 Tablets | 10 Tablets x 6 Strips x Pack of 1",
"main_img": "https://m.media-amazon.com/images/I/61a2hWD+pJL._SX450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/61fHPnvmLuL._CR204012241224_UX175.jpg",
"https://m.media-amazon.com/images/I/7134C5cEqVL._CR204012241224_UX175.jpg",
"https://m.media-amazon.com/images/I/71Kj8rjoOwL._CR204012241224_UX175.jpg",
"https://m.media-amazon.com/images/I/61298LpjAKL._CR204012241224_UX175.jpg"
],
"description": "NATURAL REMEDY FOR INDIGESTION: Maharishi Ayurveda Amlant is a synergistic combination of potent herbs Sunthi, Pippali, Haritaki, Mulethi, Nisoth, and Swet paprpati that work at a fundamental level by balancing the Pitta doshas to regulate indigestion.\nREDUCES THE RE-OCURRENCE OF ACIDITY: The blend of potent natural herbs helps balance the stomach pH levels, thereby, promoting good gut bacteria and giving long-lasting relief from gas and acidity.\nNON-HABIT FORMING, NO SIDE-EFFECTS: Backed by research, Maharishi Ayurveda Amlant is an ayurvedic supplement that is 100% non-habit-forming, herbal, 100% safe to consume, and does not contain artificial colours and preservatives\nCLINICALLY PROVEN: Maharishi Ayurveda Amlant is clinically tested at AIIMS New Delhi for effectiveness in managing acidity with no side effects\nMADE WITH SUPER INGREDIENTS: Maharishi Ayurveda Amlant is a powerhouse of natural ingredients. The potent combination of Amla, Methi, Haritaki, Mulethi, Pipli, Sunthi, Vaidang, Vibhitaki, Lawang, Sarjika, Parpati, Amlaki, and Mulethi Naga Mustaka, Mishri work together to promote happy gut health.\nDIRECTIONS FOR USE: 1-2 Tablets twice a day or as needed with water after food. For quick relief, crush the tablet in the mouth and slowly swallow with water",
"list_price": "\u20b9269.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 13 x 6 x 8 cm; 60 Grams\nDate First Available : 19 January 2018\nManufacturer : Maharishi Ayurveda Products Private Limited\nASIN : B00A78SDV8\nItem model number : MA12\nCountry of Origin : India\nManufacturer : Maharishi Ayurveda Products Private Limited, Maharishi Ayurveda Products Private Limited\nPacker : Maharishi Ayurveda Products Private Limited\nItem Weight : 60 g\nItem Dimensions LxWxH : 13 x 6 x 8 Centimeters\nNet Quantity : 60 count\nGeneric Name : Amlant"
},
{
"url": "https://www.amazon.in/Charak-Pharma-Ojus-Tablet-Digestive/dp/B01GX1Y096/ref=sr_1_38?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-38",
"title": "Charak Pharma Ojus Tablet to improve digestion (Set of 3x30)",
"main_img": "https://m.media-amazon.com/images/I/51rKrpVSk8L._SY450_PIbundle-3,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41wDM4NNb5L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41TY977zpUL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Wpzo1XODL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Oc2GCvgsL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Manufactured by: Charak Pharma Pvt Ltd\nCommon use: - as per physician's advice, useful as digestive (pachak)\nDosage: -1 tablets, 2 hours after major meal",
"list_price": "\u20b9242\n00",
"price": "242",
"discount": "-15%",
"details": "Is Discontinued By Manufacturer : No\nPackage Dimensions : 11.6 x 9.7 x 2.1 cm; 100 Grams\nDate First Available : 11 June 2016\nManufacturer : Charak Pharma Pvt Ltd\nASIN : B01GX1Y096\nItem part number : OJUS TABLETS\nCountry of Origin : India\nManufacturer : Charak Pharma Pvt Ltd\nItem Weight : 100 g\nNet Quantity : 3.00 count"
},
{
"url": "https://www.amazon.in/Bloating-Indigestion-Clinically-Ayurvedic-Medicine/dp/B09B8N5NZ7/ref=sr_1_39?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-39",
"title": "Acideem Plus Tablet for Relief in Acidity, Gas, Bloating & Indigestion I Safe & Natural, Clinically Proven, Ayurvedic Medicine",
"main_img": "https://m.media-amazon.com/images/I/71nB8PuiZJL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41To0hP3jBL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41wSOMiGD7L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Reduces chronic hyperacidity and heartburn\nActs on the symptoms of nausea and acid reflux\nAids in digestion and improves metabolism\nSafe and effective, clinically proven formulation\nAyurvedic proprietary medicine comprising of select herbs that treat hyperacidity",
"list_price": "\u20b9237\n50",
"price": "237",
"discount": "-5%",
"details": "Package Dimensions : 15.2 x 10.2 x 5.1 cm; 150 Grams\nDate First Available : 26 July 2021\nManufacturer : Healing Hands & Herbs\nASIN : B09B8N5NZ7\nItem model number : 30 TABLETS\nCountry of Origin : India\nManufacturer : Healing Hands & Herbs\nItem Weight : 150 g\nNet Quantity : 30.00 count"
},
{
"url": "https://www.amazon.in/Ayurvel-Sachet-gentle-Ayurvedic-laxative/dp/B09SL13P3Y/ref=sr_1_40?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-40",
"title": "Ayurvel Sachet Safe & gentle Ayurvedic laxative (50 x 4 gm) 200g",
"main_img": "https://m.media-amazon.com/images/I/71d2pVAzQ0L._SX450_PIbundle-2,TopRight,0,0_SX450SY406SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/71d2pVAzQ0L._SX450_PIbundle-2TopRight00_SX450SY406SH20_.jpg"
],
"description": "Safe and gentle ayurvedic laxative with 100% balanced natural formula\nIdeal for daily use to regularize bowel movement and cleans the entire gastrointestinal system.\nSuperior to isabgol with no bulk discomfort without artificial colour, flavor, and sugar; also free from preservatives\nEffective in gas, acidity, and minor gastric problems",
"list_price": "\u20b9549\n00",
"price": "549",
"discount": "N/A",
"details": "Package Dimensions : 22.3 x 8.1 x 6.3 cm; 260 Grams\nDate First Available : 1 July 2021\nManufacturer : Nirav healthcare\nASIN : B09SL13P3Y\nCountry of Origin : India\nManufacturer : Nirav healthcare\nItem Weight : 260 g\nNet Quantity : 60.0 gram"
},
{
"url": "https://www.amazon.in/Amlapitta-Ayurvedic-Capsules-Relieves-Digestion/dp/B08TMFP8F9/ref=sr_1_41?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-41",
"title": "OUJASYA Amlapitta Ayurvedic Capsules | Relieves Acidity & Hyper Acidity | Improves Digestion | Reduces Heart Burn & Nausia | Gut Health Ayurveda | Capsules - 60 Count",
"main_img": "https://m.media-amazon.com/images/I/61Sv2C8Cu+L._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41GDVYYV41L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41H6j+oiWuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41eL+ZndpNL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41sKkZDR50L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "REDUCES ACID REFLUX: OUJASYA Amlapitta Ayurvedic Capsules is a herbal blend of ayurvedic herbs that reduces acid reflux in the stomach, remedy for constipation and enhances the working of digestive enzymes.\nIMPROVES GUT HEALTH: Carefully formulated by experts, amlapitta capsules improve and cleanse gut health and helps in breaking the food efficiently. If you have digestive or bloating issues, these capsules will do wonders for you.\nPREVENTS HEARTBURN: Heartburn is caused when you consume a lot of salt and couldn't digest it properly. OUJASYA highly recommends these capsules to people who face such issues more often.\nNATURAL INGREDIENTS: Packed with richness, each of these capsules contains a precise amount of Munakka, Jyesthimadhu, Kharek Ghar, Swetkamal Ghan, Anantmul Ghan, Banslochan Ghan, Amla Ghan, Nagarmotha Ghan, Dhania Ghan, Tagar Ghan, Kababchini, Jayfal Ghan, Taj Ghan, Tejpatra Ghan, Elaichi Ghan, Valo Ghan, Nagkesar Gha, Chotti Pepper Ghan.\nPACK OF 60 CAPSULES: OUJASYA Amlapitta Capsules comes in a jar of 60 capsules. It means you can add it to your daily routine without worrying about restocking it again and again.",
"list_price": "\u20b9475.00",
"price": "",
"discount": "N/A",
"details": "Package Dimensions : 14.5 x 0.8 x 0.2 cm; 70 Grams\nDate First Available : 14 January 2021\nManufacturer : HerboLab India Pvt Ltd\nASIN : B08TMFP8F9\nItem part number : HPTK13\nCountry of Origin : India\nManufacturer : HerboLab India Pvt Ltd, Herbolab India Pvt Ltd, D-Wing, Span Industrial Complex, Vapi-Silvassa Road, Dadra, UT of DNH\nPacker : Tej Kalpa Pvt LTD\nItem Weight : 70 g\nNet Quantity : 60.00 count\nGeneric Name : Acidity & Gas Relief Capsules"
},
{
"url": "https://www.amazon.in/UTTAM-CHURAN-Ayurvedic-digestion-ingredients/dp/B09TWHQSP2/ref=sr_1_42?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-42",
"title": "UTTAM CHURAN : Ayurvedic digestion powder prepared with all natural ingredients | (220 gm) pack of 1",
"main_img": "https://m.media-amazon.com/images/I/61Bzx71QYKL._SY679_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Ingredients used (Jeera, Laung, Mag Pippal, Sonth, Desi Ajwain, Dhania, Saunf, Kalimirach, Hingu, Kala Namak, Sandha Namak, Sat Pudhina, Sat Nimbu, Nausadar, Chotti Elaichi, Anardana, Sugar).\nVegetarian.\nPack of 1 (220gm).\nGood Health.\nUsage Instruction: (1) Eat 5g Empty Stomach in morning. (2) Eat 5g after meal in evening. (3) Or as needed.\nApplicable for all.\nTasty.",
"list_price": "\u20b9167\n00",
"price": "167",
"discount": "-17%",
"details": "Package Dimensions : 13 x 13 x 8 cm; 290 Grams\nDate First Available : 31 January 2022\nManufacturer : Generic\nASIN : B09TWHQSP2\nCountry of Origin : India\nManufacturer : Generic\nItem Weight : 290 g\nNet Quantity : 220.0 gram"
},
{
"url": "https://www.amazon.in/Jiva-Ayurveda-Aam-Pachak-Pack/dp/B07GL6417Q/ref=sr_1_43?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-43",
"title": "Jiva Aam Pachak Churna - 100 g - Pack of 2 - Pure Herbs Used, 100% Ayurvedic Formulation, Churan for Healthy Digestion",
"main_img": "https://m.media-amazon.com/images/I/81HxIG5ZWcS._SY450_PIbundle-2,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/71xtjHCxL9L._SY450_.jpg",
"https://m.media-amazon.com/images/I/81PU97MhDlL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71hur9qlJLS._SY450_.jpg"
],
"description": "Jiva Aam Pachak Churna gives quick Ayurvedic relief from digestive disorders, acidity and gastric formation\nPrevents Ama formation and eliminates toxic substances formed in the body due to poor digestion\nEnriched with the richness of natural Ayurvedic herbs like Saunf, Fennel Seeds, Dhaniya, Corianderjeera, Cumin Seeds, Sonth, & Pudina\nHelps in elimination of toxic substances from the body\nWith 27 years of Ayurvedic expertise, Jiva takes Ayurveda treatment to a global level for millions across the world",
"list_price": "\u20b9306\n00",
"price": "306",
"discount": "-10%",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 130 x 50 x 78 cm; 255 Grams\nDate First Available : 17 August 2018\nManufacturer : Jiva Ayurveda Pharmacy ltd.\nASIN : B07GL6417Q\nItem model number : 326_Combo_2\nCountry of Origin : India\nManufacturer : Jiva Ayurveda Pharmacy ltd., Jiva Ayurvedic Pharmacy Limited - Delhi (MVR)\nPacker : Jiva Ayurveda\nImporter : Jiva Ayurveda\nItem Weight : 255 g\nItem Dimensions LxWxH : 130 x 50 x 78 Centimeters\nNet Quantity : 200.0 gram\nIncluded Components : Jiva Ayurveda Aam Pachak Churna\nGeneric Name : Ayurveda"
},
{
"url": "https://www.amazon.in/Purndhenu-Takarishta-Packaging-Size-500ML/dp/B08XNJ9PP4/ref=sr_1_44?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-44",
"title": "Purndhenu Takrarishta Ayurvedic Helpful in Digestion Abdominal Discomfort 500ML",
"main_img": "https://m.media-amazon.com/images/I/61IGyLT01cL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "Helpful in digestion & nausea gas, intestine bloating, abdominal discomfort irritable bowel syndrome (IBS) & improves appetite.\nNo preservative | No Plastic | No Additive | No Colour\nSafe and suitable for children, teenagers and elders.\n100% ayurvedic & ancient traditional method, it contains native ajwain, native wild gooseberry, small myrtle, non-boiled native hill turmeric, wild black pepper without extract, a2 butter, a2 buttermilk, mixed with five salts, Takrarishta is prepared in a month.\nTakrarishta is an Ayurvedic Digestive Syrup and herbal enzyme which is completely safe. This is prepared in Ayurveda by Arishta method. It helps very well on diseases of the digestive system, diseases of the intestines and liver. It increases appetite and shows its positive effect in diseases like diarrhea and irritable bowel syndrome (IBS).\nThis is also helpful in piles. Takrarishta made from buttermilk, this Arishta is very beneficial for stomach intestinal weakness, diarrhoea, undigestion, rasa, Rakta, etc., to remove the deficiency of metals. Takarishta is an Ayurvedic medicine in which very common constituents are used.",
"list_price": "\u20b9399\n00",
"price": "399",
"discount": "N/A",
"details": "Product Dimensions : 18 x 8 x 8 cm; 500 Grams\nDate First Available : 14 November 2021\nManufacturer : Purndhenu Panchgavya Pharmacy, Laxmipur Patti, Kashipur, Uttrakhand- 244713. GauSeva Care 6399508108\nASIN : B08XNJ9PP4\nCountry of Origin : India\nManufacturer : Purndhenu Panchgavya Pharmacy, Laxmipur Patti, Kashipur, Uttrakhand- 244713. GauSeva Care 6399508108\nItem Weight : 500 g\nItem Dimensions LxWxH : 18 x 8 x 8 Centimeters\nNet Quantity : 500.0 millilitre\nGeneric Name : Digestive Enzyme"
},
{
"url": "https://www.amazon.in/Lifechart-Ayurveda-Ayurvedic-solution-digestion/dp/B0BPHY96J4/ref=sr_1_45?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-45",
"title": "Stomach Care By Lifechart Ayurveda. Ayurvedic solution for digestion, Gas & Acidity. (60 capsules)",
"main_img": "https://m.media-amazon.com/images/I/61CaalnxvlL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "100% Natural | Herbal Supplement | Quantity: 60 Capsules | Item Form: Capsules\nAll the herbs used in it have been clinically researched to help build a stronger digestive system.\nIt helps in HyperAcidity and all associated conditions such as Heartburn, Nausea, Headache and Mouth Ulcers\nIt also helps in chronic and extreme Acidity, Constipation, Bloating, Flatuence and Gas\nIt helps in IBS as well\n2 capsules of this digestive supplement before meal twice a day or as directed by your healthcare provider.",
"list_price": "\u20b9399\n00",
"price": "399",
"discount": "-43%",
"details": "Date First Available : 7 December 2022\nManufacturer : Matsyaveda Herbals ltd\nASIN : B0BPHY96J4\nCountry of Origin : India\nManufacturer : Matsyaveda Herbals ltd\nNet Quantity : 60.00 count"
},
{
"url": "https://www.amazon.in/Jiwadaya-Ayurvedic-Digestion-Heartburn-Disorders/dp/B0B5DSHQY2/ref=sr_1_46?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-46",
"title": "Jiwadaya Antaj Plus Ayurvedic Herbal Acidity Syrup Natural Tonic for Gas Relief, Digestion, Heartburn, Gastric Disorders | Acidity Syrup for Digestion Acidity Gas and Bloating - 200 ml pack of 3",
"main_img": "https://m.media-amazon.com/images/I/61BB1r8AmYL._SY450_PIbundle-3,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/71GxoH-rnJL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61d+X9eiRTL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61eeuUjnz3L._SY450_.jpg",
"https://m.media-amazon.com/images/I/71aZe4tvNfL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61yrjwiZ2VL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71lbnMepyhL._SY450_.jpg"
],
"description": "HERBAL ACIDITY SYRUP :Relief from Flatulence, Gas, Indigestion, Heartburn, and Hyperacidity. Helps manage acidity and related symptoms.Helps improve natural digestive enzymes secretion.\nNATURAL INGREDIENTS: Contains Jethimadh, known for anti-viral properties, helpful in treating gastritis. Also contains Sunth Rhizome. A precious herb that help produce gastric juices.Natural herbs like Khajur,Guduchi,Shatavari,Amla,Kala Draksh,Kariyatu,Bhumi Amla,Aragwadh Magaj,Dhania,Sauvarchal Namak also in it.\nSTOMACH CARE: It acts on the entire digestive system, building digestive immunity and help reducing the recurrence of digestive problems like indigestion, gas,flatulence, acidity,bloating|and stomach heaviness.\nAYURVEDIC PRODUCT:All-Natural Healer With No Side Effects! This Product Is Appreciated For the Hygienic Formulation, Long Shelf Life, Airtight Packing, and With High Efficacy. Pure Vegetarian & Safe for Everyday Consumption.\nDOSAGE \u2013 Jiwadya ANtaj plus acidity syrup, (5ml) 1 Teaspoon 3 times a day for children above 12 years and (10ml) 2 Teaspoon 3 times a day for adults without any dilution, you have to take directly after the meals. Natural Ayurvedic formulation without any kind of side effects.",
"list_price": "\u20b9413\n00",
"price": "413",
"discount": "-5%",
"details": "Package Dimensions : 18.1 x 14.3 x 6.2 cm; 760 Grams\nDate First Available : 29 June 2022\nManufacturer : Sricure Herbs (India) Private Limited\nASIN : B0B5DSHQY2\nItem model number : H016SH03\nCountry of Origin : India\nManufacturer : Sricure Herbs (India) Private Limited, Jiwadaya Healthcare Private Limited\nPacker : Jiwadaya Healthcare Private Limited\nItem Weight : 760 g\nNet Quantity : 200.0 millilitre\nGeneric Name : Ayurvedic Herbal Acidity Syrup"
},
{
"url": "https://www.amazon.in/Panchamrit-Effervescent-Digestion-Constipation-Probiotics/dp/B0BH4QSTX6/ref=sr_1_47?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-47",
"title": "Panchamrit Gut Health Effervescent 20 Tablets (Pack of 1) | Improves Digestion, Reduces Heartburn, Acid Reflux, and Constipation | Zesty Lemon Flavoured with Goodness of Mulethi, Ginger & Probiotics",
"main_img": "https://m.media-amazon.com/images/I/71dlAa-l12L._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/61rO0mkIfmL._CR020412241224_UX175.jpg"
],
"description": "\ud835\udc04\ud835\udc27\ud835\udc2b\ud835\udc22\ud835\udc1c\ud835\udc21\ud835\udc1e\ud835\udc1d \ud835\udc16\ud835\udc22\ud835\udc2d\ud835\udc21 \ud835\udc2d\ud835\udc21\ud835\udc1e \ud835\udc06\ud835\udc28\ud835\udc28\ud835\udc1d \ud835\udc12\ud835\udc2d\ud835\udc2e\ud835\udc1f\ud835\udc1f \u2796 \ud835\udde0\ud835\ude02\ud835\uddf9\ud835\uddf2\ud835\ude01\ud835\uddf5\ud835\uddf6: A centuries old herb used in Ayurveda, with many health benefits. \ud835\uddda\ud835\uddf6\ud835\uddfb\ud835\uddf4\ud835\uddf2\ud835\uddff: A popular household ingredient with anti-inflammatory and antioxidant effects. \ud835\udde3\ud835\uddff\ud835\uddfc\ud835\uddef\ud835\uddf6\ud835\uddfc\ud835\ude01\ud835\uddf6\ud835\uddf0\ud835\ude00: Good for your gut bacteria that promote digestive health (Kids above 5yrs can also take)\n\ud835\udc07\ud835\udc28\ud835\udc30 \ud835\udc08\ud835\udc2d \ud835\udc16\ud835\udc28\ud835\udc2b\ud835\udc24\ud835\udc2c \u2796 Say hello to a happier tummy with this nourishing blend of Ayurvedic herbs and other ingredients. While its probiotics, a.k.a good bacteria, improve digestion, the prebiotics help this good bacteria grow. Safe to consume daily, our fizzy tabs help create a healthier gut, minus the risk of pesky digestive issues.\n\ud835\udc01\ud835\udc1e\ud835\udc27\ud835\udc1e\ud835\udc1f\ud835\udc22\ud835\udc2d\ud835\udc2c \ud835\udc05\ud835\udc28\ud835\udc2b \ud835\udc18\ud835\udc28\ud835\udc2e \u2796 \ud835\udde3\ud835\uddff\ud835\uddfc\ud835\ude01\ud835\uddf2\ud835\uddf0\ud835\ude01\ud835\ude00 \ud835\ude01\ud835\uddf5\ud835\uddf2 \ud835\ude00\ud835\ude01\ud835\uddfc\ud835\uddfa\ud835\uddee\ud835\uddf0\ud835\uddf5 \ud835\uddf9\ud835\uddf6\ud835\uddfb\ud835\uddf6\ud835\uddfb\ud835\uddf4: Probiotics can heal and protect the intestinal lining.\n\ud835\udde6\ud835\uddfc\ud835\uddfc\ud835\ude01\ud835\uddf5\ud835\uddf2\ud835\ude00 \ud835\ude01\ud835\uddf5\ud835\uddf2 \ud835\ude00\ud835\ude01\ud835\uddfc\ud835\uddfa\ud835\uddee\ud835\uddf0\ud835\uddf5: Anti-inflammatory ginger and bromelain, an enzyme extracted from pineapples, help soothe an upset stomach.\n\ud835\udde3\ud835\uddff\ud835\uddfc\ud835\ude03\ud835\uddf6\ud835\uddf1\ud835\uddf2\ud835\ude00 \ud835\uddff\ud835\uddf2\ud835\uddf9\ud835\uddf6\ud835\uddf2\ud835\uddf3 \ud835\uddf3\ud835\uddff\ud835\uddfc\ud835\uddfa \ud835\uddef\ud835\uddf9\ud835\uddfc\ud835\uddee\ud835\ude01\ud835\uddf6\ud835\uddfb\ud835\uddf4 \ud835\uddee\ud835\uddfb\ud835\uddf1 \ud835\uddf4\ud835\uddf2\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\uddee\ud835\uddf9 \ud835\uddf1\ud835\uddf6\ud835\ude00\ud835\uddf0\ud835\uddfc\ud835\uddfa\ud835\uddf3\ud835\uddfc\ud835\uddff\ud835\ude01: Ginger and lemon balm herb can ease any discomfort in the stomach.",
"list_price": "\u20b9379.00",
"price": "",
"discount": "N/A",
"details": "Product Dimensions : 9 x 6 x 16 cm; 90 Grams\nDate First Available : 3 October 2022\nManufacturer : Tactus Nutrascience LLP\nASIN : B0BH4QSTX6\nItem part number : PAN_EFFGUT20\nCountry of Origin : India\nManufacturer : Tactus Nutrascience LLP\nItem Weight : 90 g\nItem Dimensions LxWxH : 9 x 6 x 16 Centimeters\nNet Quantity : 20.00 count\nGeneric Name : Gut Health Effervescent Tablets"
},
{
"url": "https://www.amazon.in/Dr-Vaidyas-Herbopile-Relief-Fissures/dp/B01I6W52L0/ref=sr_1_48?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-48",
"title": "DR. VAIDYA'S new age ayurveda Piles Care-Ayurvedic Pills | Improve Digestion and Relief from Constipation | Natural Goodness of Lembodi and Rasvanti | (30 Pills Each) (Pack of 2)",
"main_img": "https://m.media-amazon.com/images/I/51qmJYyCWeL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/615n8rwUxAL._SY450_.jpg",
"https://m.media-amazon.com/images/I/61tE0tdfXhL._SY450_.jpg",
"https://m.media-amazon.com/images/I/51qmJYyCWeL._SY450_.jpg",
"https://m.media-amazon.com/images/I/81D9+COWMnL._SY450_.jpg",
"https://m.media-amazon.com/images/I/71ROqZ3Nc5L._SY450_.jpg",
"https://m.media-amazon.com/images/I/71YK6HjIpDL._SY450_.jpg"
],
"description": "A LONG-TERM AYURVEDIC SOLUTION FOR PILES: Dr. Vaidya\u2019s Piles Care is an ayurvedic medicine for piles and fissures. These unique Ayurvedic capsules for piles contain 11 natural ingredients like Haritaki, Aragwadh, Mahaneemb, Suran, Daruharidra, and Nagkesar that can help with piles and fissures.\nRELIVES PILES SYMPTOMS (PAIN, SWELLING, BLEEDING, ETC): Dr. Vaidya\u2019s Piles Care, an ayurvedic medicine contains anti-inflammatory, pain-relieving, and laxative herbs like Aragwadh, Mahaneemb, and Suran. These herbs reduce swelling and relieve pain, itching, and burning sensations caused by piles.\nHELPS REGULATE BOWEL MOMENTS: Dr. Vaidya\u2019s Piles care contains all-natural ayurvedic herbs that soften the hard stool, increase intestinal mobility, and ensure pain-free, smooth, and satisfactory bowel movements to overcome constipation. They also help to regularize bowel movements to ensure there is less strain on the bowels that can lead to the recurrence of piles. The natural herbs revive the digestive system to provide relief from indigestion, gas and bloating associated with piles.\nCONTROLS BLEEDING & HELPS IN WOUND HEALING: Antimicrobial and wound healing properties in this ayurvedic medicine for piles, helps assist the healing process & constrict the blood capillaries, helps to arrest bleeding and mucus discharge.\nRECOMMENDED DOSAGE: Take 1 to 2 capsules, with lukewarm water, twice a day after meals, or as directed by a physician. For best results use continuously for 3 months.",
"list_price": "\u20b9407\n00",
"price": "407",
"discount": "-32%",
"details": "Is Discontinued By Manufacturer : No\nProduct Dimensions : 8.8 x 4.4 x 7 cm; 60 Grams\nDate First Available : 9 July 2016\nManufacturer : Herbolab India Private Limited\nASIN : B01I6W52L0\nItem model number : DV_PILESCARE-PA\nCountry of Origin : India\nManufacturer : Herbolab India Private Limited, 65-72, D wing, span industrial complex,Vapi-Silvassa Road,Dadra 396193\nItem Weight : 60 g\nItem Dimensions LxWxH : 8.8 x 4.4 x 7 Centimeters\nNet Quantity : 1.00 count\nGeneric Name : Piles Medicine"
},
{
"url": "https://www.amazon.in/Digestive-Ayurvedic-Digestion-Supplement-Constipation/dp/B0BTP7LQS9/ref=sr_1_49?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-49",
"title": "AN Pharma Liver Tonic Plus Digestive Enzyme Syrup Enriched with 21 Ayurvedic Digestion Enzymes Supplement for Gut Health,Promote |Body Relief from Constipation Acidity & Bloating - 200ml",
"main_img": "https://m.media-amazon.com/images/I/41DlBrgroML.jpg",
"images": [
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41LnpmWpD+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg"
],
"description": "WHY IT IS NECESSARY FOR YOUR GUT HEALTH? \u2013 Simply Herbal Digestive enzymes are natural substances needed by the body to help break down and digest food. It is used when the pancreas cannot make or does not release enough digestive enzymes into the gut to digest the food.\nCONTAINS 21 NATURAL AYURVEDIC HERBS FOR IMPROVED DIEGSTION \u2013 Powerful combination of Ayurveda Supplement Enzyme mainly consists of Bhringraj Sharpunkha Rohitak Arjun Ashwagandha Chirayata Kalmegh Makoi Vavding Pittapapda Bhumi Amla Daru Haldi Punakha Tulsi Kasni Giloy Harad Amla Kutki Godanti Chitrak Mool and many more. Please check detailed ingredient list on the bottle label Images.\nONE STOP SOLUTION FOR YOUR HEALTHY HAPPY STOMACH!! \u2013 It acts on the entire digestive system, building digestive immunity and help reducing the recurrence of digestive problems like indigestion, gas, |flatulence|, |acidity|, |bloating| and stomach heaviness. it also helps in increasing appetite and boosting your digestive immunity. A trusted herbal tonic for long lasting relief.\n100% NATURAL & AYURVEDIC: 100% Ayurvedic Product, All-Natural Healer With No Side Effects! This Product Is Appreciated For the Hygienic Formulation, Long Shelf Life, Airtight Packing, and With High Efficacy. Pure Vegetarian & Safe for Everyday Consumption.",
"list_price": "\u20b9169\n00",
"price": "169",
"discount": "-15%",
"details": "Package Dimensions : 16.1 x 5.9 x 5.9 cm; 250 Grams\nDate First Available : 2 February 2023\nManufacturer : AN Pharma\nASIN : B0BTP7LQS9\nItem model number : UL22k245\nCountry of Origin : India\nManufacturer : AN Pharma\nItem Weight : 250 g\nNet Quantity : 200.0 millilitre"
},
{
"url": "https://www.amazon.in/Multani-Pachmeena-Pachmeean-Ayurvedic-Digestion/dp/B0BS9KX4T3/ref=sr_1_50?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677941328&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-50",
"title": "Multani Pachmeena Combo | Pachmeean Tonik, Pachmeena Liquid Sugar Free (No Added Sugar) & Kabz Down Granules | Ayurvedic Product For Better Digestion",
"main_img": "https://m.media-amazon.com/images/I/713tNY3lDYL._SY450_PIbundle-3,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41Wgfe1ejhL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31IKGvyyd8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dyLmCTVUL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31q89E1NghL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg"
],
"description": "\u3010Ayurvedic Digestive Laxative \u3011: Multani Pachmeena Tonik Is an Ayurvedic Laxative Beneficial for Relief from Gas, Bloating, Abdominal Discomfort & Improves Appetite.\n\u3010Improves Digestive Enzymes Functions\u3011: Multani Pachmeena Has All Ingredients That Helps to Increase Digestive Enzymes Functions. Multani Pachmeena Syrup Has Everything That Constipation Relief Medicine Should Contains.\n\u3010Multani Pachmeena Kabz Down Granules\u3011 - Multani Pachmeena Kabz Down Granules is an Ayurvedic Laxative Useful in multiple Digestive Issues with No Side Effect.\n\u3010Usefulness-Pachmeena Kabz Down Granules Is A Unique Ayurvedic Remedy Promotes Healthy Bowel Movement.It Works On Multiple Issue Related To Stomach & Digestion Like Gas,Constipation & Helps in Piles,Stomach-Ache & Flatulence,Acidity&Bloating.Also Helps To Flush Toxins From The Digestive Tract Which Indirectly Helps For Enhancing Digestion. Enriched With Ayurvedic Herbs Such As Senna,Ajwain And Chhoti Harar Etc Kabz Down Helps To Treat Constipation Effectively And Gently Without Habit Formation.",
"list_price": "\u20b9303\n00",
"price": "303",
"discount": "-10%",
"details": "Date First Available : 13 January 2023\nManufacturer : Multani Pharmaceuticals Ltd\nASIN : B0BS9KX4T3\nItem part number : MPL2016\nCountry of Origin : India\nManufacturer : Multani Pharmaceuticals Ltd\nNet Quantity : 3.00 count"
},
{
"url": "https://www.amazon.in/Amigos-Syrup-pack-of-5/dp/B08NYNZHKX/ref=sr_1_53?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-53",
"title": "Amigos Digestion Syrup (200 ml) | Improve Digestion and Relief from Constipation | 100% Natural & Ayurvedic | Anoopam Ayurveda",
"main_img": "https://m.media-amazon.com/images/I/21-jxHCJJKL._SX450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31YqVt9LS8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31eMXx5+5qL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg"
],
"description": "Amigos Syrup acts as a digestive, corrects the indigestion, Hyper acidity, Chronic Constipation\nBest for Hyper acidity\n100% Ayurvedic, No Side effects",
"list_price": "\u20b9120\n00",
"price": "120",
"discount": "-88%",
"details": "Date First Available : 21 November 2020\nManufacturer : ANOOPAM AYURVEDIC PHARMACY\nASIN : B08NYNZHKX\nItem part number : 125469003\nCountry of Origin : India\nManufacturer : ANOOPAM AYURVEDIC PHARMACY\nNet Quantity : 5.00 count"
},
{
"url": "https://www.amazon.in/Ayurvel-Syrup-Ayurvedic-Constipation-Digestion/dp/B0BRKGN56N/ref=sr_1_54?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-54",
"title": "Ayurvel Syrup 150 ml | Ayurvedic laxative Syrup Relieves Constipation, Acidity, Gas, Aids Digestion ( Pack of 2)",
"main_img": "https://m.media-amazon.com/images/I/615r0cjteOL._SX466_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31brPBMl-zL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31UEL6Trx5L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51g5qLvqcpL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41LnpmWpD+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41AS0EWUbCL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg"
],
"description": "Ayurvel Syrup is a safe and gentle laxative with 100% balanced natural formula, ideal for daily use to regularize bowel movement and cleanse the entire gastrointestinal system.\nAyurvel Syrup contains natural ingredients is completely safe without any known side effects.\nDose: For adults- 10 to 15 ml two times a day preferably, after meal, individual sensitivity best suited to him/her once a person fixes the dose normally it would remain the same everyday unless change in diet or as directed by the physicians.\nFor children above six years- Half of the adult dose or use as directed by the physician.\nAyurvel Syrup has a natural flavour of saunf\nSo Keep out of reach of the children. Read the label carefully before use. Do not exceed the recommended dose.\nDrug Interactions: There are no any serious drug interactions by the consumption of Ayurvel.\nPack of 2",
"list_price": "\u20b9224\n00",
"price": "224",
"discount": "N/A",
"details": "Package Dimensions : 12.4 x 11.6 x 6.1 cm; 410 Grams\nDate First Available : 2 January 2023\nManufacturer : Ayurvel\nASIN : B0BRKGN56N\nItem model number : Ayurvel Syrup\nCountry of Origin : India\nManufacturer : Ayurvel\nItem Weight : 410 g\nNet Quantity : 150.0 millilitre\nGeneric Name : Syrub"
},
{
"url": "https://www.amazon.in/Ayurbeat-digestion-metabolism-Diabetic-Ayurvedic/dp/B0BWX1HR9B/ref=sr_1_55?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-55",
"title": "Ayurbeat Liquid for Correct digestion & metabolism | Best for Diabetic Patients | Ayurbeat Ayurvedic Juice",
"main_img": "https://m.media-amazon.com/images/I/41sWWy7Lq7L._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/41sWWy7Lq7L._SY450_.jpg"
],
"description": "Checks over fatigue\nPurifies Blood\nPromotes wound healing\nCorrect digestion & metabolism\nTones up the efficiency & health of pancreatic tissues\nPrevent complications & corrects minor functional abnormalities of kidneys, eyes & nerves\nRegulates blood sugar level. (hypoglycemia may occur due to concomitant allopathic therapy)",
"list_price": "\u20b9330\n00",
"price": "330",
"discount": "N/A",
"details": "Product Dimensions : 5.08 x 5.08 x 20.32 cm\nDate First Available : 26 February 2023\nManufacturer : Ayurcin Biogenics Pvt. Ltd.\nASIN : B0BWX1HR9B\nItem part number : AYURBEAT01\nCountry of Origin : India\nManufacturer : Ayurcin Biogenics Pvt. Ltd.\nItem Dimensions LxWxH : 5.1 x 5.1 x 20.3 Centimeters\nNet Quantity : 300.0 millilitre"
},
{
"url": "https://www.amazon.in/Chandigarh-Ayurved-Digestion-Ayurvedic-digestion/dp/B099PL18Y6/ref=sr_1_56?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-56",
"title": "CAC Chandigarh Ayurved Centre Natural & Herbal Digestion Kit/Best Ayurvedic product for digestion",
"main_img": "https://m.media-amazon.com/images/I/61N-SCqzQnL._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41LnpmWpD+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/417M9Qhu6OL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41H6j+oiWuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31XDFKErYiL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51GXA32CA5L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31q89E1NghL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg"
],
"description": "This syrup reduce the Acidity, Detoxify the blood and also Supports the body health. I\nImproves digestion, Supports normal gastric function\nheals peptic ulcers naturally\nBurning sensation in chest region\nmaintains Blood pressure.\nControl mood swings Stomach ulcers\nHelps in digestion Acidity Gas Flatulence",
"list_price": "\u20b9824\n00",
"price": "824",
"discount": "-21%",
"details": "Product Dimensions : 12 x 12 x 12 cm\nDate First Available : 17 July 2021\nManufacturer : Chandigarh Ayurved Centre\nASIN : B099PL18Y6\nItem part number : 50-ISM\nCountry of Origin : India\nManufacturer : Chandigarh Ayurved Centre\nItem Dimensions LxWxH : 12 x 12 x 12 Centimeters\nNet Quantity : 1.00 count"
},
{
"url": "https://www.amazon.in/Ayurvedic-Digestion-Heartburn-Gastritis-Asma/dp/B09F9PM4SX/ref=sr_1_57?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-57",
"title": "Paet Dhara Pachan Ayurvedic Medicine tablets for Acidity and Gas, Digestion, Anxiety Medicine | Remedy for Heartburn, Gastritis, Acid- reflux & Gastric problems (60 Tablets x Pack of 2) by Dr. Asma",
"main_img": "https://m.media-amazon.com/images/I/711KwrJNVkL._SX450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41GDVYYV41L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41eL+ZndpNL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg"
],
"description": "N/A",
"list_price": "\u20b9199\n00",
"price": "199",
"discount": "-17%",
"details": "Date First Available : 2 September 2021\nManufacturer : Dr. Asma Herbals\nASIN : B09F9PM4SX\nCountry of Origin : India\nManufacturer : Dr. Asma Herbals\nNet Quantity : 120.00 count"
},
{
"url": "https://www.amazon.in/Oldforest-Ayurvedic-Digestion-Constipation-Digestive/dp/B0B3HWM45P/ref=sr_1_58?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-58",
"title": "Oldforest Pachan Ark | Ayurvedic Tonic for Digestion, Acidity, Constipation and Gas Relief, Helps Improve Digestive Immunity - 200 ML (Pack of 2)",
"main_img": "https://m.media-amazon.com/images/I/61RMzzgo-4L._SY450_PIbundle-2,TopRight,0,0_AA450SH20_.jpg",
"images": [
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41LnpmWpD+L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dyLmCTVUL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51GXA32CA5L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41vkci3Lc1L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg"
],
"description": "Ayurvedic Digestive PACHAN ARK : It boosts immunity, builds a healthy digestive system and gives relief from constipation.\n100% SAFE AYURVEDIC Pachan ARK : Made with all ayurvedic ingredients, it does not cause any harsh side effects such as cramping, bloating or gas. This sugar free formulation is safe and all ingredients.\nIngredients and Benefits : Karela, Amla, Hing, Elaichi, Hared, Sataveri, Improve Appetite, Indigestion, Acidity Gas & Flatulence, Heavy/Queasy Stomach Heartburn, Bloating, Belching, Constipation, Abdominal Pain, Nausea And Vomiting Aroused Due To Indigestion And Abdominal Discomfort.\nDosage & Doctor Consultation : 1 Teaspoonful Thrice a Day or as Directed by the Physician.\nStrengthens the Digestive System : Enriched with natural herbs, it helps strengthen the digestive system and maintain a healthy digestive tract.\n100% Vegetarian product",
"list_price": "\u20b9239\n00",
"price": "239",
"discount": "-15%",
"details": "Date First Available : 8 June 2022\nManufacturer : OLD FOREST\nASIN : B0B3HWM45P\nCountry of Origin : India\nManufacturer : OLD FOREST\nNet Quantity : 400.0 millilitre"
},
{
"url": "https://www.amazon.in/Amlapitta-Ayurvedic-Capsules-Relieves-Digestion/dp/B08TMFP8F9/ref=sr_1_59?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-59",
"title": "OUJASYA Amlapitta Ayurvedic Capsules | Relieves Acidity & Hyper Acidity | Improves Digestion | Reduces Heart Burn & Nausia | Gut Health Ayurveda | Capsules - 60 Count",
"main_img": "https://m.media-amazon.com/images/I/61Sv2C8Cu+L._SY450_.jpg",
"images": [
"https://m.media-amazon.com/images/I/51BrcII8pFL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41H6j+oiWuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41eL+ZndpNL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51Evq8cTTRL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31yTikF-T+L._AC_UF320320_SR320320_.jpg"
],
"description": "REDUCES ACID REFLUX: OUJASYA Amlapitta Ayurvedic Capsules is a herbal blend of ayurvedic herbs that reduces acid reflux in the stomach, remedy for constipation and enhances the working of digestive enzymes.\nIMPROVES GUT HEALTH: Carefully formulated by experts, amlapitta capsules improve and cleanse gut health and helps in breaking the food efficiently. If you have digestive or bloating issues, these capsules will do wonders for you.\nPREVENTS HEARTBURN: Heartburn is caused when you consume a lot of salt and couldn't digest it properly. OUJASYA highly recommends these capsules to people who face such issues more often.\nNATURAL INGREDIENTS: Packed with richness, each of these capsules contains a precise amount of Munakka, Jyesthimadhu, Kharek Ghar, Swetkamal Ghan, Anantmul Ghan, Banslochan Ghan, Amla Ghan, Nagarmotha Ghan, Dhania Ghan, Tagar Ghan, Kababchini, Jayfal Ghan, Taj Ghan, Tejpatra Ghan, Elaichi Ghan, Valo Ghan, Nagkesar Gha, Chotti Pepper Ghan.\nPACK OF 60 CAPSULES: OUJASYA Amlapitta Capsules comes in a jar of 60 capsules. It means you can add it to your daily routine without worrying about restocking it again and again.",
"list_price": "\u20b9475.00",
"price": "",
"discount": "N/A",
"details": "Package Dimensions : 14.5 x 0.8 x 0.2 cm; 70 Grams\nDate First Available : 14 January 2021\nManufacturer : HerboLab India Pvt Ltd\nASIN : B08TMFP8F9\nItem part number : HPTK13\nCountry of Origin : India\nManufacturer : HerboLab India Pvt Ltd, Herbolab India Pvt Ltd, D-Wing, Span Industrial Complex, Vapi-Silvassa Road, Dadra, UT of DNH\nPacker : Tej Kalpa Pvt LTD\nItem Weight : 70 g\nNet Quantity : 60.00 count\nGeneric Name : Acidity & Gas Relief Capsules"
},
{
"url": "https://www.amazon.in/UTTAM-CHURAN-Ayurvedic-digestion-ingredients/dp/B09TWHQSP2/ref=sr_1_60?crid=1ZSMOEKIH6YT4&keywords=ayurvedic+digestion&qid=1677942088&sprefix=ayurvedic+digestion%2Caps%2C557&sr=8-60",
"title": "UTTAM CHURAN : Ayurvedic digestion powder prepared with all natural ingredients | (220 gm) pack of 1",
"main_img": "https://m.media-amazon.com/images/I/61Bzx71QYKL._SY679_.jpg",
"images": [
"https://m.media-amazon.com/images/I/31OeCZeBbaL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41bOR2L1cuL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31sbBj9t2jL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41mikusZ1hL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41U5xFgwRAL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31upNbNPRkL._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/31dW1I0C25L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/51NQrOogK8L._AC_UF320320_SR320320_.jpg",
"https://m.media-amazon.com/images/I/41KJiTcoJdL._AC_UF320320_SR320320_.jpg",