From 091b8a9bbd1fbbf3f9b2fc972766cfa45251b8d2 Mon Sep 17 00:00:00 2001 From: SatwikMohan Date: Tue, 4 Jun 2024 01:27:07 +0530 Subject: [PATCH 1/3] pgp_api --- .../PGP_Encryption_Decryption_API/README.md | 71 + .../PGP_Encryption_Decryption_API/index.mjs | 9 + .../middlewares.js | 79 ++ .../package-lock.json | 1241 +++++++++++++++++ .../package.json | 6 + .../PGP_Encryption_Decryption_API/routes.mjs | 76 + 6 files changed, 1482 insertions(+) create mode 100644 New_APIs/PGP_Encryption_Decryption_API/README.md create mode 100644 New_APIs/PGP_Encryption_Decryption_API/index.mjs create mode 100644 New_APIs/PGP_Encryption_Decryption_API/middlewares.js create mode 100644 New_APIs/PGP_Encryption_Decryption_API/package-lock.json create mode 100644 New_APIs/PGP_Encryption_Decryption_API/package.json create mode 100644 New_APIs/PGP_Encryption_Decryption_API/routes.mjs diff --git a/New_APIs/PGP_Encryption_Decryption_API/README.md b/New_APIs/PGP_Encryption_Decryption_API/README.md new file mode 100644 index 0000000..d3ffd76 --- /dev/null +++ b/New_APIs/PGP_Encryption_Decryption_API/README.md @@ -0,0 +1,71 @@ +# Encryption and Decryption API using Pretty Good Privacy (PGP) algorithm + +## Installation + +To use this program, you need to have Node.js installed. Then, install the required `express` and `openpgp` libraries by running: + +```sh +npm i express +``` + +```sh +npm i openpgp +``` + +## Method to use the API + +1. Run the index.mjs file using the following command: +```sh + node index.mjs +``` + +OR + +```sh + nodemon index.mjs +``` +2. Then use the /generateKey endpoint to generate the encryption and decryption key pair. + +POST - http://localhost:80/generateKey + +The Data body : + +{ + "name":"Username", + "email":"Useremail", + "password":"A strong password of your choice" +} + +3. After creating the key pairs you can use the encryption and decryption functionalities. + +4. To use the encryption dervice use the /encrypt endpoint. + +POST - http://localhost:80/encrypt + +The Data body : + +{ + "text":"Plain text to be encrypted", + "encryptKey":"Generated Encryption Key" +} + +5. To use the encryption service use the /encrypt endpoint. + +POST - http://localhost:80/decrypt + +The Data body : + +{ + "text":"Encrypted plain text to be decrypted", + "decryptKey":"Generated Decryption Key", + "password":"The password you chose" +} + +## Usage + +The API is used in the encryption and decryption of emails. + +## Contributed By - Satwik Mohan + + + diff --git a/New_APIs/PGP_Encryption_Decryption_API/index.mjs b/New_APIs/PGP_Encryption_Decryption_API/index.mjs new file mode 100644 index 0000000..db8150e --- /dev/null +++ b/New_APIs/PGP_Encryption_Decryption_API/index.mjs @@ -0,0 +1,9 @@ +import express from 'express' +import router from './routes.mjs'; +const PORT = process.env.PORT||80; +const app = express(); +app.use(express.json()); +app.use(router); +app.listen(PORT,()=>{ + console.log("Runnong on port "+PORT); +}) \ No newline at end of file diff --git a/New_APIs/PGP_Encryption_Decryption_API/middlewares.js b/New_APIs/PGP_Encryption_Decryption_API/middlewares.js new file mode 100644 index 0000000..a78fed3 --- /dev/null +++ b/New_APIs/PGP_Encryption_Decryption_API/middlewares.js @@ -0,0 +1,79 @@ +module.exports={ + encryptBodyCheckMiddleware:function(request,response,next){ + const {body} = request; + if(!body){ + return response.status(400).send({msg:"Data body containg text field is required"}); + }else{ + const text = body.text; + const encryptKey = body.encryptKey; + if(!text){ + return response.status(400).send({msg:"text field is required"}); + }else if(!(typeof text == "string")|| text===""){ + return response.status(400).send({msg:"text is invalid type or empty"}); + } + if(!encryptKey){ + return response.status(400).send({msg:"encryptKey field is required"}); + }else if(!(typeof encryptKey == "string")|| encryptKey===""){ + return response.status(400).send({msg:"encryptKey is invalid type or empty"}); + } + } + next(); + }, + + decryptBodyCheckMiddleware:function(request,response,next){ + const {body} = request; + if(!body){ + return response.status(400).send({msg:"Data body containg text field is required"}); + }else{ + const text = body.text; + const decryptKey = body.decryptKey; + const password = body.password; + if(!text){ + return response.status(400).send({msg:"text field is required"}); + }else if(!(typeof text == "string")|| text===""){ + return response.status(400).send({msg:"text is invalid type or empty"}); + } + if(!decryptKey){ + return response.status(400).send({msg:"decryptKey field is required"}); + }else if(!(typeof decryptKey == "string")|| decryptKey===""){ + return response.status(400).send({msg:"decryptKey is invalid type or empty"}); + } + if(!password){ + return response.status(400).send({msg:"password field is required"}); + }else if(!(typeof password == "string")|| password===""){ + return response.status(400).send({msg:"password is invalid type or empty"}); + } + } + next(); + }, + + keysGenerateBodyCheckMiddleware:function(request,response,next){ + const {body} = request; + if(!body){ + return response.status(400).send({msg:"Data body containing name, email and password fields are required"}); + }else{ + const name = body.name; + const email = body.email; + const password = body.password; + if(!name){ + return response.status(400).send({msg:"name field is required"}); + } + else if(!(typeof name=="string") || (name.length==0)){ + return response.status(400).send({msg:"name field is invalid type or empty"}); + } + if(!email){ + return response.status(400).send({msg:"email field is required"}); + } + else if(!(typeof email == "string") || email===""){ + return response.status(400).send({msg:"email field is invalid type or empty"}); + } + if(!password){ + return response.status(400).send({msg:"password field is required"}); + } + else if(!(typeof password == "string") || password.length<9){ + return response.status(400).send({msg:"password is invalid type or less than 9 characters long"}); + } + } + next(); + } +} \ No newline at end of file diff --git a/New_APIs/PGP_Encryption_Decryption_API/package-lock.json b/New_APIs/PGP_Encryption_Decryption_API/package-lock.json new file mode 100644 index 0000000..c2be3b5 --- /dev/null +++ b/New_APIs/PGP_Encryption_Decryption_API/package-lock.json @@ -0,0 +1,1241 @@ +{ + "name": "PGP", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "express": "^4.19.2", + "openpgp": "^5.11.1" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/openpgp": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/openpgp/-/openpgp-5.11.1.tgz", + "integrity": "sha512-TynUBPuaSI7dN0gP+A38CjNRLxkOkkptefNanalDQ71BFAKKm+dLbksymSW5bUrB7RcAneMySL/Y+r/TbLpOnQ==", + "dependencies": { + "asn1.js": "^5.0.0" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + } + }, + "dependencies": { + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "requires": { + "get-intrinsic": "^1.2.4" + } + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "openpgp": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/openpgp/-/openpgp-5.11.1.tgz", + "integrity": "sha512-TynUBPuaSI7dN0gP+A38CjNRLxkOkkptefNanalDQ71BFAKKm+dLbksymSW5bUrB7RcAneMySL/Y+r/TbLpOnQ==", + "requires": { + "asn1.js": "^5.0.0" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + } +} diff --git a/New_APIs/PGP_Encryption_Decryption_API/package.json b/New_APIs/PGP_Encryption_Decryption_API/package.json new file mode 100644 index 0000000..edc25d9 --- /dev/null +++ b/New_APIs/PGP_Encryption_Decryption_API/package.json @@ -0,0 +1,6 @@ +{ + "dependencies": { + "express": "^4.19.2", + "openpgp": "^5.11.1" + } +} diff --git a/New_APIs/PGP_Encryption_Decryption_API/routes.mjs b/New_APIs/PGP_Encryption_Decryption_API/routes.mjs new file mode 100644 index 0000000..2e520e6 --- /dev/null +++ b/New_APIs/PGP_Encryption_Decryption_API/routes.mjs @@ -0,0 +1,76 @@ +import { Router } from 'express' +import pack from './middlewares.js' +import openpgp from 'openpgp'; +const {encryptBodyCheckMiddleware,decryptBodyCheckMiddleware,keysGenerateBodyCheckMiddleware} = pack +const router = Router(); + +router.post('/generateKey',keysGenerateBodyCheckMiddleware, async (request,response)=>{ + const {body} = request; + const name = body.name; + const email = body.email; + const password = body.password; + openpgp.generateKey({ + curve: 'ed25519', + userIDs: [{ name: name, email: email }], // User identity + passphrase: password // Protect the private key with a passphrase + }).then((keyPair)=>{ + console.log(keyPair); + return response.status(200).send({ + encryptedKey:keyPair.publicKey, + decryptedKey:keyPair.privateKey + }) + }) + .catch((err)=>{ + return response.status(400).send({msg:"Something went wrong"}) + }) +}) + +router.post('/encrypt',encryptBodyCheckMiddleware, async (request,response)=>{ + const {body} = request; + const text=body.text; + const encryptkey = body.encryptKey; + openpgp.readKey({ armoredKey: encryptkey }) + .then(async (publicKeyArmored)=>{ + const encrypted = await openpgp.encrypt({ + message: await openpgp.createMessage({ text: text }), // input as Message object + encryptionKeys: publicKeyArmored + }) + return response.status(200).send({ + encryptedText:encrypted + }) + }) + .catch((err)=>{ + return response.status(400).send({msg:"Something went wrong"}) + }) +}) + +router.post('/decrypt',decryptBodyCheckMiddleware, async (request,response)=>{ + const {body} = request; + const text=body.text; + const decryptKey = body.decryptKey; + const password = body.password; + const decryptedtxt = await decryptText(text,decryptKey,password); + return response.status(200).send({ + decryptedText:decryptedtxt + }) +}) + +async function decryptText(encryptedText, decryptkey, password) { + const privateKeyArmored = await openpgp.decryptKey({ + privateKey: await openpgp.readPrivateKey({ armoredKey: decryptkey }), + passphrase: password + }); + + const message = await openpgp.readMessage({ + armoredMessage: encryptedText // parse armored message + }); + + const { data: decrypted } = await openpgp.decrypt({ + message, + decryptionKeys: privateKeyArmored + }); + + return decrypted; +} + +export default router; \ No newline at end of file From 45ef92f7e2bbf9c94091334e6fecc28c0136d532 Mon Sep 17 00:00:00 2001 From: SatwikMohan Date: Tue, 4 Jun 2024 01:30:53 +0530 Subject: [PATCH 2/3] medicine_api --- New_APIs/A_Z_Medicine_API_For_INDIA/README.md | 115 ++ New_APIs/A_Z_Medicine_API_For_INDIA/data.mjs | 3 + New_APIs/A_Z_Medicine_API_For_INDIA/index.mjs | 9 + .../A_Z_Medicine_API_For_INDIA/middleware.js | 43 + .../package-lock.json | 1179 +++++++++++++++++ .../A_Z_Medicine_API_For_INDIA/package.json | 5 + .../A_Z_Medicine_API_For_INDIA/routes.mjs | 52 + 7 files changed, 1406 insertions(+) create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/README.md create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/data.mjs create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/index.mjs create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/middleware.js create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/package-lock.json create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/package.json create mode 100644 New_APIs/A_Z_Medicine_API_For_INDIA/routes.mjs diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/README.md b/New_APIs/A_Z_Medicine_API_For_INDIA/README.md new file mode 100644 index 0000000..074d3c7 --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/README.md @@ -0,0 +1,115 @@ +# Medicine API for India + +## Installation + +To use this program, you need to have Node.js installed. Then, install the required `express` library by running: + +```sh +npm i express +``` + +## Method to use the API + +1. Run the index.mjs file using the following command: +```sh + node index.mjs +``` + +OR + +```sh + nodemon index.mjs +``` + +2. Use the enpoints to get your desired service. + +3. Endpoint 1 - /searchByName +To get the data of the medicine with the following name + +GET - http://localhost:80/searchByName?name=(Enter Medicine Name) + +Query Parameter => name + +eg - name = Zaling Plus Tablet CR + +```bash + +{ + "result": [ + { + "id": 249154, + "name": "Zaling Plus Tablet CR", + "price": 165, + "Is_discontinued": "FALSE", + "manufacturer_name": "Mitis Biomedics Ltd", + "type": "allopathy", + "pack_size_label": "strip of 10 tablet cr", + "short_composition1": "Paroxetine (12.5mg) ", + "short_composition2": " Clonazepam (0.5mg)" + } + ] +} + +``` + +4. Endpoint 2 - /searchByManufacturer +To get the data of the medicine with the following manufacturer's name + +GET - http://localhost:80/searchByManufacturer?manufacturer=(Enter Manufacturer Name) + +Query Parameter => manufacturer + +eg - manufacturer = Mitis Biomedics Ltd + +```bash + +{ + "result": [ + { + "id": 249154, + "name": "Zaling Plus Tablet CR", + "price": 165, + "Is_discontinued": "FALSE", + "manufacturer_name": "Mitis Biomedics Ltd", + "type": "allopathy", + "pack_size_label": "strip of 10 tablet cr", + "short_composition1": "Paroxetine (12.5mg) ", + "short_composition2": " Clonazepam (0.5mg)" + } + ] +} + +``` + +5. Endpoint 3 - /AllDiscontinued +To get the data of the medicines which are discontinued + +GET - http://localhost:80/AllDiscontinued + +6. Endpoint 4 - /searchByPrice +To get the data of all the medicines with the following price + +GET - http://localhost:80/searchByPrice?price=(Enter the price) + +Query Parameter => price + +eg - price = 90 + +7. Endpoint 5 - /searchByPriceUnder +To get the data of all the medicines under the following price + +GET - http://localhost:80/searchByPriceUnder?price=(Enter the price) + +Query Parameter => price + +eg - price = 90 + +8. Endpoint 6 - /searchByPriceAbove +To get the data of all the medicines above the following price + +GET - http://localhost:80/searchByPriceAbove?price=(Enter the price) + +Query Parameter => price + +eg - price = 90 + diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/data.mjs b/New_APIs/A_Z_Medicine_API_For_INDIA/data.mjs new file mode 100644 index 0000000..e3445f8 --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/data.mjs @@ -0,0 +1,3 @@ +const data = [{"id":249154,"name":"Zaling Plus Tablet CR","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Mitis Biomedics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Paroxetine (12.5mg) ","short_composition2":" Clonazepam (0.5mg)"},{"id":249155,"name":"Zextra Capsule","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Oxaceprol (200mg)","short_composition2":""},{"id":249156,"name":"Zadro CV 250 mg/62.5 mg Tablet DT","price":60,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefadroxil (250mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":249157,"name":"Zivast L Forte 10 mg/50 mg Tablet","price":40.97,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Losartan (50mg)"},{"id":249158,"name":"Zirlon Plus Syrup","price":47.9,"Is_discontinued":"FALSE","manufacturer_name":"Waves Bio-Tech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Dextromethorphan Hydrobromide (5mg/5ml) ","short_composition2":" Phenylephrine (5mg/5ml) "},{"id":249159,"name":"Zool 10mg Tablet","price":22.11,"Is_discontinued":"FALSE","manufacturer_name":"Kivi Labs Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (10mg)","short_composition2":""},{"id":249160,"name":"Zyneu Injection","price":770,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cerebroprotein Hydrolysate (60mg)","short_composition2":""},{"id":249161,"name":"Zanocid 20mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":249162,"name":"Zifithro 200mg/250mg Tablet","price":166,"Is_discontinued":"FALSE","manufacturer_name":"Paridhi Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":249163,"name":"Zinodap M 5/1000 Tablet ER","price":135.07,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablet er","short_composition1":"Dapagliflozin (5mg) ","short_composition2":" Metformin (1000mg)"},{"id":249164,"name":"Zypine 2.5mg Tablet","price":14.33,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (2.5mg)","short_composition2":""},{"id":249165,"name":"Zycin 500mg Injection","price":15.62,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249166,"name":"Zetri T 1.125gm Injection","price":134.61,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":249167,"name":"Zelbend 200mg Suspension","price":8.12,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":249168,"name":"Zidane 20mg Capsule","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Cyril Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Duloxetine (20mg)","short_composition2":""},{"id":249169,"name":"Zanmef Forte Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Mefenamic Acid (100mg) ","short_composition2":" Paracetamol (250mg)"},{"id":249170,"name":"Zinip 100mg Tablet","price":67.76,"Is_discontinued":"FALSE","manufacturer_name":"Dycine Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clozapine (100mg)","short_composition2":""},{"id":249171,"name":"Zyrona 5mg/100ml Injection","price":2995,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (5mg/100ml)","short_composition2":""},{"id":249172,"name":"Zimonz -ODS 4 Disintegrating Strip","price":99.9,"Is_discontinued":"FALSE","manufacturer_name":"Zim Laboratories Limited","type":"allopathy","pack_size_label":"packet of 10 disintegrating strips","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":249173,"name":"Zinidol 100mg/500mg/15mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (500mg) "},{"id":249174,"name":"Zenixim 200mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zenix Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249175,"name":"Zovox 100mg Tablet","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (100mg)","short_composition2":""},{"id":249176,"name":"Zulip G Forte 4mg/1000mg Tablet","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Corazon Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (4mg) ","short_composition2":" Metformin (1000mg)"},{"id":249177,"name":"Zolain 600mg Tablet","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Mclain Laboratories","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":249178,"name":"Zecil 250mg Tablet","price":216,"Is_discontinued":"FALSE","manufacturer_name":"Zen Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":249179,"name":"Zencet 5mg Syrup","price":34.34,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Cetirizine (5mg)","short_composition2":""},{"id":249180,"name":"Zefix DS 50mg Syrup","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Meditek India","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":249181,"name":"Zole-O-Plus Capsule","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Raffles Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":249182,"name":"Zudef 6mg Tablet","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249183,"name":"Zovair 160mcg/12mcg Inhaler","price":624,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"packet of 1 Inhaler","short_composition1":"Ciclesonide (160mcg) ","short_composition2":" Formoterol (12mcg)"},{"id":249184,"name":"Zstop 200mg Tablet","price":32.78,"Is_discontinued":"FALSE","manufacturer_name":"Maneesh Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Nitazoxanide (200mg)","short_composition2":""},{"id":249185,"name":"Zophost 10mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alendronic Acid (10mg)","short_composition2":""},{"id":249186,"name":"Zifilac Tablet DT","price":66.38,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249187,"name":"Zoldac 0.25mg TABLET","price":12.65,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":249188,"name":"Z Flam Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Vivid Labs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Magnesium Trisilicate (100mg) "},{"id":249189,"name":"Zocam 0.5mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":249190,"name":"Zartel 40 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg)","short_composition2":""},{"id":249191,"name":"Zaquin 200 Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Zeelab Pharmacy Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydroxychloroquine (200mg)","short_composition2":""},{"id":249192,"name":"Zubidox 10mg Injection","price":200,"Is_discontinued":"FALSE","manufacturer_name":"RPG Life Sciences Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Doxorubicin (Plain) (10mg)","short_composition2":""},{"id":249193,"name":"Zotan 50mg Tablet","price":45.2,"Is_discontinued":"FALSE","manufacturer_name":"Zoticus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg)","short_composition2":""},{"id":249194,"name":"Zumin 100mg Tablet","price":63,"Is_discontinued":"TRUE","manufacturer_name":"Raptakos Brett & Co Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Mebendazole (100mg)","short_composition2":""},{"id":249195,"name":"Zator 10 Tablet","price":33.95,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (10mg)","short_composition2":""},{"id":249196,"name":"Zleep 5mg Tablet","price":41.77,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":249197,"name":"Zaquff Expectorant Strawberry","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zaq Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Expectorant","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249198,"name":"Zaceclo-SP Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Ambrosia Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249199,"name":"Zifcy 500mg/125mg Tablet","price":109.5,"Is_discontinued":"FALSE","manufacturer_name":"Axenic Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249200,"name":"Zenor 5mg Tablet","price":49.8,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norethisterone (5mg)","short_composition2":""},{"id":249201,"name":"Zylocyp Syrup","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Rhophic Health Care","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg/5ml) ","short_composition2":" Tricholine Citrate (275mg/5ml) "},{"id":249202,"name":"Zeromac-P Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Gilpod Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249203,"name":"Zoxicef 200mg Tablet","price":118.4,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249204,"name":"Zerokem 100mg/325mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Prekem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249205,"name":"Zerith 500mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Merganzer Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249206,"name":"Zytax 20mg Injection","price":2890,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Docetaxel (20mg)","short_composition2":""},{"id":249207,"name":"Zocare 200mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249208,"name":"ZOLNITE 2 MG TABLET","price":64,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Eszopiclone (2mg)","short_composition2":""},{"id":249209,"name":"Zotaderm Cream","price":27.62,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"tube of 5 gm Cream","short_composition1":"Betamethasone (NA) ","short_composition2":" Clotrimazole (NA) "},{"id":249210,"name":"Zencast Tbr Tablet","price":299,"Is_discontinued":"FALSE","manufacturer_name":"Bio-Zenesis Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":249211,"name":"Zorem-HT 2.5 Tablet","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (2.5mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":249212,"name":"Zoxy 8mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg)","short_composition2":""},{"id":249213,"name":"Zaqcef 200 Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zaq Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249214,"name":"Zed 25mg Tablet","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Esteem Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Trazodone (25mg)","short_composition2":""},{"id":249215,"name":"Zetivas 20mg/10mg Tablet","price":141.5,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg) ","short_composition2":" Ezetimibe (10mg)"},{"id":249216,"name":"Zolevox 500mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":249217,"name":"Zeecent 500 Tablet","price":71.7,"Is_discontinued":"FALSE","manufacturer_name":"SAG Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249218,"name":"ZYNTAP 100 MG TABLET","price":199,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tapentadol (100mg)","short_composition2":""},{"id":249219,"name":"Zorotene Forte Gel","price":112.68,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"tube of 15 gm Gel","short_composition1":"Tazarotene (0.1% w/w)","short_composition2":""},{"id":249220,"name":"Zucox Plus 450 mg/300 mg Tablet","price":62.41,"Is_discontinued":"FALSE","manufacturer_name":"Glaxo SmithKline Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rifampicin (450mg) ","short_composition2":" Isoniazid (300mg)"},{"id":249221,"name":"Zepodox 200mg Tablet","price":117.6,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249222,"name":"Zstop 500mg Tablet","price":42.72,"Is_discontinued":"FALSE","manufacturer_name":"Maneesh Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Nitazoxanide (500mg)","short_composition2":""},{"id":249223,"name":"Zawyu 6mg Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Wyupharama","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249224,"name":"Zoffy SP 50mg/325mg/10mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249225,"name":"Zolisar 4mg Injection","price":2700,"Is_discontinued":"FALSE","manufacturer_name":"Sarabhai Chemicals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":249226,"name":"Zerofev 200mg Capsule","price":350,"Is_discontinued":"FALSE","manufacturer_name":"Forman Medics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":249227,"name":"Zitho 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Mediday Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249228,"name":"Zendrot-M Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":249229,"name":"Zerolax Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Leo Star Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sodium Picosulfate (10mg)","short_composition2":""},{"id":249230,"name":"Zocelon 500 Injection","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Celon Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249231,"name":"Zengalin Capsule","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zenvita Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":249232,"name":"Zomator 3000mcg Injection","price":964.27,"Is_discontinued":"FALSE","manufacturer_name":"Biocon","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Somatostatin (3000mcg)","short_composition2":""},{"id":249233,"name":"Zirro 200mg/5ml Suspension","price":88.63,"Is_discontinued":"FALSE","manufacturer_name":"Eisen Pharmaceutical Co Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":249234,"name":"Zetaglim M 3mg/500mg Tablet SR","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (3mg) ","short_composition2":" Metformin (500mg)"},{"id":249235,"name":"Zomax 125mg Dry Syrup","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (125mg/5ml)","short_composition2":""},{"id":249236,"name":"Zepsan 1mg Tablet MD","price":36.45,"Is_discontinued":"FALSE","manufacturer_name":"Sanity Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":249237,"name":"Zyzine 25mg Tablet","price":42.4,"Is_discontinued":"FALSE","manufacturer_name":"Medimind Drugs and Chemicals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydroxyzine (25mg)","short_composition2":""},{"id":249238,"name":"Zyfix 100 LB Tablet DT Strawberry","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Univentis Medicare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249239,"name":"Zigat D Eye Drop","price":34.5,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"bottle of 5 ml Eye Drop","short_composition1":"Dexamethasone (0.1% w/v) ","short_composition2":" Gatifloxacin (0.3% w/v)"},{"id":249240,"name":"Zamadol P 325 mg/37.5 mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol/Acetaminophen (325mg) ","short_composition2":" Tramadol (37.5mg)"},{"id":249241,"name":"Zylix-P Nasal Drops","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"bottle of 10 ml Nasal Drops","short_composition1":"Xylometazoline (0.05% w/v)","short_composition2":""},{"id":249242,"name":"Zypnac SP 100mg/325mg/15mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249243,"name":"Zynoff OZ 200mg/500mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Nri Vision Care India Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":249244,"name":"Zoffy S 50mg/10mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":249245,"name":"Zodnic Infusion","price":4575.75,"Is_discontinued":"FALSE","manufacturer_name":"H & I Critical Care","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Zoledronic acid (5mg/100ml)","short_composition2":""},{"id":249246,"name":"Zefmic TZ 1000mg/125mg Injection","price":429,"Is_discontinued":"FALSE","manufacturer_name":"Akesiss Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":249247,"name":"Zolford 10 Tablet","price":94,"Is_discontinued":"FALSE","manufacturer_name":"Oxpro Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249248,"name":"Zogodol-P Tablet","price":59.6,"Is_discontinued":"FALSE","manufacturer_name":"Zomask Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249249,"name":"Zenfate Oral Suspension Orange Sugar Free","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Zencorp Pharmaceutical Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Suspension","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":249250,"name":"Zesper 20mg Tablet","price":44.72,"Is_discontinued":"FALSE","manufacturer_name":"Thrift Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (20mg)","short_composition2":""},{"id":249251,"name":"Zyonate Plus 30mg/40mg Injection","price":1800,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Sodium Hyaluronate (30mg) ","short_composition2":" Chondroitin (40mg)"},{"id":249252,"name":"Zoflut Lotion","price":59.16,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Lotion","short_composition1":"Fluticasone Propionate (0.05% w/w)","short_composition2":""},{"id":249253,"name":"Zynoff D Eye Drop","price":9.06,"Is_discontinued":"FALSE","manufacturer_name":"Nri Vision Care India Limited","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Ofloxacin (0.3% w/v) ","short_composition2":" Dexamethasone (0.1% w/v)"},{"id":249254,"name":"Zedase 5mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Kindcare Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (5mg)","short_composition2":""},{"id":249255,"name":"Zenoflam SP 100mg/325mg/15mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Synthozenesis Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249256,"name":"Zemidep 50mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Imipramine (50mg)","short_composition2":""},{"id":249257,"name":"Zenol-A 0.5mg/20mg Tablet","price":35.8,"Is_discontinued":"FALSE","manufacturer_name":"Vision Biolife Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.5mg) ","short_composition2":" Propranolol (20mg)"},{"id":249258,"name":"Zelofenac MR 100mg/325mg/250mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249259,"name":"Zrepag MF 2mg/500mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Repaglinide (2mg) ","short_composition2":" Metformin (500mg)"},{"id":249260,"name":"Zyrop 3000IU Injection","price":1396,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 6 ml Powder for Injection","short_composition1":"Recombinant Human Erythropoietin Alfa (3000IU)","short_composition2":""},{"id":249261,"name":"Zonuron Plus 500mcg Injection","price":44.85,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (500mcg)","short_composition2":""},{"id":249262,"name":"ZO T 200 mg/600 mg Tablet","price":28.56,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":249263,"name":"Zincobal 500mcg Injection","price":19.6,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Methylcobalamin (500mcg)","short_composition2":""},{"id":249264,"name":"Zenmox Clav 500mg/125mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zencus Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249265,"name":"Zimix 100mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":249266,"name":"Zenitoin 10 Soft Gelatin Capsule","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zhenpi Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Isotretinoin (10mg)","short_composition2":""},{"id":249267,"name":"Zedoxil Suspension","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Acron Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Cefadroxil (250mg)","short_composition2":""},{"id":249268,"name":"Zetaglim MV 1mg Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg) "},{"id":249269,"name":"Zootex LM Syrup","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Meditouch Wellness","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":249270,"name":"Zidkof D Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":249271,"name":"Zolford 10mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Oxford Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249272,"name":"Ziltax CT 40/12.5 Tablet","price":195,"Is_discontinued":"TRUE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Azilsartan medoxomil (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":249273,"name":"Zedcare Syrup","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Medico Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":249274,"name":"Zomnia 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Molekule India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flurazepam (10mg)","short_composition2":""},{"id":249275,"name":"Zoran 25mg Injection","price":3.18,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ranitidine (25mg)","short_composition2":""},{"id":249276,"name":"Zift 250mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Medico Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249277,"name":"Zencer Tablet","price":30.9,"Is_discontinued":"FALSE","manufacturer_name":"Orion Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (15mg) ","short_composition2":" Omeprazole (10mg)"},{"id":249278,"name":"Zopam 0.5mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Densa Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":249279,"name":"Zubidol P 100mg/325mg Tablet","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Axnture Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249280,"name":"Zeodic-D Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":249281,"name":"Zecet 5 Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249282,"name":"Zipan-DSR Capsule","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Surelife Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249283,"name":"Zenlee 400mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Uni-Pex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":249284,"name":"Zyfix AZ 200mg/250mg Tablet","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":249285,"name":"Zenipod CV 200mg/125mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249286,"name":"Zescof DX Syrup","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":249287,"name":"Zelusco 100mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Amazone Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acotiamide (100mg)","short_composition2":""},{"id":249288,"name":"Zerochol 10 Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Bsure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (10mg)","short_composition2":""},{"id":249289,"name":"Zyflace 0.1% Eye Drop","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Fluorometholone (0.1% w/v)","short_composition2":""},{"id":249290,"name":"Zypyra 750mg Tablet","price":23.81,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (750mg)","short_composition2":""},{"id":249291,"name":"Zerine 50mg Capsule","price":75.77,"Is_discontinued":"FALSE","manufacturer_name":"Sanofi India Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Diacerein (50mg)","short_composition2":""},{"id":249292,"name":"Zencef 500mg Capsule","price":189.3,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Cefalexin (500mg)","short_composition2":""},{"id":249293,"name":"Zimnic 50mg/5ml Dry Syrup","price":43.85,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":249294,"name":"Zortan AM 50 mg/5 mg Tablet","price":79.32,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Amlodipine (5mg)"},{"id":249295,"name":"Ziddi 1000 mg/125 mg Injection","price":221.12,"Is_discontinued":"FALSE","manufacturer_name":"Themis Medicare Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":249296,"name":"Zof 200mg Tablet","price":110.47,"Is_discontinued":"FALSE","manufacturer_name":"Estragen Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249297,"name":"Zeroxyl CX 250 mg/50 mg/325 mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Medoz Pharmaceutical Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":249298,"name":"Zac 250mg Tablet","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Oscar Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acetazolamide (250mg)","short_composition2":""},{"id":249299,"name":"Zetaglim M Forte 1mg/1000mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (1000mg)"},{"id":249300,"name":"Zofen 50mg/125mg Syrup","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":249301,"name":"Zitrobid 500mg Tablet","price":62.55,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249302,"name":"Zentek 80mg Injection","price":7,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Gentamicin (80mg)","short_composition2":""},{"id":249303,"name":"Zina 50mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Elikem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Thioridazine (50mg)","short_composition2":""},{"id":249304,"name":"Zodon 2mg Tablet","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 18 tablets","short_composition1":"Risperidone (2mg)","short_composition2":""},{"id":249305,"name":"Zolpider 10mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249306,"name":"Zemocef 500mg Tablet","price":510,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249307,"name":"Zifcef 200 LB Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249308,"name":"Zucraford O Oral Suspension","price":219,"Is_discontinued":"FALSE","manufacturer_name":"Gutford Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Suspension","short_composition1":"Sucralfate (500mg) ","short_composition2":" Oxetacaine (10mg)"},{"id":249309,"name":"Zydopenem 1000mg Injection","price":2737.5,"Is_discontinued":"FALSE","manufacturer_name":"German Remedies","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":249310,"name":"ZATHRIN 1000 MG TABLET","price":36.25,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Azithromycin (1000mg)","short_composition2":""},{"id":249311,"name":"Zolnyt 5mg Tablet","price":50.02,"Is_discontinued":"FALSE","manufacturer_name":"Aurum Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":249312,"name":"Zovi 10% Solution","price":101,"Is_discontinued":"FALSE","manufacturer_name":"Notus Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Solution","short_composition1":"Povidone Iodine (10%)","short_composition2":""},{"id":249313,"name":"Zeneril 25mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Reliance Formulation Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Thioridazine (25mg)","short_composition2":""},{"id":249314,"name":"Zanofiram 250mg Tablet","price":20.5,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Disulfiram (250mg)","short_composition2":""},{"id":249315,"name":"Zezone-S 1000mg/500mg Injection","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249316,"name":"Zicartel H Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Carmentis Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":249317,"name":"Zyluli Lotion","price":407,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"bottle of 20 ml Lotion","short_composition1":"Luliconazole (1% w/v)","short_composition2":""},{"id":249318,"name":"Zecort 1mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Deflazacort (1mg)","short_composition2":""},{"id":249319,"name":"Zofix 50mg Tablet DT","price":45.1,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":249320,"name":"Zatrocet M 5mg/10mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249321,"name":"Zenflamac 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Helplab Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249322,"name":"Zelox 200 Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249323,"name":"Zingpride 200mg Tablet","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Ishjas Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amisulpride (200mg)","short_composition2":""},{"id":249324,"name":"Zabixin TZ 400mg/600mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Truecure Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg) ","short_composition2":" Tinidazole (600mg)"},{"id":249325,"name":"Zolp 10mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Ivy Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249326,"name":"Zylocef CV 200 mg/125 mg Tablet","price":251.25,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249327,"name":"Zobet Tablet","price":4.41,"Is_discontinued":"FALSE","manufacturer_name":"Rhombus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betamethasone (NA)","short_composition2":""},{"id":249328,"name":"Zebol 50mg Injection","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":249329,"name":"Zeritin 10mg Tablet","price":3.12,"Is_discontinued":"FALSE","manufacturer_name":"Shreya Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":249330,"name":"Zevo 500mg Tablet","price":34.25,"Is_discontinued":"FALSE","manufacturer_name":"Indi Pharma","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":249331,"name":"Zovistar Cream","price":40.38,"Is_discontinued":"FALSE","manufacturer_name":"Monichem Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"tube of 5 gm Cream","short_composition1":"Acyclovir (5% w/w)","short_composition2":""},{"id":249332,"name":"Zycold-P Syrup","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml) "},{"id":249333,"name":"Zemidep 25mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Imipramine (25mg)","short_composition2":""},{"id":249334,"name":"Zisan 50mg Syrup","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (50mg)","short_composition2":""},{"id":249335,"name":"Zator 40mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (40mg)","short_composition2":""},{"id":249336,"name":"Zoltar 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Somnogen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249337,"name":"Zodol P 37.5mg/325mg Tablet","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Kiama Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249338,"name":"Zecort 24mg Tablet","price":171.05,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Deflazacort (24mg)","short_composition2":""},{"id":249339,"name":"Zinagon M 5mg/10mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Semiotic Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249340,"name":"Zeoflox 500 Tablet","price":82.5,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":249341,"name":"Zentoclav 500mg/125mg Tablet","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Rely on Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249342,"name":"Zonpaar D 30mg/40mg Capsule SR","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Paarzon Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249343,"name":"Zohri 250mg Tablet","price":68.4,"Is_discontinued":"FALSE","manufacturer_name":"Meridian Medicare Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249344,"name":"Zylocef O 200 mg/200 mg Tablet","price":164.5,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249345,"name":"Zoxil 250mg Tablet","price":22.63,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefadroxil (250mg)","short_composition2":""},{"id":249346,"name":"Zigarab 20mg Tablet","price":52.93,"Is_discontinued":"FALSE","manufacturer_name":"Tulip Lab Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249347,"name":"Zincopan 40mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249348,"name":"Zepen D 10mg/40mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Cadex Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249349,"name":"Zypred 125mg Injection","price":345,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylprednisolone (125mg)","short_composition2":""},{"id":249350,"name":"Zezal 5 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Ernst Pharmacia","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249351,"name":"Zimetile 250mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Excare Laboratories","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":249352,"name":"Zitaz 500mg Tablet","price":56.1,"Is_discontinued":"FALSE","manufacturer_name":"SA Remedies","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249353,"name":"Zebose 0.3mg Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Azilliane Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Voglibose (0.3mg)","short_composition2":""},{"id":249354,"name":"Zoly Plus 0.5mg/5mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Grownbury Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.5mg) ","short_composition2":" Escitalopram Oxalate (5mg)"},{"id":249355,"name":"Z Stat 5mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Aristo Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (5mg)","short_composition2":""},{"id":249356,"name":"Zomatril 30mg Tablet DT","price":70,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Racecadotril (30mg)","short_composition2":""},{"id":249357,"name":"Z Pod 100mg Dry Syrup","price":132,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg/5ml)","short_composition2":""},{"id":249358,"name":"Zurox 500mg Tablet","price":495,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249359,"name":"Zenbro 100mg Capsule","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Baxton Pharmacia","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":249360,"name":"Zorkuf D Syrup","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Maksun Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Dextromethorphan Hydrobromide (10mg) "},{"id":249361,"name":"Zasix 6mg Tablet","price":93.3,"Is_discontinued":"FALSE","manufacturer_name":"Pharmacon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249362,"name":"Zebox 40mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (40mg)","short_composition2":""},{"id":249363,"name":"Zefrox-CV 325 Tablet","price":244,"Is_discontinued":"FALSE","manufacturer_name":"Allegiant Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249364,"name":"Zerochol 20 Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Bsure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":249365,"name":"Zrepag 0.5mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Repaglinide (0.5mg)","short_composition2":""},{"id":249366,"name":"Z-TEL-H 40MG/12.5MG TABLET","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Corazon Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":249367,"name":"Zocitab 500mg Tablet","price":1542.4,"Is_discontinued":"FALSE","manufacturer_name":"Fresenius Kabi India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Capecitabine (500mg)","short_composition2":""},{"id":249368,"name":"Zombistin 1MIU Injection","price":916,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (1Million IU)","short_composition2":""},{"id":249369,"name":"Zylo Injection","price":22.5,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"vial of 30 ml Injection","short_composition1":"Lidocaine (NA)","short_composition2":""},{"id":249370,"name":"Zamic 500mg Injection","price":1190.47,"Is_discontinued":"TRUE","manufacturer_name":"Indoco Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (500mg)","short_composition2":""},{"id":249371,"name":"Zomnia 5mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Molekule India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flurazepam (5mg)","short_composition2":""},{"id":249372,"name":"Zaltokin 80mg Tablet","price":48.36,"Is_discontinued":"TRUE","manufacturer_name":"Ipca Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zaltoprofen (80mg)","short_composition2":""},{"id":249373,"name":"Zosecta 20mg Injection","price":140.65,"Is_discontinued":"TRUE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Pantoprazole (20mg)","short_composition2":""},{"id":249374,"name":"Zetalo 10mg Tablet","price":64.76,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citalopram (10mg)","short_composition2":""},{"id":249375,"name":"Zimycin 500mg Tablet","price":259.5,"Is_discontinued":"FALSE","manufacturer_name":"Saga Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249376,"name":"Zodim 1000mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Aztec Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":249377,"name":"Zobit Plus 75mg/20mg Capsule SR","price":167.45,"Is_discontinued":"FALSE","manufacturer_name":"Ambit Bio Medix","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249378,"name":"Zepatric P 25mg/0.5mg Tablet","price":146.5,"Is_discontinued":"FALSE","manufacturer_name":"Cubit Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paroxetine (25mg) ","short_composition2":" Clonazepam (0.5mg)"},{"id":249379,"name":"Zixime-AZ+ Tablet","price":242,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":249380,"name":"Zenfox 500 Tablet","price":134,"Is_discontinued":"FALSE","manufacturer_name":"Zenotis Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":249381,"name":"Zaling 37.5mg Tablet","price":255,"Is_discontinued":"FALSE","manufacturer_name":"Mitis Biomedics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paroxetine (37.5mg)","short_composition2":""},{"id":249382,"name":"Zaqmox CV 500mg/125mg Tablet","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Zaq Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249383,"name":"Zenmox LB Capsule","price":37.18,"Is_discontinued":"FALSE","manufacturer_name":"Kaizen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249384,"name":"Zotaxime 50mg Syrup","price":43.92,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":249385,"name":"ZONADEP 50 MG TABLET","price":59,"Is_discontinued":"TRUE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clomipramine (50mg)","short_composition2":""},{"id":249386,"name":"Zacy 100mg Tablet","price":18.56,"Is_discontinued":"FALSE","manufacturer_name":"Comed Chemicals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg)","short_composition2":""},{"id":249387,"name":"Zall 5mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249388,"name":"Zyrfex 180mg Tablet","price":144,"Is_discontinued":"FALSE","manufacturer_name":"Mancare Labs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fexofenadine (180mg)","short_composition2":""},{"id":249389,"name":"Zole P 40mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Pfiscar India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249390,"name":"Zalex 5mg Tablet MD","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Intigus Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (5mg)","short_composition2":""},{"id":249391,"name":"Zimspor CV 200mg/125mg Tablet","price":285,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249392,"name":"Zimfe P Syrup","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":249393,"name":"Zilotin-M Syrup","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Vintek Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":249394,"name":"Zinase Forte 10mg Tablet","price":54.28,"Is_discontinued":"FALSE","manufacturer_name":"Rapross Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":249395,"name":"Zidimont Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Apoorva Drugs & Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249396,"name":"Zirazine-D Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (15mg) ","short_composition2":" Cinnarizine (20mg)"},{"id":249397,"name":"Zyltan 50mg Tablet","price":48.13,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg)","short_composition2":""},{"id":249398,"name":"Zeed 6mg Tablet","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249399,"name":"Zelorn 8mg Tablet","price":58.8,"Is_discontinued":"FALSE","manufacturer_name":"Anthus Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg)","short_composition2":""},{"id":249400,"name":"Zephrol Syrup","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Guaifenesin (50mg) ","short_composition2":" Terbutaline (1.25mg) "},{"id":249401,"name":"Zopizone 100mg Tablet","price":50.33,"Is_discontinued":"FALSE","manufacturer_name":"KC Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clozapine (100mg)","short_composition2":""},{"id":249402,"name":"Zaldicet 37.5mg/375mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Osseous Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (375mg)"},{"id":249403,"name":"Zemocef-C 625 Tablet","price":610,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249404,"name":"Zoxymox 250 DT Tablet","price":26.5,"Is_discontinued":"FALSE","manufacturer_name":"Akme Biotec","type":"allopathy","pack_size_label":"strip of 20 tablet dt","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":249405,"name":"Zecyte 500mg Tablet","price":29500,"Is_discontinued":"TRUE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 60 tablets","short_composition1":"Abiraterone Acetate (500mg)","short_composition2":""},{"id":249406,"name":"Zenotin Suspension","price":37.4,"Is_discontinued":"FALSE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":249407,"name":"Zedri 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zedip Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefadroxil (500mg)","short_composition2":""},{"id":249408,"name":"Zicartel Trio Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Carmentis Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Cilnidipine (10mg) "},{"id":249409,"name":"Zenworm 400mg Tablet","price":8.1,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":249410,"name":"Zyro 500mg Tablet","price":59.58,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249411,"name":"Zotrim SS 400mg/80mg Tablet","price":7.8,"Is_discontinued":"FALSE","manufacturer_name":"Emil Pharmaceuticals Industries Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sulfamethoxazole (400mg) ","short_composition2":" Trimethoprim (80mg)"},{"id":249412,"name":"Zimix-Olx Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":249413,"name":"Zacra 5mg Tablet","price":37.5,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249414,"name":"Zorkuf A Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Maksun Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249415,"name":"Zerotop SP 100mg/325mg/15mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Kremoint Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249416,"name":"Zeelone 16 Tablet","price":99.5,"Is_discontinued":"FALSE","manufacturer_name":"Synex Global Services Llp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":249417,"name":"Zuraxim 500mg Tablet","price":300,"Is_discontinued":"FALSE","manufacturer_name":"Aishwarya Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249418,"name":"zolpride D 30mg/20mg Capsule SR","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Tripada Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249419,"name":"Zerocuf-AM Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Denmarc Remedies","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249420,"name":"Zycad Capsule","price":10.92,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 2 capsules","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Aspirin (75mg) "},{"id":249421,"name":"Zopicalm 7.5mg Tablet","price":54.5,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zopiclone (7.5mg)","short_composition2":""},{"id":249422,"name":"Zm 250mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Omenta Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249423,"name":"Zomart LS 75mg/20mg Tablet SR","price":150,"Is_discontinued":"FALSE","manufacturer_name":"10 Drug Mart","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249424,"name":"Zefinac MR 100mg/325mg/250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249425,"name":"Zairox-CV Tablet","price":820,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249426,"name":"Zetax O 200mg Tablet","price":127.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249427,"name":"Zeonin 20 Softgel Capsule","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Isotretinoin (20mg)","short_composition2":""},{"id":249428,"name":"Zolovion 20mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Synovion Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249429,"name":"Zidoxe 200mg Tablet DT","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249430,"name":"Zero Pain MR 250mg/50mg/325mg Tablet","price":52.5,"Is_discontinued":"FALSE","manufacturer_name":"Remandish Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":249431,"name":"Zitholide 500 LB Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Disecure Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg) ","short_composition2":" Lactic acid bacillus (60Million spores)"},{"id":249432,"name":"Zole-R 20 Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Raffles Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249433,"name":"Zoryl 2mg Tablet","price":96.1,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg)","short_composition2":""},{"id":249434,"name":"Zolsan 10 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Shatayushi Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249435,"name":"Zogodol-SP Tablet","price":110.5,"Is_discontinued":"FALSE","manufacturer_name":"Zomask Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249436,"name":"Zofedine 120mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Aps Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fexofenadine (120mg)","short_composition2":""},{"id":249437,"name":"Zucrom Tablet","price":120,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chromium (400mcg)","short_composition2":""},{"id":249438,"name":"Zethro 250mg Tablet","price":59.8,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249439,"name":"Zecoryl Plus Syrup","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (125mg) "},{"id":249440,"name":"Zerobor Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Sia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg) "},{"id":249441,"name":"Zys 10mg Tablet","price":50.75,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":249442,"name":"Zextil 100mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":249443,"name":"Zytol 100mg Tablet DT","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Novaduo Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":249444,"name":"Zardpime S Injection","price":325,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249445,"name":"Zerotek Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Medisurf Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249446,"name":"Zoyclo-S Ointment","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"tube of 20 gm Ointment","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Salicylic Acid (3% w/w)"},{"id":249447,"name":"Zonam 500mg Injection","price":324.5,"Is_discontinued":"FALSE","manufacturer_name":"United Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Aztreonam (500mg)","short_composition2":""},{"id":249448,"name":"Zenicyp Syrup","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zencus Pharma","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg) ","short_composition2":" Tricholine Citrate (275mg)"},{"id":249449,"name":"Zenibast 20 Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zhenpi Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ebastine (20mg)","short_composition2":""},{"id":249450,"name":"Zitopod 200 DT Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249451,"name":"Zib-Oflo Tablet","price":125.45,"Is_discontinued":"FALSE","manufacturer_name":"Makers Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249452,"name":"Zeronerve P 1500mcg/75mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Ipc Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":249453,"name":"Zelvida M 500mg/50mg Tablet","price":265,"Is_discontinued":"FALSE","manufacturer_name":"Bionext Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Metformin (500mg) ","short_composition2":" Vildagliptin (50mg)"},{"id":249454,"name":"Zyscab Active 0.1% Lotion","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Healthcare Limited","type":"allopathy","pack_size_label":"bottle of 100 ml Lotion","short_composition1":"Cetrimide (0.1% w/v)","short_composition2":""},{"id":249455,"name":"Zyrof 4K Injection","price":1329.87,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rofecoxib (4k)","short_composition2":""},{"id":249456,"name":"Zirtin 10mg Tablet","price":25.7,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":249457,"name":"Zomont AL 5mg/10mg Tablet","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Panacea Biotec Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249458,"name":"Zipcold Oral Drops","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Lifekyor Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Drops","short_composition1":"Chlorpheniramine Maleate (1mg) ","short_composition2":" Paracetamol (125mg) "},{"id":249459,"name":"Zpac 260mg Injection","price":10515.2,"Is_discontinued":"FALSE","manufacturer_name":"RPG Life Sciences Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Paclitaxel (260mg)","short_composition2":""},{"id":249460,"name":"Zicfi LB 200mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249461,"name":"Zictuss Syrup Mint Sugar Free","price":64.9,"Is_discontinued":"FALSE","manufacturer_name":"Hebert Biotech","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249462,"name":"Zoxib 120mg Tablet","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (120mg)","short_composition2":""},{"id":249463,"name":"Zax 250mg Injection","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":249464,"name":"Zoxicef OX Tablet","price":192,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249465,"name":"Zefonec-SP Tablet","price":76.8,"Is_discontinued":"FALSE","manufacturer_name":"Integral Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249466,"name":"Zedtraline 50mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"ZedRock Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sertraline (50mg)","short_composition2":""},{"id":249467,"name":"Zyciderm NF Cream","price":60,"Is_discontinued":"FALSE","manufacturer_name":"German Remedies","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Mometasone (0.1% w/w) ","short_composition2":" Terbinafine (1% w/w)"},{"id":249468,"name":"Zironi H Tablet","price":44.5,"Is_discontinued":"FALSE","manufacturer_name":"Exsiva Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amitriptyline (12.5mg) ","short_composition2":" Chlordiazepoxide (5mg)"},{"id":249469,"name":"Zap 0.5mg Tablet","price":34.94,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.5mg)","short_composition2":""},{"id":249470,"name":"Zcast L 5mg/10mg Tablet","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Smithways Oncology Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249471,"name":"Zoled 4mg Injection","price":4000,"Is_discontinued":"FALSE","manufacturer_name":"Symbion Lifescience","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":249472,"name":"Ziprotil 50mg Dry Syrup","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Calen Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":249473,"name":"Zonim Plus 100 mg/500 mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Ozone Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":249474,"name":"Zacur 250mg Tablet","price":131.7,"Is_discontinued":"FALSE","manufacturer_name":"Aamorb Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":249475,"name":"Zedan 150mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Biological","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":249476,"name":"Zeitabin 75mg Injection","price":46,"Is_discontinued":"FALSE","manufacturer_name":"RSM Kilitch Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Sodium Bicarbonate (75mg)","short_composition2":""},{"id":249477,"name":"Zupitor 5mg Tablet","price":59.4,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (5mg)","short_composition2":""},{"id":249478,"name":"Zabee 20mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Medok Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249479,"name":"Zexflam PS 100mg/325mg/15mg Tablet","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249480,"name":"Ziletiz 5mg Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Ziel Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249481,"name":"Zyser D 50mg/10mg Tablet","price":56.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":249482,"name":"Zildox 100mg Injection","price":4388,"Is_discontinued":"FALSE","manufacturer_name":"Miracalus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Oxaliplatin (100mg)","short_composition2":""},{"id":249483,"name":"Zedocid O Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Sucralfate (1000mg/10ml) ","short_composition2":" Oxetacaine (20mg/10ml)"},{"id":249484,"name":"Zeriox-LS Syrup","price":87,"Is_discontinued":"FALSE","manufacturer_name":"World Heal Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Levosalbutamol (1mg) ","short_composition2":" Ambroxol (30mg) "},{"id":249485,"name":"Zoocot Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Zoobion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249486,"name":"Zeflur Eye Drop","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Renova Life sciences Pvt Ltd","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Flurbiprofen (0.03% w/v) ","short_composition2":" Hydroxypropylmethylcellulose (0.25% w/v)"},{"id":249487,"name":"Zikem 200mg/5ml Syrup","price":46.33,"Is_discontinued":"FALSE","manufacturer_name":"Shrinivas Gujarat Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":249488,"name":"Zipsydon 80mg Capsule","price":215,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (80mg)","short_composition2":""},{"id":249489,"name":"Zomark FX 0.25mg/20mg Tablet","price":42.5,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Fluoxetine (20mg)"},{"id":249490,"name":"Zonicare 50mg Capsule","price":57,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zonisamide (50mg)","short_composition2":""},{"id":249491,"name":"Zetica 10mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ezetimibe (10mg)","short_composition2":""},{"id":249492,"name":"Zoxy-P 4mg/500mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (4mg) ","short_composition2":" Paracetamol (500mg)"},{"id":249493,"name":"Zinimet 500mg Tablet XL","price":12.9,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet xl","short_composition1":"Metformin (500mg)","short_composition2":""},{"id":249494,"name":"Zacdef 30mg Tablet","price":295,"Is_discontinued":"FALSE","manufacturer_name":"Starus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":249495,"name":"Zedem 10mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Dorris Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249496,"name":"Zina 25mg Tablet","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Elikem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Thioridazine (25mg)","short_composition2":""},{"id":249497,"name":"Zenobal 500mcg Injection","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Methylcobalamin (500mcg)","short_composition2":""},{"id":249498,"name":"Zunitra 4mg Injection","price":2450,"Is_discontinued":"FALSE","manufacturer_name":"Samarth Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":249499,"name":"Ziglim-M Forte 1mg/1000mg Tablet","price":63.7,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (1000mg)"},{"id":249500,"name":"Zido D 15mg/20mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Evershine Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (15mg) ","short_composition2":" Cinnarizine (20mg)"},{"id":249501,"name":"Zomet 500mg Tablet SR","price":17.73,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg)","short_composition2":""},{"id":249502,"name":"Zepid 1mg Tablet","price":11.17,"Is_discontinued":"FALSE","manufacturer_name":"Psychotropics India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (1mg)","short_composition2":""},{"id":249503,"name":"Zovair Octacap Capsule","price":359.5,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 30 capsules","short_composition1":"Ciclesonide (320mcg) ","short_composition2":" Formoterol (12mcg)"},{"id":249504,"name":"Zonesta 10mg Capsule","price":61.52,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zaleplon (10mg)","short_composition2":""},{"id":249505,"name":"Zulpride 100mg Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amisulpride (100mg)","short_composition2":""},{"id":249506,"name":"Zixif O 200mg/200mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249507,"name":"Zimspor 200mg Tablet DT","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249508,"name":"Zocx CV-625 Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Zens Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":249509,"name":"Zedel A 0.25mg/20mg Tablet","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Cyril Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Fluoxetine (20mg)"},{"id":249510,"name":"Zitus 250 Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Radius Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249511,"name":"Zopitran 7.5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zopiclone (7.5mg)","short_composition2":""},{"id":249512,"name":"Zefact 500mg Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Medivaxia Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249513,"name":"Zymor 100000AU Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Biochem Pharmaceutical Industries","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Trypsin Chymotrypsin (100000AU)","short_composition2":""},{"id":249514,"name":"Zygon 5IU Injection","price":3.72,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Oxytocin (5IU)","short_composition2":""},{"id":249515,"name":"Zenicoxib 90mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (90mg)","short_composition2":""},{"id":249516,"name":"Zikcef 200 DT Tablet","price":118.45,"Is_discontinued":"FALSE","manufacturer_name":"Archmed Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249517,"name":"Zithrox 100mg Tablet","price":15.38,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":249518,"name":"Zimix-LB Tablet DT","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":249519,"name":"Zinilet-Cold Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Saturn Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Diphenhydramine (25mg) "},{"id":249520,"name":"Zippi-DSR Capsule","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Infino Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249521,"name":"Zeogaba NT 400mg/10mg Tablet","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (400mg) ","short_composition2":" Nortriptyline (10mg)"},{"id":249522,"name":"Zenoflam 100mg/325mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Synthozenesis Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249523,"name":"Zipral 40mg Capsule","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Lifecare Neuro Products Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (40mg)","short_composition2":""},{"id":249524,"name":"Zimnic AZ 200 mg/500 mg Tablet","price":229.9,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (500mg)"},{"id":249525,"name":"Zemetril 250mg Tablet","price":284.35,"Is_discontinued":"TRUE","manufacturer_name":"Glaxo SmithKline Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefprozil (250mg)","short_composition2":""},{"id":249526,"name":"Zimnic DX Tablet","price":130,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Dicloxacillin (500mg) "},{"id":249527,"name":"Zomatril 10 Sachet","price":7.6,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"sachet of 1 gm Sachet","short_composition1":"Racecadotril (10mg)","short_composition2":""},{"id":249528,"name":"Zemega 180mg/120mg Capsule","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Sangrose Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Eicosapentaenoic acid (180mg) ","short_composition2":" Docosahexanoic acid(DHA) (120mg)"},{"id":249529,"name":"Zymmune 25mg Capsule","price":183.5,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 6 capsules","short_composition1":"Ciclosporin (25mg)","short_composition2":""},{"id":249530,"name":"Zoxlide-MD Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":249531,"name":"Zypdox 200mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249532,"name":"Zitrac 250 Tablet","price":72.5,"Is_discontinued":"FALSE","manufacturer_name":"Pinarc Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249533,"name":"Zepsan 2mg Tablet MD","price":64.4,"Is_discontinued":"FALSE","manufacturer_name":"Sanity Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":249534,"name":"Zonact SB 1000mg/500mg Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Serbia Molecules Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249535,"name":"Zirazine 25 Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cinnarizine (25mg)","short_composition2":""},{"id":249536,"name":"Zytron 4mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Harson Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":249537,"name":"Zigarab LS 75 mg/20 mg Capsule","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Tulip Lab Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249538,"name":"Zoxil 125mg Suspension","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Cefadroxil (125mg)","short_composition2":""},{"id":249539,"name":"Zanpan 40mg Tablet","price":36.68,"Is_discontinued":"TRUE","manufacturer_name":"Wallace Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249540,"name":"Zypod 100mg Tablet DT","price":117.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":249541,"name":"Zime-O 200 Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"The Kirti Works","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249542,"name":"Zymef P Oral Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":249543,"name":"Zephylline 100mg Capsule","price":132,"Is_discontinued":"FALSE","manufacturer_name":"Solvis Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":249544,"name":"Zytus BX Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Reantis Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (4mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":249545,"name":"Zylomef P DS Oral Suspension","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (100mg) ","short_composition2":" Paracetamol (250mg)"},{"id":249546,"name":"Zedrot-MF Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Sebert Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":249547,"name":"Zolax 0.25mg Tablet SR","price":10.82,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":249548,"name":"Zoxakind 100mg/5ml Syrup","price":52.8,"Is_discontinued":"TRUE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Nitazoxanide (100mg/5ml)","short_composition2":""},{"id":249549,"name":"Zyper 250mg Tablet","price":131.25,"Is_discontinued":"FALSE","manufacturer_name":"Percos India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249550,"name":"Zukarest Tablet","price":7.5,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249551,"name":"Zitelmi 20mg Tablet","price":36.21,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (20mg)","short_composition2":""},{"id":249552,"name":"Zobara Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg) ","short_composition2":" Melatonin (NA)"},{"id":249553,"name":"Zobet 0.5mg Drop","price":11,"Is_discontinued":"FALSE","manufacturer_name":"Rhombus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"packet of 15 ml Drop","short_composition1":"Betamethasone (0.5mg)","short_composition2":""},{"id":249554,"name":"Zosart-H 50mg/12.5mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":249555,"name":"Zarbera N 5mg Tablet","price":52.7,"Is_discontinued":"FALSE","manufacturer_name":"Green Cross Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norethisterone (5mg)","short_composition2":""},{"id":249556,"name":"Zeftom 500mg Tablet","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Medivaxia Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249557,"name":"Zerofen-P Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"R.B. Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249558,"name":"Z Alfu 10mg Tablet PR","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 Tablet pr","short_composition1":"Alfuzosin (10mg)","short_composition2":""},{"id":249559,"name":"Zainet 10mg Tablet DT","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Progressive Life Care","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":249560,"name":"Zevacid A Oral Suspension","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zenstar Life Sciences","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Oxetacaine (10mg) ","short_composition2":" Aluminium Hydroxide (600mg) "},{"id":249561,"name":"Zibose 0.3 Tablet","price":60.5,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Voglibose (0.3mg)","short_composition2":""},{"id":249562,"name":"Zivast-F Tablet","price":65,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 7 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Fenofibrate (160mg)"},{"id":249563,"name":"Zinkar Eye Drop","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Indiana Opthalmics","type":"allopathy","pack_size_label":"packet of 10 ml Eye Drop","short_composition1":"Sulphacetamide (10% w/v) ","short_composition2":" Boric Acid (1.5% w/v) "},{"id":249564,"name":"Zystim 300mcg Injection","price":1334.43,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"prefilled syringe of 1 ml Injection","short_composition1":"Filgrastim (300mcg)","short_composition2":""},{"id":249565,"name":"Zimnic CV 200 mg/125 mg Tablet DT","price":133.04,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 6 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249566,"name":"Zercan 100 Capsule","price":122.9,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 7 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":249567,"name":"Zamclox 250mg/250mg Capsule","price":42.6,"Is_discontinued":"FALSE","manufacturer_name":"Shalina Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":249568,"name":"Zoypod 200 Tablet DT","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249569,"name":"Z Pod 50mg Dry Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":249570,"name":"Zopercin 4000 mg/500 mg Injection","price":390.7,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":249571,"name":"Zocin OR 50mg/5ml/125mg/5ml Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Winsome Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":249572,"name":"Zofix 50mg Dry Syrup","price":48.62,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":249573,"name":"Zoceclo SP 100mg/325mg/10mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249574,"name":"Zdcort 6mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zen Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249575,"name":"Zaipan D 30mg/40mg Capsule SR","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Medswap Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249576,"name":"Zaminol 250mg Oral Suspension","price":38.3,"Is_discontinued":"FALSE","manufacturer_name":"Agonist Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":249577,"name":"Zutoss Syrup","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Guaifenesin (100mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (4mg/5ml) "},{"id":249578,"name":"Zibit-OZ Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Medisoft Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":249579,"name":"Zolfer S 100mg Injection","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Iron Sucrose (100mg)","short_composition2":""},{"id":249580,"name":"Zocin 300mg Tablet","price":40.38,"Is_discontinued":"FALSE","manufacturer_name":"Winsome Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (300mg)","short_composition2":""},{"id":249581,"name":"Zycin 250mg Capsule","price":71.85,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 capsules","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249582,"name":"Zitab 500mg Tablet","price":62.25,"Is_discontinued":"FALSE","manufacturer_name":"Floreat Medica Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249583,"name":"Zytax-OF 200mg/200mg Tablet","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249584,"name":"Z Nol 100mg Tablet","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":249585,"name":"Zisan 250mg Tablet","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249586,"name":"Zytorse 100mg Tablet","price":239,"Is_discontinued":"FALSE","manufacturer_name":"Zanetaz Medicorp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (100mg)","short_composition2":""},{"id":249587,"name":"Zobit 20mg Injection","price":88.5,"Is_discontinued":"FALSE","manufacturer_name":"Ambit Bio Medix","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249588,"name":"Zofix 100 DT Tablet","price":81.5,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":249589,"name":"Zumcof DX Syrup","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ammonium Chloride (50mg) ","short_composition2":" Chlorpheniramine Maleate (2.5mg) "},{"id":249590,"name":"Zetax OF 200mg/200mg Tablet","price":146.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249591,"name":"Zurifeb 40mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Whiz Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (40mg)","short_composition2":""},{"id":249592,"name":"Zolpeace 5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Race Pharmaceuticals pvt ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":249593,"name":"Zenoglim M2 2 mg/500 mg Tablet","price":90.47,"Is_discontinued":"FALSE","manufacturer_name":"Zenvita Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":249594,"name":"Zorno Suspension","price":41.5,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":249595,"name":"Zipro-TZ 500mg/600mg Tablet","price":72.45,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":249596,"name":"Zacrol-SP Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249597,"name":"Zicartel CL Tablet","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Carmentis Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cilnidipine (10mg) ","short_composition2":" Telmisartan (40mg)"},{"id":249598,"name":"Ziofresh Mouth Wash","price":66.4,"Is_discontinued":"FALSE","manufacturer_name":"Vinson pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Mouth Wash","short_composition1":"Chlorhexidine Gluconate (0.2% w/v) ","short_composition2":" Sodium Fluoride (0.05% w/v) "},{"id":249599,"name":"Zopex CL 200mg/125mg Tablet","price":275.4,"Is_discontinued":"FALSE","manufacturer_name":"Pride Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249600,"name":"Zithcot 500 Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Scot Derma Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249601,"name":"Zelmont Tablet","price":102,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249602,"name":"Zedcon 150mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":249603,"name":"Zerotral 200 Capsule","price":278,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":249604,"name":"Zifcef-TZ Injection","price":126.7,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":249605,"name":"Zovatil 250 Tablet","price":399,"Is_discontinued":"FALSE","manufacturer_name":"Zareenova Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":249606,"name":"Zymocin 500 Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Euronova Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249607,"name":"Zanis AP 100mg/325mg/15mg Tablet","price":80.1,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249608,"name":"Zigpant D 30mg/40mg Capsule SR","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zynovia Lifecare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249609,"name":"Zalto 80mg Tablet","price":52.5,"Is_discontinued":"TRUE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zaltoprofen (80mg)","short_composition2":""},{"id":249610,"name":"Zatin 50mg Tablet","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Thrift Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg)","short_composition2":""},{"id":249611,"name":"Zoxus MR Tablet","price":3.5,"Is_discontinued":"FALSE","manufacturer_name":"Lexus Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":249612,"name":"Zin 500mg Tablet","price":64.9,"Is_discontinued":"FALSE","manufacturer_name":"Herbotics Research Inc","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249613,"name":"Zydox 50mg Oral Suspension","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":249614,"name":"Zecet Cold Oral Suspension","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (1mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":249615,"name":"Zepod 100mg Tablet DT","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Cablin Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":249616,"name":"Zetaglim MP 2mg/500mg/7.5mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":249617,"name":"Zomart IT 20mg/150mg Tablet SR","price":150,"Is_discontinued":"FALSE","manufacturer_name":"10 Drug Mart","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Rabeprazole (20mg) ","short_composition2":" Itopride (150mg)"},{"id":249618,"name":"Zubilor Plus 8mg/325mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Oddiant Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249619,"name":"Zuptor 10mg Tablet","price":130.4,"Is_discontinued":"FALSE","manufacturer_name":"Benique Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (10mg)","short_composition2":""},{"id":249620,"name":"Zupep DP 50mg/10mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":249621,"name":"Zoletrust Injection","price":1626.4,"Is_discontinued":"FALSE","manufacturer_name":"Panacea Biotec Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":249622,"name":"Zacy Safe 100mg/37.5mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Comed Chemicals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Zinc Carnosine (37.5mg)"},{"id":249623,"name":"Zaq-AZ 250 Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Zaq Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249624,"name":"Zanis 100 mg/15 mg Tablet","price":53.62,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Serratiopeptidase (15mg)"},{"id":249625,"name":"Zicam 2mg Tablet","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":249626,"name":"Zaxef 500mg Tablet","price":690,"Is_discontinued":"FALSE","manufacturer_name":"Zephyr Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (500mg)","short_composition2":""},{"id":249627,"name":"Zilneu 20mg Tablet","price":98,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cilnidipine (20mg)","short_composition2":""},{"id":249628,"name":"Zovidac 800mg Tablet DT","price":265,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Acyclovir (800mg)","short_composition2":""},{"id":249629,"name":"Zwick-P 100mg/325mg Tablet","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"Keona Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249630,"name":"Zospar 100mg Tablet","price":28.5,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Sparfloxacin (100mg)","short_composition2":""},{"id":249631,"name":"Zyrova D3 Forte Tablet","price":198.7,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (10mg) ","short_composition2":" Vitamin D3 (1000IU)"},{"id":249632,"name":"Zyltan H 50 mg/12.5 mg Tablet","price":79.75,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":249633,"name":"Ziroxy 150mg Tablet","price":109,"Is_discontinued":"FALSE","manufacturer_name":"Shrinivas Gujarat Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":249634,"name":"Zolenip DSR Capsule","price":69.5,"Is_discontinued":"FALSE","manufacturer_name":"Maniph Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249635,"name":"Zyolan 5mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Cyril Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (5mg)","short_composition2":""},{"id":249636,"name":"Zimox CV 500mg/125mg Tablet","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249637,"name":"Zepent 40mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249638,"name":"Zenapax 25mg Injection","price":23920,"Is_discontinued":"TRUE","manufacturer_name":"Roche Products India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Daclizumab (25mg)","short_composition2":""},{"id":249639,"name":"Z Lip 10mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Panvik Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":249640,"name":"Ziniglipt 20mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Teneligliptin (20mg)","short_composition2":""},{"id":249641,"name":"Zeriton Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":249642,"name":"Zeetor 20 Tablet","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Zeelab Pharmacy Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (20mg)","short_composition2":""},{"id":249643,"name":"Zesper D 10 mg/20 mg Tablet","price":59.31,"Is_discontinued":"FALSE","manufacturer_name":"Thrift Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249644,"name":"Zytolix P Syrup","price":50.45,"Is_discontinued":"FALSE","manufacturer_name":"Klar Sehen Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Promethazine (1.5mg/5ml) ","short_composition2":" Pholcodine (1.5mg/5ml)"},{"id":249645,"name":"Zipra 40mg Capsule","price":64.86,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (40mg)","short_composition2":""},{"id":249646,"name":"Zohri 200mg/5ml Drop","price":42.95,"Is_discontinued":"FALSE","manufacturer_name":"Meridian Medicare Ltd","type":"allopathy","pack_size_label":"packet of 15 ml Drop","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":249647,"name":"ZOLANDIN 200MG TABLET","price":7.8,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (200mg)","short_composition2":""},{"id":249648,"name":"Zither L 80mg/480mg Tablet","price":162,"Is_discontinued":"FALSE","manufacturer_name":"Age Biotech","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Artemether (80mg) ","short_composition2":" Lumefantrine (480mg)"},{"id":249649,"name":"Zoflo-B Eye/Ear Drops","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"bottle of 10 ml Eye/Ear Drops","short_composition1":"Betamethasone (0.01% w/v) ","short_composition2":" Ofloxacin (0.3% w/v)"},{"id":249650,"name":"Zonate-SB 1000mg/500mg Injection","price":103.6,"Is_discontinued":"FALSE","manufacturer_name":"Bioved Life Sciences","type":"allopathy","pack_size_label":"vial of 1.5 gm Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249651,"name":"Zytec AZ 500mg Tablet","price":68.4,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249652,"name":"Ziyacof BR Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (4mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":249653,"name":"Zidovir 100 Capsule","price":62.06,"Is_discontinued":"TRUE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":249654,"name":"Zeodex AM Syrup","price":67.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249655,"name":"Zicla M 60mg/500mg Tablet SR","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Sinsan Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Gliclazide (60mg) ","short_composition2":" Metformin (500mg)"},{"id":249656,"name":"Zinus Syrup","price":17,"Is_discontinued":"FALSE","manufacturer_name":"Cronus Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cetirizine (10mg/5ml)","short_composition2":""},{"id":249657,"name":"Zollson-D Capsule","price":101,"Is_discontinued":"FALSE","manufacturer_name":"Avyukt Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":249658,"name":"ZF 150mg Tablet","price":13,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":249659,"name":"Z Febu 40mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (40mg)","short_composition2":""},{"id":249660,"name":"Zestmore 5 Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"MedSonic Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Escitalopram Oxalate (5mg)","short_composition2":""},{"id":249661,"name":"Zetel-AM Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Amlodipine (5mg)"},{"id":249662,"name":"Zolong 10mg Tablet","price":18.28,"Is_discontinued":"FALSE","manufacturer_name":"Gujarat Terce Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":249663,"name":"Zoxil CV 500 mg/125 mg Tablet","price":108.5,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249664,"name":"Zigma 400mg Tablet CR","price":29.53,"Is_discontinued":"FALSE","manufacturer_name":"Crescent Therapeutics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Carbamazepine (400mg)","short_composition2":""},{"id":249665,"name":"Zensulid P Tablet","price":36.95,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (NA) ","short_composition2":" Paracetamol (NA)"},{"id":249666,"name":"Zyrop 20000IU Injection","price":695,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Recombinant Human Erythropoietin Alfa (20000IU)","short_composition2":""},{"id":249667,"name":"Zolsleep 10mg Tablet","price":87.5,"Is_discontinued":"FALSE","manufacturer_name":"Kriven Health Solutions","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249668,"name":"Zeethro 250mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Affy Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249669,"name":"Zespar 200mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sparfloxacin (200mg)","short_composition2":""},{"id":249670,"name":"Zetin L 5mg Capsule","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Sangrose Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249671,"name":"Zargo 50mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg)","short_composition2":""},{"id":249672,"name":"Zymase S 10mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":249673,"name":"Zerozole D 30mg/20mg Capsule SR","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Geneaid Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249674,"name":"Zyloprim DS 200mg/28.5mg Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Apotex Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":249675,"name":"Zoldom 10mg/40mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Bio Sars Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249676,"name":"Zyn 500mg Tablet","price":23.89,"Is_discontinued":"FALSE","manufacturer_name":"Siomond Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249677,"name":"Zycit 500mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Laxian Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citicoline (500mg)","short_composition2":""},{"id":249678,"name":"Zoycef 500mg Tablet","price":270,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249679,"name":"Zimix AZ 200mg/250mg Tablet","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":249680,"name":"Zoaflox 200mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Suzen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249681,"name":"Zimac 250 Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Apostle Remedies","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249682,"name":"Zelstat 40mg Tablet","price":93,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (40mg)","short_composition2":""},{"id":249683,"name":"Zitrac 500 Tablet","price":196.5,"Is_discontinued":"FALSE","manufacturer_name":"Pinarc Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249684,"name":"Zelam 0.5mg Tablet SR","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Aronex Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":249685,"name":"Zalacort 30mg Tablet","price":364,"Is_discontinued":"FALSE","manufacturer_name":"Baxton Pharmacia","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":249686,"name":"Zoonic 200 Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Zoobion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249687,"name":"Zeldinac 75mg Injection","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Leeford Healthcare Ltd","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":249688,"name":"Zenolid 600mg Tablet","price":359,"Is_discontinued":"FALSE","manufacturer_name":"Medizen Therapeutics Industries","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":249689,"name":"Zadorab LS 75mg/20mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Canvarzys Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249690,"name":"Zingpride 400mg Tablet","price":415,"Is_discontinued":"FALSE","manufacturer_name":"Ishjas Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amisulpride (400mg)","short_composition2":""},{"id":249691,"name":"Zolineg 1Million IU Injection","price":1095.37,"Is_discontinued":"FALSE","manufacturer_name":"Sanofi India Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (1Million IU)","short_composition2":""},{"id":249692,"name":"Zyvana M1 Tablet SR","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg)"},{"id":249693,"name":"Zerocan 200mg Tablet","price":17.9,"Is_discontinued":"FALSE","manufacturer_name":"Organic Laboratories","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (200mg)","short_composition2":""},{"id":249694,"name":"Zolfa 1mg Tablet","price":18.9,"Is_discontinued":"FALSE","manufacturer_name":"Soltech Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (1mg)","short_composition2":""},{"id":249695,"name":"Zeelo 0.5mg Tablet","price":16.96,"Is_discontinued":"FALSE","manufacturer_name":"Apex Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.5mg)","short_composition2":""},{"id":249696,"name":"Zolppi 20mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Bionova Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249697,"name":"Zyto DSR 30mg/40mg Capsule","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249698,"name":"Zytec AZ 100mg Tablet DT","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":249699,"name":"Zizole 150mg Tablet","price":11.5,"Is_discontinued":"FALSE","manufacturer_name":"Ryze Lifecare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":249700,"name":"Zemozec 500 Tablet","price":523,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249701,"name":"Zefocef-O Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249702,"name":"Zat 500 Tablet","price":72.35,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249703,"name":"Zac 30 Tablet","price":325,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":249704,"name":"Zunil 200mg Tablet","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Endurance Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (200mg)","short_composition2":""},{"id":249705,"name":"Zibit 200 Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Medisoft Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249706,"name":"Zevacef OF 200mg/200mg Tablet","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249707,"name":"Zeenodol SP 100mg/325mg/15mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Kom-med Labrotories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249708,"name":"Zenrif 400 Tablet","price":270,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rifaximin (400mg)","short_composition2":""},{"id":249709,"name":"Zofi AZ Plus 200mg/250mg Tablet","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":249710,"name":"Zurox 500 Tablet","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249711,"name":"Zinver OD 24mg Tablet","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Rholence Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (24mg)","short_composition2":""},{"id":249712,"name":"Zoracef 500 Tablet","price":699,"Is_discontinued":"FALSE","manufacturer_name":"Smile Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":249713,"name":"Zeford 0.25 Tablet","price":20.5,"Is_discontinued":"FALSE","manufacturer_name":"Oxpro Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.25mg)","short_composition2":""},{"id":249714,"name":"Zooclav 625 Tablet","price":124.6,"Is_discontinued":"FALSE","manufacturer_name":"HBC Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249715,"name":"Zitelmi-C Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":249716,"name":"Zuflo Eye Drop","price":11.25,"Is_discontinued":"FALSE","manufacturer_name":"Morepen Laboratories Ltd","type":"allopathy","pack_size_label":"packet of 10 ml Eye Drop","short_composition1":"Ofloxacin (NA)","short_composition2":""},{"id":249717,"name":"Zleep 10mg Tablet","price":45.33,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249718,"name":"Zopizone 50mg Tablet","price":29.41,"Is_discontinued":"FALSE","manufacturer_name":"KC Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clozapine (50mg)","short_composition2":""},{"id":249719,"name":"Zyplanin 400mg Injection","price":1371.42,"Is_discontinued":"FALSE","manufacturer_name":"Zyphar's Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Teicoplanin (400mg)","short_composition2":""},{"id":249720,"name":"Zapra 40mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Salus Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249721,"name":"Zon Plus 3mg/2mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Elikem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (3mg) ","short_composition2":" Trihexyphenidyl (2mg)"},{"id":249722,"name":"Zyvec 4mg Injection","price":86.94,"Is_discontinued":"FALSE","manufacturer_name":"Themis Medicare Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Vecuronium (2mg/ml)","short_composition2":""},{"id":249723,"name":"Zops 2mg Tablet","price":29.7,"Is_discontinued":"FALSE","manufacturer_name":"Green Cross Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lorazepam (2mg)","short_composition2":""},{"id":249724,"name":"Zestril 5mg Tablet","price":155.1,"Is_discontinued":"FALSE","manufacturer_name":"AstraZeneca","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Lisinopril (5mg)","short_composition2":""},{"id":249725,"name":"Zimocin 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Abia Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249726,"name":"Zylocet M Kid 2.5mg/5mg Tablet","price":35.72,"Is_discontinued":"FALSE","manufacturer_name":"Zylone Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (5mg)"},{"id":249727,"name":"Zetel-H Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":249728,"name":"Zepreg-M Capsule","price":219,"Is_discontinued":"FALSE","manufacturer_name":"Scope Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":249729,"name":"Zenclob S Cream","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zencus Pharma","type":"allopathy","pack_size_label":"tube of 20 gm Cream","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Salicylic Acid (3% w/w)"},{"id":249730,"name":"Zincobus 100mg Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Globus Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Iron Sucrose (100mg)","short_composition2":""},{"id":249731,"name":"Zoflo 400mg Tablet","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":249732,"name":"Zyromet SR 500 Tablet","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg)","short_composition2":""},{"id":249733,"name":"Zocid DM 10 mg/20 mg Capsule","price":49.11,"Is_discontinued":"FALSE","manufacturer_name":"Zest Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":249734,"name":"Zanoquin OZ Suspension","price":34.56,"Is_discontinued":"FALSE","manufacturer_name":"Radico Remedies","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":249735,"name":"Zeriderm Cream","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zerico Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Terbinafine (1% w/w) ","short_composition2":" Clobetasol (0.05% w/w) "},{"id":249736,"name":"Zenbro AC 100mg/600mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Baxton Pharmacia","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acebrophylline (100mg) ","short_composition2":" Acetylcysteine (600mg)"},{"id":249737,"name":"Zeo Fresh Mouth Wash","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Mouth Wash","short_composition1":"Chlorhexidine Gluconate (2% w/v)","short_composition2":""},{"id":249738,"name":"Zoranac 200mg Tablet SR","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Jchem Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":249739,"name":"Zonetears 0.5% Eye Drop","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Pharmanova India Drugs Pvt Ltd","type":"allopathy","pack_size_label":"packet of 10 ml Eye Drop","short_composition1":"Carboxymethylcellulose (0.5% w/v)","short_composition2":""},{"id":249740,"name":"Zimfix 100mg Tablet DT","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Wintech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":249741,"name":"Zytomi Capsule","price":26.2,"Is_discontinued":"FALSE","manufacturer_name":"Healthtree Pharma (India) Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":249742,"name":"Zolita 40mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Astronia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249743,"name":"Zyof OZ 200mg/500mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zylone Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":249744,"name":"Zypovid 7.5% Scrub","price":82.37,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"bottle of 100 ml Scrub","short_composition1":"Povidone Iodine (7.5% w/v)","short_composition2":""},{"id":249745,"name":"Zelvida 50mg Tablet","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Bionext Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Vildagliptin (50mg)","short_composition2":""},{"id":249746,"name":"Ziddigen Injection","price":900,"Is_discontinued":"FALSE","manufacturer_name":"Tyykem Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249747,"name":"Zurvast 10mg Tablet","price":121,"Is_discontinued":"FALSE","manufacturer_name":"Europa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (10mg)","short_composition2":""},{"id":249748,"name":"ZOSPRIN 75MG TABLET","price":6.5,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aspirin (75mg)","short_composition2":""},{"id":249749,"name":"Zilokem 80 Tablet","price":163.5,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":249750,"name":"Zyrof Mel 50mg Tablet","price":70.46,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rofecoxib (50mg)","short_composition2":""},{"id":249751,"name":"Zenclor 125mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefaclor (125mg)","short_composition2":""},{"id":249752,"name":"Zadine 0.5mg Syrup","price":25.21,"Is_discontinued":"FALSE","manufacturer_name":"Fulford India Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Azacitidine (0.5mg)","short_composition2":""},{"id":249753,"name":"Zetalo 5mg Tablet","price":33.82,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citalopram (5mg)","short_composition2":""},{"id":249754,"name":"Zenom 5mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Mars Therapeutics & Chemicals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249755,"name":"Zolidac 10mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249756,"name":"Zogliz M 80mg/500mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (80mg) ","short_composition2":" Metformin (500mg)"},{"id":249757,"name":"Zaxpam 30mg Tablet","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Oxazepam (30mg)","short_composition2":""},{"id":249758,"name":"Zexodin-M Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Jaiwik Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Montelukast (10mg) ","short_composition2":" Fexofenadine (120mg)"},{"id":249759,"name":"Ziprax LB 100mg Tablet DT","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg) ","short_composition2":" Lactobacillus (40Million spores)"},{"id":249760,"name":"Zefocef-C 325 Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249761,"name":"Zeonid Clt 100mg/100mg/100mg Vaginal Capsule","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 7 Vaginal Capsules","short_composition1":"Clindamycin (100mg) ","short_composition2":" Clotrimazole (100mg) "},{"id":249762,"name":"Zentra-OZ Cream","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Ofloxacin (0.75% w/w) ","short_composition2":" Ornidazole (2% w/w) "},{"id":249763,"name":"Zeorizer 12mg Tablet","price":298,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ivermectin (12mg)","short_composition2":""},{"id":249764,"name":"Zoocid DSR Capsule","price":136,"Is_discontinued":"FALSE","manufacturer_name":"Zoobion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249765,"name":"Zmox 500mg Capsule","price":58.11,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":249766,"name":"Zincocet A Syrup","price":57,"Is_discontinued":"TRUE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249767,"name":"Zelith 300mg Tablet","price":16.5,"Is_discontinued":"FALSE","manufacturer_name":"Concord Medipharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lithium carbonate (300mg)","short_composition2":""},{"id":249768,"name":"Zylotor F Tablet","price":107,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Fenofibrate (160mg)"},{"id":249769,"name":"Zyrox 150mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":249770,"name":"Zypyra 500mg Tablet","price":21.72,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (500mg)","short_composition2":""},{"id":249771,"name":"Zepent-DSR 30mg/40mg Capsule","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249772,"name":"Zeecin 500mg Tablet","price":229,"Is_discontinued":"FALSE","manufacturer_name":"True Care Biomedix","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249773,"name":"Zaprinmax 30mg Capsule ER","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Betamax Remedies","type":"allopathy","pack_size_label":"strip of 10 capsule er","short_composition1":"Cyclobenzaprine (30mg)","short_composition2":""},{"id":249774,"name":"Zorex 250mg Tablet ER","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Divalproex (250mg)","short_composition2":""},{"id":249775,"name":"Zisper 2mg Tablet MD","price":28.46,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Risperidone (2mg)","short_composition2":""},{"id":249776,"name":"Zopen 40mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Kentreck Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249777,"name":"Zinbosulf Eye Drops","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Nri Vision Care India Limited","type":"allopathy","pack_size_label":"packet of 10 ml Ophthalmic Solution","short_composition1":"Sulphacetamide (15% w/v) ","short_composition2":" Zinc Sulphate Monohydrate (0.1% w/v) "},{"id":249778,"name":"Zelofenac RZ 200mg/20mg Capsule","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Aceclofenac (200mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249779,"name":"Zolver 400mg Tablet","price":159.6,"Is_discontinued":"FALSE","manufacturer_name":"Sunwin Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":249780,"name":"Z Cort 18mg Tablet","price":165,"Is_discontinued":"FALSE","manufacturer_name":"AS Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (18mg)","short_composition2":""},{"id":249781,"name":"Zefeel-GM Cream","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Miconazole (2% w/w) "},{"id":249782,"name":"Zedem 12.5mg Tablet ER","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Zolpidem (12.5mg)","short_composition2":""},{"id":249783,"name":"Zeocold Softgel Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Phenylephrine (5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":249784,"name":"Zrepag 2mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Repaglinide (2mg)","short_composition2":""},{"id":249785,"name":"Zentoril-DX Expectorant","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Bioclix Remedies","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":249786,"name":"Zinagon M Oral Suspension","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Semiotic Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":249787,"name":"Zeticure 10 Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"TBG pharma ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ezetimibe (10mg)","short_composition2":""},{"id":249788,"name":"Zoshan Tablet","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Bion Therapeutics India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tolperisone (150mg) ","short_composition2":" Diclofenac (50mg)"},{"id":249789,"name":"Zanof 200mg Tablet","price":40.47,"Is_discontinued":"FALSE","manufacturer_name":"Pegasus Farmaco India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249790,"name":"Zodox 10mg Injection","price":196.19,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Doxorubicin (Plain) (10mg)","short_composition2":""},{"id":249791,"name":"Zema P Tablet","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Paracetamol (500mg)"},{"id":249792,"name":"Zybact 250mg Tablet","price":106.53,"Is_discontinued":"FALSE","manufacturer_name":"Zyris Derma Care (P) Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249793,"name":"Zof OZ Tablet","price":73.33,"Is_discontinued":"FALSE","manufacturer_name":"Estragen Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":249794,"name":"Zienam Monovial 250mg/250mg Injection","price":1950,"Is_discontinued":"TRUE","manufacturer_name":"MSD Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Imipenem (250mg) ","short_composition2":" Cilastatin (250mg)"},{"id":249795,"name":"Zefira 200mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249796,"name":"Zodip MR Tablet","price":45.5,"Is_discontinued":"FALSE","manufacturer_name":"Sarmain Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (500mg) ","short_composition2":" Diclofenac (50mg) "},{"id":249797,"name":"Zaa 400mg Tablet","price":116,"Is_discontinued":"FALSE","manufacturer_name":"Daffohils Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":249798,"name":"Zidime 50mg Dry Syrup","price":70.68,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":249799,"name":"Zeonac Plus 100mg/325mg Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249800,"name":"Zumace-SP Tablet","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249801,"name":"Zolfirst 0.5mg/10mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"S.P Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flupenthixol (0.5mg) ","short_composition2":" Melitracen (10mg)"},{"id":249802,"name":"Zole N Syrup","price":24.5,"Is_discontinued":"FALSE","manufacturer_name":"Instant Remedies Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Metronidazole (100mg) ","short_composition2":" Norfloxacin (100mg)"},{"id":249803,"name":"Zengaline-PG Tablet","price":295,"Is_discontinued":"FALSE","manufacturer_name":"Zenvita Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levo-carnitine (500mg) ","short_composition2":" Methylcobalamin (750mcg) "},{"id":249804,"name":"Zivitec 150mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"PPL Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ranitidine (150mg)","short_composition2":""},{"id":249805,"name":"Zytrax 200mg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Vytrax Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249806,"name":"Zamadol 100mg Injection","price":19.9,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":249807,"name":"Zilmet 30mg/500mg Tablet","price":26.9,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (30mg) ","short_composition2":" Metformin (500mg)"},{"id":249808,"name":"Zyncet 10mg Syrup","price":37.31,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":249809,"name":"Zynimo 100mg Tablet","price":13.47,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":249810,"name":"Zimnic CV 100 mg/62.5 mg Tablet DT","price":60,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":249811,"name":"Zorox 150mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Essar Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":249812,"name":"Zoraz DSR 30mg/20mg Capsule","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zolife Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249813,"name":"Zofcin 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Banson Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249814,"name":"Zaxim 50mg Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Beckcem Drug International Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":249815,"name":"Zedcort 30mg Tablet","price":192,"Is_discontinued":"FALSE","manufacturer_name":"Nri Vision Care India Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":249816,"name":"Zedclav 500mg/125mg Tablet","price":112.8,"Is_discontinued":"FALSE","manufacturer_name":"Zedwell Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249817,"name":"Zovia 50mg Tablet","price":109,"Is_discontinued":"FALSE","manufacturer_name":"Merck Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tapentadol (50mg)","short_composition2":""},{"id":249818,"name":"Zithrobact 100mg Oral Suspension","price":28.5,"Is_discontinued":"FALSE","manufacturer_name":"Lividus Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":249819,"name":"Zorkuf BR Syrup","price":48.65,"Is_discontinued":"FALSE","manufacturer_name":"Maksun Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (2mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249820,"name":"Zenrif 200 Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rifaximin (200mg)","short_composition2":""},{"id":249821,"name":"Zaclofen 25 Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Baclofen (25mg)","short_composition2":""},{"id":249822,"name":"Zorpido 500mg Tablet","price":59.96,"Is_discontinued":"FALSE","manufacturer_name":"Ethicare Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249823,"name":"Zovicef 1000mg Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Zovilon Healthcare Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg)","short_composition2":""},{"id":249824,"name":"Zistin 16mg Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (16mg)","short_composition2":""},{"id":249825,"name":"Zyris-S Nasal Drop/Spray","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Ocuris Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Nasal Drops","short_composition1":"Sodium Chloride (0.65% w/v)","short_composition2":""},{"id":249826,"name":"Zyvilda 50mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Three Dots Lifescience","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Vildagliptin (50mg)","short_composition2":""},{"id":249827,"name":"Zuker MF OD Tablet","price":72.5,"Is_discontinued":"TRUE","manufacturer_name":"Biocon","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (60mg) ","short_composition2":" Metformin (500mg)"},{"id":249828,"name":"Z 1 200mg/5ml Suspension","price":56.06,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":249829,"name":"Zotadase K 50 mg/10 mg Tablet","price":56.62,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":249830,"name":"Zenotic 80mg Kit","price":8.72,"Is_discontinued":"FALSE","manufacturer_name":"Shreya Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Gentamicin (80mg)","short_composition2":""},{"id":249831,"name":"Zofactum 500 mg/500 mg Injection","price":1126.73,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249832,"name":"Zovi V 100mg/400mg/100mg Capsule","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Noel Pharma India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Capsule","short_composition1":"Clindamycin (100mg) ","short_composition2":" Metronidazole (400mg) "},{"id":249833,"name":"Zoflo-O Plus Tablet","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lactobacillus (120Million spores) ","short_composition2":" Ofloxacin (200mg) "},{"id":249834,"name":"Zippigo 0.1% Cream","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Mometasone (0.1% w/w)","short_composition2":""},{"id":249835,"name":"Zisan XL 200mg Oral Suspension","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":249836,"name":"Zinac SP 50mg/10mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Uni-Pex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":249837,"name":"Zaptar-K Scalp Solution","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Megaderm Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Solution","short_composition1":"Ketoconazole (2% w/v) ","short_composition2":" Coal Tar (2% v/v)"},{"id":249838,"name":"Zidime CV 100mg/62.5mg Tablet DT","price":96.67,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":249839,"name":"Zoltar 5mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Somnogen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":249840,"name":"ZIK 500mg Tablet","price":56.1,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249841,"name":"Zepod 100mg Dry Syrup","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Cablin Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":249842,"name":"Zepox 450 Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Oxcarbazepine (450mg)","short_composition2":""},{"id":249843,"name":"Zildaglip 50mg Tablet","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Vasu Organics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Vildagliptin (50mg)","short_composition2":""},{"id":249844,"name":"Zicort 12mg Tablet","price":89.4,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Deflazacort (12mg)","short_composition2":""},{"id":249845,"name":"Zolecell 40mg Tablet","price":91.57,"Is_discontinued":"FALSE","manufacturer_name":"Raksh Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249846,"name":"Zyvana MV 2 Tablet SR","price":117,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 15 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":249847,"name":"Zrepag MF 1mg/500mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Repaglinide (1mg) ","short_composition2":" Metformin (500mg)"},{"id":249848,"name":"Zerochol 40 Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Bsure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (40mg)","short_composition2":""},{"id":249849,"name":"Zert OD 100mg Tablet","price":69,"Is_discontinued":"TRUE","manufacturer_name":"RPG Life Sciences Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sertraline (100mg)","short_composition2":""},{"id":249850,"name":"Zolotim Eye Drops","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Albert David Ltd","type":"allopathy","pack_size_label":"bottle of 5 ml Ophthalmic Solution","short_composition1":"Dorzolamide (2% w/v) ","short_composition2":" Timolol (0.5% w/v)"},{"id":249851,"name":"Zepcar 300mg Tablet CR","price":17.85,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Carbamazepine (300mg)","short_composition2":""},{"id":249852,"name":"Zanocin OD 600mg Tablet","price":92.56,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Ofloxacin (600mg)","short_composition2":""},{"id":249853,"name":"Zyper T 4000mg/500mg Injection","price":459,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":249854,"name":"Zefdinir 300mg Capsule","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Cefdinir (300mg)","short_composition2":""},{"id":249855,"name":"Zofu 40mg Tablet SR","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Baxton Pharmacia","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Isoxsuprine (40mg)","short_composition2":""},{"id":249856,"name":"Zedgaba 75mg Tablet SR","price":85,"Is_discontinued":"FALSE","manufacturer_name":"ZedRock Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Pregabalin (75mg)","short_composition2":""},{"id":249857,"name":"Zedol Plus Oral Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Lifekyor Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Ivermectin (1.5mg) ","short_composition2":" Albendazole (200mg)"},{"id":249858,"name":"Zinpa Cold Syrup","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Cetirizine (2.5mg) ","short_composition2":" Paracetamol (125mg) "},{"id":249859,"name":"Zeprim 7.5mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Emocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Mirtazapine (7.5mg)","short_composition2":""},{"id":249860,"name":"Zocortid 6mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Mancop Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249861,"name":"Zytic 250mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Penlon India Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249862,"name":"Zyderm Cream","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"tube of 5 gm Cream","short_composition1":"Beclometasone (0.025% w/w) ","short_composition2":" Neomycin (0.5% w/w) "},{"id":249863,"name":"Zekast-L Kid Tablet","price":103,"Is_discontinued":"FALSE","manufacturer_name":"Genial Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249864,"name":"Zanclo P 100mg/325mg Tablet","price":42.8,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249865,"name":"Zonda 4mg Tablet","price":42.86,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":249866,"name":"Zorovon 10mg Tablet","price":30.57,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ketorolac (10mg)","short_composition2":""},{"id":249867,"name":"Zimpod Dry Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Wintech Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":249868,"name":"Zudol-P 37.5mg/325mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":249869,"name":"Zolpitrac 10mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":249870,"name":"ZANLOP 10MG CAPSULE","price":48.4,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zaleplon (10mg)","short_composition2":""},{"id":249871,"name":"Zolecon 200mg Tablet","price":18.65,"Is_discontinued":"FALSE","manufacturer_name":"Scott Edil Pharmacia Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (200mg)","short_composition2":""},{"id":249872,"name":"Zolcan 50mg Capsule","price":23.87,"Is_discontinued":"FALSE","manufacturer_name":"Talent Healthcare","type":"allopathy","pack_size_label":"strip of 1 Capsule","short_composition1":"Fluconazole (50mg)","short_composition2":""},{"id":249873,"name":"Zetri S 1000 mg/500 mg Injection","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":249874,"name":"Zopic 0.5mg Tablet","price":11.5,"Is_discontinued":"FALSE","manufacturer_name":"Centaur Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":249875,"name":"Zulu AT 8 Tablet","price":239.83,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (8mg)"},{"id":249876,"name":"Zifilac Tablet DT","price":65.31,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg) ","short_composition2":" Lactobacillus (25Million spores)"},{"id":249877,"name":"Zentra 100mg Capsule SR","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":249878,"name":"Zanpan L Capsule SR","price":203,"Is_discontinued":"FALSE","manufacturer_name":"Wallace Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249879,"name":"Zomelis Met 850mg/50mg Tablet","price":165,"Is_discontinued":"TRUE","manufacturer_name":"Eris Lifesciences Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (850mg) ","short_composition2":" Vildagliptin (50mg)"},{"id":249880,"name":"Zumroil L Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg/5ml) ","short_composition2":" Levosalbutamol (1mg/5ml) "},{"id":249881,"name":"Zen Azi 250mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Kaizen Research Labs India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249882,"name":"Zincorun Oral Solution","price":68.45,"Is_discontinued":"FALSE","manufacturer_name":"Pinarc Life Sciences","type":"allopathy","pack_size_label":"bottle of 100 ml Oral Solution","short_composition1":"Zinc Gluconate (20mg)","short_composition2":""},{"id":249883,"name":"Zolopreg-Forte Capsule","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":249884,"name":"Zatroclav 500mg/125mg Tablet","price":101,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249885,"name":"Zebitone Syrup","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zeaxa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg/5ml) ","short_composition2":" Tricholine Citrate (275mg/5ml)"},{"id":249886,"name":"Zopump LS 75mg/20mg Capsule","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Medrix Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249887,"name":"Zunimox 500mg/125mg Tablet","price":156,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249888,"name":"Zomcal D3 600000IU Injection","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Vitamin D3 (600000IU)","short_composition2":""},{"id":249889,"name":"Zincium Oral Syrup","price":44.9,"Is_discontinued":"FALSE","manufacturer_name":"Blue Planet Laboratories Pvt. Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Zinc Gluconate (20mg)","short_composition2":""},{"id":249890,"name":"Zolorest-FX Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Focus Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fluoxetine (20mg) ","short_composition2":" Olanzapine (5mg)"},{"id":249891,"name":"Zidlam-M Tablet","price":102,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249892,"name":"Zoxem O 200mg/200mg Tablet","price":162,"Is_discontinued":"FALSE","manufacturer_name":"ACS Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249893,"name":"Zithoter 200 Oral Suspension","price":114.9,"Is_discontinued":"FALSE","manufacturer_name":"Terra Pharma Private Limited","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":249894,"name":"Zuriclop 75mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zurinovo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clopidogrel (75mg)","short_composition2":""},{"id":249895,"name":"Zobet N Cream","price":22.87,"Is_discontinued":"FALSE","manufacturer_name":"Rhombus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Cream","short_composition1":"Betamethasone (NA) ","short_composition2":" Neomycin (NA)"},{"id":249896,"name":"Zenol 40mg Tablet","price":37.15,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249897,"name":"Zil 600mg Tablet","price":42.5,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tinidazole (600mg)","short_composition2":""},{"id":249898,"name":"Zactane 20mg Tablet","price":5.18,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 14 tablets","short_composition1":"Famotidine (20mg)","short_composition2":""},{"id":249899,"name":"Zomatril 30mg Sachet","price":13.5,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"packet of 3 gm Sachet","short_composition1":"Racecadotril (30mg)","short_composition2":""},{"id":249900,"name":"Zidceft Injection","price":212.65,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":249901,"name":"Zoldex Spas Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Modern Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Dextropropoxyphene (65mg) "},{"id":249902,"name":"Zecet A 5mg/60mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":249903,"name":"Zypsin-D 50mg/50000IU Tablet","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Trypsin Chymotrypsin (50000IU)"},{"id":249904,"name":"Zolcare 5 Tablet","price":51.5,"Is_discontinued":"FALSE","manufacturer_name":"Psychocare Health Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":249905,"name":"Zezal M Kid Tablet","price":69.9,"Is_discontinued":"FALSE","manufacturer_name":"Ernst Pharmacia","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (5mg)"},{"id":249906,"name":"Zelpin-DSR Capsule","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249907,"name":"Zecoef-AL Syrup","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Events Pharma","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levosalbutamol (1mg/5ml) ","short_composition2":" Ambroxol (30mg/5ml) "},{"id":249908,"name":"Zocoba-G Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (500mcg)"},{"id":249909,"name":"Zooma O Oral Gel","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Gel","short_composition1":"Oxetacaine (10mg) ","short_composition2":" Aluminium Hydroxide (291mg) "},{"id":249910,"name":"Zirotis-AM Tablet SR","price":281,"Is_discontinued":"FALSE","manufacturer_name":"Atlantis Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Azithromycin (500mg) ","short_composition2":" Ambroxol (75mg)"},{"id":249911,"name":"Zunim P 100mg/500mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":249912,"name":"Zomo-P Capsule","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Curelogic Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":249913,"name":"Zucure D 30mg/20mg Capsule","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Lavincita Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":249914,"name":"Zosta 5mg Tablet","price":62.1,"Is_discontinued":"TRUE","manufacturer_name":"USV Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Simvastatin (5mg)","short_composition2":""},{"id":249915,"name":"Zolent 1mg Tablet","price":34.35,"Is_discontinued":"FALSE","manufacturer_name":"Talent India ","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":249916,"name":"Zendrone 50mg Injection","price":21.25,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":249917,"name":"Z-Mont Kid 2.5mg/4mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Med Manor Organics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":249918,"name":"Zona 2mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Solvate Laboratries Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":249919,"name":"Zenotin Tablet","price":59.5,"Is_discontinued":"TRUE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (300mg)"},{"id":249920,"name":"ZIRAM AM 5 MG/2.5 MG CAPSULE","price":28,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amlodipine (5mg) ","short_composition2":" Ramipril (2.5mg)"},{"id":249921,"name":"Zitab 250mg Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Floreat Medica Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":249922,"name":"Zysma 100mg Capsule","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":249923,"name":"Z Flox 200mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Scoria Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249924,"name":"Zumik 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":249925,"name":"Zypraz 750mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (750mg)","short_composition2":""},{"id":249926,"name":"Zoepan 40mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Evax Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":249927,"name":"Ziscoril-LS Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg/5ml) ","short_composition2":" Levosalbutamol (1mg/5ml) "},{"id":249928,"name":"ZOSPRIN 150MG TABLET","price":7.9,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aspirin (150mg)","short_composition2":""},{"id":249929,"name":"Zyrab 20mg Injection","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249930,"name":"Zepatric 1mg Tablet MD","price":42.5,"Is_discontinued":"FALSE","manufacturer_name":"Cubit Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":249931,"name":"Zeodex-D Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":249932,"name":"Zencold Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (1mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":249933,"name":"Zitopod-CV Tablet","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249934,"name":"Zoviclovir 200mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Healing Pharma India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (200mg)","short_composition2":""},{"id":249935,"name":"Zolpam 0.25mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Neuracle Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":249936,"name":"Zoltina 200mg Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Sunniva Life Science","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ketoconazole (200mg)","short_composition2":""},{"id":249937,"name":"Ziotryp-AP Tablet","price":171,"Is_discontinued":"FALSE","manufacturer_name":"Bolivian Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249938,"name":"Zima 500 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Vishwak Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249939,"name":"Zestol 150mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Surge Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Oxcarbazepine (150mg)","short_composition2":""},{"id":249940,"name":"Zyclovin SP 100mg/325mg/15mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Jwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":249941,"name":"Zithran 100mg Oral Suspension","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Watran Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":249942,"name":"Zextra 600mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tolmetin (600mg)","short_composition2":""},{"id":249943,"name":"Zacin 200mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249944,"name":"Zolam 1.5mg Tablet SR","price":35.9,"Is_discontinued":"FALSE","manufacturer_name":"Stadmed Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Alprazolam (1.5mg)","short_composition2":""},{"id":249945,"name":"Zyromet G 2 Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":249946,"name":"Zolax 1mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":249947,"name":"Zeocef 200mg Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Alligate Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":249948,"name":"Zenclav 500mg/125mg Tablet","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249949,"name":"Zilamac 125 mg/125 mg Injection","price":332.37,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Imipenem (125mg) ","short_composition2":" Cilastatin (125mg)"},{"id":249950,"name":"Zidmin 5 mg/500 mg Tablet","price":140.52,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glipizide (5mg) ","short_composition2":" Metformin (500mg)"},{"id":249951,"name":"Zeegab M 1500mcg/75mg Tablet SR","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Precia Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":249952,"name":"Zanobid-OZ Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":249953,"name":"Zocyp Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Jchem Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg/5ml) ","short_composition2":" Tricholine Citrate (275mg/5ml)"},{"id":249954,"name":"Zion DS 125mg Oral Drops","price":125,"Is_discontinued":"FALSE","manufacturer_name":"I.I.F.A Health Care","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Drops","short_composition1":"Cefuroxime (125mg)","short_composition2":""},{"id":249955,"name":"Zion 250mg Tablet","price":295,"Is_discontinued":"FALSE","manufacturer_name":"I.I.F.A Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":249956,"name":"Zedoxy-CL 325 Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Zeelab Pharmacy Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249957,"name":"Zeocet L 5mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249958,"name":"Zoltil 600mg Tablet","price":216,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":249959,"name":"Zygolox Syrup","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zygal Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (50mg/5ml)","short_composition2":""},{"id":249960,"name":"Zovidac 5% Cream","price":53.37,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"tube of 5 gm Cream","short_composition1":"Acyclovir (5% w/w)","short_composition2":""},{"id":249961,"name":"Zrepag Rapid 1mg/0.3mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Daylon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Repaglinide (1mg) ","short_composition2":" Metformin (0.3mg)"},{"id":249962,"name":"Zefrox LB 200mg Tablet","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Allegiant Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (2.5Billion Spores)"},{"id":249963,"name":"Zaart 100mg Tablet","price":63.81,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (100mg)","short_composition2":""},{"id":249964,"name":"Z Plus Kid Tablet","price":216.23,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (NA) ","short_composition2":" Cloxacillin (NA)"},{"id":249965,"name":"ZEXATE 2.5 MG TABLET","price":41.25,"Is_discontinued":"TRUE","manufacturer_name":"Fresenius Kabi India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methotrexate (2.5mg)","short_composition2":""},{"id":249966,"name":"Zytel AM Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Amlodipine (5mg)"},{"id":249967,"name":"Zipac 10mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Isotretinoin (10mg)","short_composition2":""},{"id":249968,"name":"Zengat 0.3% Eye Drop","price":42.9,"Is_discontinued":"FALSE","manufacturer_name":"Klar Sehen Pvt Ltd","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Gatifloxacin (0.3% w/v)","short_composition2":""},{"id":249969,"name":"Zenom M 5 mg/10 mg Tablet","price":72.18,"Is_discontinued":"FALSE","manufacturer_name":"Mars Therapeutics & Chemicals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":249970,"name":"Zobet Forte 1mg Tablet","price":8.68,"Is_discontinued":"FALSE","manufacturer_name":"Rhombus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betamethasone (1mg)","short_composition2":""},{"id":249971,"name":"Zadimac HS 500mg/62.5mg Injection","price":127.65,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftazidime (500mg) ","short_composition2":" Tazobactum (62.5mg)"},{"id":249972,"name":"Zil 1000mg Tablet","price":25.45,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Tinidazole (1000mg)","short_composition2":""},{"id":249973,"name":"Zorglim MV 2 mg/500 mg/0.3 mg Tablet","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Instanz Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":249974,"name":"Zakkor 6mg Tablet","price":84.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenacts Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":249975,"name":"Zytrin 2mg Tablet","price":147.5,"Is_discontinued":"FALSE","manufacturer_name":"Stadmed Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Terazosin (2mg)","short_composition2":""},{"id":249976,"name":"Zenclor 125mg Suspension","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Cefaclor (125mg)","short_composition2":""},{"id":249977,"name":"Zoflo 200mg Tablet","price":55.2,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":249978,"name":"Zenti 10mg/40mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"G-Nine Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249979,"name":"Zogliz 80mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (80mg)","short_composition2":""},{"id":249980,"name":"Zolic 20mg Capsule","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Hinglaj Laboratories","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":249981,"name":"Zipcold-L Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Lifekyor Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Loratadine (2.5mg) "},{"id":249982,"name":"Zertigo 16mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Sunaxa Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (16mg)","short_composition2":""},{"id":249983,"name":"Zencold-Forte Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":249984,"name":"Zubicef O 200mg/200mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":249985,"name":"Zeotrin Tablet","price":38.45,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":249986,"name":"Zixime 200mg Tablet DT","price":132,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":249987,"name":"Ziplan 20mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Haloperidol (20mg)","short_composition2":""},{"id":249988,"name":"Zominol 75mg Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ranitidine (75mg)","short_composition2":""},{"id":249989,"name":"Zeox 500mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":249990,"name":"Zefcon 150mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Chemross Lifesciences","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":249991,"name":"Zemcy Soft Gelatin Capsule","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Rhophic Health Care","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Calcitriol (0.25mcg) ","short_composition2":" Calcium Carbonate (500mg) "},{"id":249992,"name":"Zedrac I 6mg/400mg Tablet","price":21,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":249993,"name":"Zestrab 20mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":249994,"name":"Zoecid Syrup","price":102,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"bottle of 170 ml Syrup","short_composition1":"Domperidone (10mg) ","short_composition2":" Magaldrate (480mg) "},{"id":249995,"name":"Zepan-D Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":249996,"name":"Zolinix Cream","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Saphnix Life Sciences","type":"allopathy","pack_size_label":"tube of 20 gm Cream","short_composition1":"Luliconazole (1% w/w)","short_composition2":""},{"id":249997,"name":"Zithrolen 500mg Tablet","price":60.6,"Is_discontinued":"FALSE","manufacturer_name":"Alencure Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":249998,"name":"Ziprax CL 200mg/125mg Tablet","price":210.5,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":249999,"name":"Zipral 20mg Capsule","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Lifecare Neuro Products Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (20mg)","short_composition2":""},{"id":250000,"name":"Zepcar 400mg Tablet CR","price":24.77,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Carbamazepine (400mg)","short_composition2":""},{"id":250001,"name":"Ziprax LB Tablet DT","price":97.55,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":250002,"name":"Zyclox 250 mg/250 mg Capsule","price":57.54,"Is_discontinued":"FALSE","manufacturer_name":"Divine Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ampicillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":250003,"name":"Zynol DM 10 mg/150 mg Tablet","price":5.26,"Is_discontinued":"FALSE","manufacturer_name":"Micro Labs Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Ranitidine (150mg)"},{"id":250004,"name":"Zopres 400mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Psychotropics India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Piracetam (400mg)","short_composition2":""},{"id":250005,"name":"Zydep 20mg Capsule","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Fluoxetine (20mg)","short_composition2":""},{"id":250006,"name":"Zoxicam 20mg Tablet","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Piroxicam (20mg)","short_composition2":""},{"id":250007,"name":"Zolecare 4mg Injection","price":4500,"Is_discontinued":"FALSE","manufacturer_name":"Medicare Remedies Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":250008,"name":"Zycef 500mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Teblik Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":250009,"name":"Zypkast LC 5mg/10mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250010,"name":"Zeptril 2mg Tablet DT","price":21,"Is_discontinued":"FALSE","manufacturer_name":"Glosun Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":250011,"name":"Zeflo OZ 200mg/500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Indo-Reh Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250012,"name":"Zimking 100mg Tablet","price":99.9,"Is_discontinued":"FALSE","manufacturer_name":"Aptus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250013,"name":"Zepil 0.5mg Tablet","price":12.42,"Is_discontinued":"FALSE","manufacturer_name":"Zeus Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250014,"name":"Zitocuf LS Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Levosalbutamol (1mg/5ml) ","short_composition2":" Ambroxol (30mg/5ml) "},{"id":250015,"name":"Zencus DM Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zencus Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":250016,"name":"Zorat 200 CR Tablet","price":32.2,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Sodium Valproate (134mg) ","short_composition2":" Valproic Acid (58mg)"},{"id":250017,"name":"Zarep 250mg Tablet","price":64.63,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250018,"name":"Zoxymox 250mg Capsule","price":23.9,"Is_discontinued":"FALSE","manufacturer_name":"Akme Biotec","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":250019,"name":"Zcorel LS Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Biophar Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg/5ml) ","short_composition2":" Levosalbutamol (1mg/5ml) "},{"id":250020,"name":"Zeotrazole 200mg Capsule","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":250021,"name":"Zeero SP 100mg/325mg/15mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Earl Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250022,"name":"Zitum 250mg Tablet","price":257,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":250023,"name":"Zerofen 200mg Tablet SR","price":49,"Is_discontinued":"FALSE","manufacturer_name":"R.B. Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":250024,"name":"Zednac SP 100mg/325mg/15mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250025,"name":"Zanclav Forte Dry Syrup","price":115.5,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (400mg) ","short_composition2":" Clavulanic Acid (57mg)"},{"id":250026,"name":"Zeritin Tablet","price":17.36,"Is_discontinued":"FALSE","manufacturer_name":"Plenteous Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":250027,"name":"Zomed 5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Emocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":250028,"name":"Zylocef T 1000 mg/125 mg Injection","price":159.93,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":250029,"name":"Zonde 2mg/5ml Syrup","price":39.77,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg/5ml)","short_composition2":""},{"id":250030,"name":"Zenoderm Ointment","price":12.5,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"tube of 5 gm Ointment","short_composition1":"Beclometasone (NA) ","short_composition2":" Neomycin (NA) "},{"id":250031,"name":"Zocare OZ 200 mg/500 mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250032,"name":"Zondan 4mg Tablet","price":71.61,"Is_discontinued":"FALSE","manufacturer_name":"Glaxo SmithKline Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":250033,"name":"Zivast L 10 mg/25 mg Tablet","price":32.78,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Losartan (25mg)"},{"id":250034,"name":"Zerosma 1mg Syrup","price":45.4,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ketotifen (1mg)","short_composition2":""},{"id":250035,"name":"Zovistar 400mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Monichem Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (400mg)","short_composition2":""},{"id":250036,"name":"Zacrol-SR Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":250037,"name":"Zelcort 4mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":250038,"name":"Zyclav Duo Suspension","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Divine Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Amoxycillin (400mg/5ml) ","short_composition2":" Clavulanic Acid (57mg/5ml)"},{"id":250039,"name":"Zylomet Nasal Drops","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Sonika Life Sciences Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Nasal Drops","short_composition1":"Xylometazoline (0.1% w/v)","short_composition2":""},{"id":250040,"name":"Zam 0.5mg Tablet","price":21,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250041,"name":"Zeox 200mg Tablet DT","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250042,"name":"Zioxim O 200mg/200mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250043,"name":"Zeulin Plus 500mg/800mg Tablet","price":599.9,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citicoline (500mg) ","short_composition2":" Piracetam (800mg)"},{"id":250044,"name":"Ziglip-M 50/850 Tablet","price":142.5,"Is_discontinued":"FALSE","manufacturer_name":"Prochem Bioceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Metformin (850mg) ","short_composition2":" Vildagliptin (50mg)"},{"id":250045,"name":"Zilcef CV 200mg/125mg Tablet","price":243,"Is_discontinued":"FALSE","manufacturer_name":"Raddison Health Care Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250046,"name":"Zafkof Syrup","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Spranza Vita Pharmaceutical LLP","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":250047,"name":"Zintovin-AX Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Integral Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":250048,"name":"Zinocarb 50mg Capsule","price":350,"Is_discontinued":"FALSE","manufacturer_name":"Miracalus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Procarbazine (50mg)","short_composition2":""},{"id":250049,"name":"Zericef-CZ Injection","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zerico Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":250050,"name":"Zyhep 100mg/150mg Tablet","price":48.01,"Is_discontinued":"FALSE","manufacturer_name":"Shreya Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pancreatin (100mg) ","short_composition2":" Ornithine (150mg)"},{"id":250051,"name":"Zornica Plus 8 mg/500 mg Tablet","price":69.8,"Is_discontinued":"FALSE","manufacturer_name":"Micro Labs Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg) ","short_composition2":" Paracetamol (500mg)"},{"id":250052,"name":"Zeemon Syrup","price":43.9,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Phenylephrine (5mg/5ml)"},{"id":250053,"name":"zaldicort 6mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Osseous Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250054,"name":"Zolit 40mg Tablet","price":50.6,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250055,"name":"Zithronid 500mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Nidus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250056,"name":"Zerobac OZ 200mg/500mg Tablet","price":62.4,"Is_discontinued":"FALSE","manufacturer_name":"Symbiosis Lab","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250057,"name":"Zincobal Forte 2500mcg Injection","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (2500mcg)","short_composition2":""},{"id":250058,"name":"Zumet 50mg Tablet XL","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Kyna Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet xl","short_composition1":"Metoprolol Succinate (50mg)","short_composition2":""},{"id":250059,"name":"Zep 5mg Tablet","price":47.5,"Is_discontinued":"FALSE","manufacturer_name":"Mission Research Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clobazam (5mg)","short_composition2":""},{"id":250060,"name":"Zepol Forte 12.5mg/5mg Tablet","price":13.4,"Is_discontinued":"FALSE","manufacturer_name":"Apex Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amitriptyline (12.5mg) ","short_composition2":" Chlordiazepoxide (5mg)"},{"id":250061,"name":"Zovidac 3% Eye Ointment","price":54.71,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"tube of 5 gm Eye Ointment","short_composition1":"Acyclovir (3% w/w)","short_composition2":""},{"id":250062,"name":"Zoflam MR 100mg/2mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Tizanidine (2mg)"},{"id":250063,"name":"Zynaclox 250mg/250mg Injection","price":12.48,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":250064,"name":"Zortec LM 5mg/10mg Tablet","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Laxter Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250065,"name":"Zeenodol P 100mg/325mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Kom-med Labrotories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250066,"name":"Zoliva 200 Capsule","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Mediva Lifecare","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":250067,"name":"Zolerock 4mg Injection","price":4485,"Is_discontinued":"FALSE","manufacturer_name":"Hillrock Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":250068,"name":"Zivotel 20mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Norlis Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (20mg)","short_composition2":""},{"id":250069,"name":"Zoltric 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Neosys Medicare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250070,"name":"Ziofen-SP Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250071,"name":"Zone DP 250mg/50mg/325mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"SBS Biosciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250072,"name":"Zili 500mg Tablet","price":69.68,"Is_discontinued":"FALSE","manufacturer_name":"Will Impex","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250073,"name":"Zuflo D Eye/Ear Drops","price":8.75,"Is_discontinued":"FALSE","manufacturer_name":"Morepen Laboratories Ltd","type":"allopathy","pack_size_label":"packet of 10 ml Eye/Ear Drops","short_composition1":"Ofloxacin (0.3%) ","short_composition2":" Dexamethasone (0.1%)"},{"id":250074,"name":"Zeben 400mg Tablet","price":10.66,"Is_discontinued":"FALSE","manufacturer_name":"Libra Drugs India","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250075,"name":"Zovane 40 Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Micro Labs Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Vilazodone (40mg)","short_composition2":""},{"id":250076,"name":"Zynacar Tablet","price":133.33,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sevelamer (400mg)","short_composition2":""},{"id":250077,"name":"Zoff 200mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250078,"name":"Zenase-DP Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250079,"name":"Zetcet Plus 500mg/25mg/2mg/30mg Tablet","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Positif Life sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol (500mg) ","short_composition2":" Phenylpropanolamine (25mg) "},{"id":250080,"name":"Zecoryl Syrup","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Cetirizine (2mg) ","short_composition2":" Paracetamol (125mg) "},{"id":250081,"name":"Zolnex 20mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Nex Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (20mg)","short_composition2":""},{"id":250082,"name":"Zeemox 500mg Capsule","price":76.8,"Is_discontinued":"FALSE","manufacturer_name":"Ce-Chem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":250083,"name":"Zaxid-D 30mg/20mg Capsule SR","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Akumentis Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250084,"name":"Zytus A Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Reantis Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":250085,"name":"Zyta 200mg Capsule","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":250086,"name":"Zovenac 50mg Tablet","price":18.59,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg)","short_composition2":""},{"id":250087,"name":"Zoryl MP LD 2mg/500mg/7.5mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":250088,"name":"Zenitra 200mg Capsule","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":250089,"name":"Zak Nerve Forte Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Luziac Life Sciences","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Niacinamide (100mg) "},{"id":250090,"name":"Zorix 1.5gm Injection","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Swizing Biosciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1.5gm)","short_composition2":""},{"id":250091,"name":"Zisan XL 100mg Oral Suspension","price":48.82,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250092,"name":"Zytaz PT 4000mg/500mg Injection","price":461.71,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":250093,"name":"Zaxaglit 5mg Tablet","price":432,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Saxagliptin (5mg)","short_composition2":""},{"id":250094,"name":"Zestgab NT 400mg/10mg Tablet","price":231,"Is_discontinued":"FALSE","manufacturer_name":"Hemmispheres Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (400mg) ","short_composition2":" Nortriptyline (10mg)"},{"id":250095,"name":"Zooma Mps Oral Suspension Mint","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Aluminium Hydroxide (200mg) ","short_composition2":" Dimethicone (25mg) "},{"id":250096,"name":"Zoetel 40mg Tablet","price":65.7,"Is_discontinued":"FALSE","manufacturer_name":"Arkas Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg)","short_composition2":""},{"id":250097,"name":"Zenipod 200mg Tablet DT","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":250098,"name":"Zakter 100mg Tablet DT","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Hetero Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250099,"name":"Zodiflam P 100mg/325mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"WellYou Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250100,"name":"Zycin AM 500 mg/60 mg Tablet","price":51.08,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg) ","short_composition2":" Ambroxol (60mg)"},{"id":250101,"name":"Zenithro 250mg Tablet","price":54.28,"Is_discontinued":"FALSE","manufacturer_name":"Zenobio Life Science","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250102,"name":"Zoflick-OZ Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Maverick Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (NA) ","short_composition2":" Ornidazole (NA)"},{"id":250103,"name":"Zvd 100mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Mcneil & Argus Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":250104,"name":"Zon 500mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Oscar Remedies Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":250105,"name":"Zygolox 100mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Zygal Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":250106,"name":"Zaccuten 20mg Soft Gelatin Capsule","price":177,"Is_discontinued":"FALSE","manufacturer_name":"Dermasense Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Isotretinoin (20mg)","short_composition2":""},{"id":250107,"name":"Zepentin-M 300mg/500mcg Tablet","price":99.9,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (500mcg)"},{"id":250108,"name":"Zeorab LS 75mg/20mg Capsule","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Morgen Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250109,"name":"Zobit D 10mg/20mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Ambit Bio Medix","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250110,"name":"Zitcold DS Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zither Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml) "},{"id":250111,"name":"Zolit 40mg Injection","price":43.38,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250112,"name":"Zome-D Capsule","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Desta Lifescience","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250113,"name":"Zorirab-DSR Capsule","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zorris Lifesciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250114,"name":"Zestol 300mg Tablet CR","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Surge Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Oxcarbazepine (300mg)","short_composition2":""},{"id":250115,"name":"Zenibast 10 Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zhenpi Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ebastine (10mg)","short_composition2":""},{"id":250116,"name":"Zerotral 100mg Capsule","price":148,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":250117,"name":"ZIRAM 1.25 MG CAPSULE","price":25.87,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ramipril (1.25mg)","short_composition2":""},{"id":250118,"name":"ZORDIL 4 MG TABLET DT","price":66.3,"Is_discontinued":"TRUE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":250119,"name":"Zeclop A 75 mg/75 mg Tablet","price":61.52,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aspirin (75mg) ","short_composition2":" Clopidogrel (75mg)"},{"id":250120,"name":"Zatrofix 200mg Tablet DT","price":109,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250121,"name":"Zimspor S 200mg/150mg Tablet","price":320,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Sulbactam (150mg)"},{"id":250122,"name":"Zirocin 200mg Syrup","price":46.5,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":250123,"name":"Zion CV 500mg/125mg Tablet","price":390,"Is_discontinued":"FALSE","manufacturer_name":"I.I.F.A Health Care","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250124,"name":"Zithmust 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Aconwell Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250125,"name":"Zelakot 6 Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250126,"name":"Zety 0.5mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.5mg)","short_composition2":""},{"id":250127,"name":"Zithrodol 250 Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Cure Tech Skincare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250128,"name":"Zemcy 60K Softgel Capsule","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Rhophic Health Care","type":"allopathy","pack_size_label":"strip of 4 soft gelatin capsules","short_composition1":"Vitamin D3 (60000IU)","short_composition2":""},{"id":250129,"name":"Zolgas 20mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Sargas Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Esomeprazole (20mg)","short_composition2":""},{"id":250130,"name":"Zivahale FB 6mcg/200mcg Capsule","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zivago Pharma Private Limited","type":"allopathy","pack_size_label":"bottle of 30 capsules","short_composition1":"Formoterol (6mcg) ","short_composition2":" Budesonide (200mcg)"},{"id":250131,"name":"Zithscot 250 Tablet","price":66.5,"Is_discontinued":"FALSE","manufacturer_name":"Scotwin Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250132,"name":"Zithscot 500 Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Scotwin Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250133,"name":"Zynoff 200mg Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Nri Vision Care India Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250134,"name":"Zacra A 5mg/60mg Tablet","price":49.2,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":250135,"name":"Zefan 250 mg/50 mg/500 mg Tablet MR","price":37.52,"Is_discontinued":"FALSE","manufacturer_name":"Zeus Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet mr","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250136,"name":"Zim 50mg Dry Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":250137,"name":"Zinir LB Tablet DT","price":77.5,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefdinir (100mg) ","short_composition2":" Lactobacillus (30Million Spores)"},{"id":250138,"name":"Zolarest 0.5mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Acto Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250139,"name":"Zyrcet 10mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Biotabs Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":250140,"name":"Zimdax 200mg Tablet DT","price":29.7,"Is_discontinued":"FALSE","manufacturer_name":"USV Ltd","type":"allopathy","pack_size_label":"strip of 6 tablet dt","short_composition1":"Nitazoxanide (200mg)","short_composition2":""},{"id":250141,"name":"Zythro 200mg Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":250142,"name":"Zisan CF Forte 200mg/500mg Tablet","price":269.9,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (500mg)"},{"id":250143,"name":"Zacra AM 75mg/5mg/10mg Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ambroxol (75mg) ","short_composition2":" Levocetirizine (5mg) "},{"id":250144,"name":"Zaceclo-P Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Ambrosia Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250145,"name":"Zenadryl CR Syrup","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Plenteous Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg) ","short_composition2":" Guaifenesin (100mg)"},{"id":250146,"name":"Zunalgia Plus Injection","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Folic Acid (0.7mg/ml) ","short_composition2":" Methylcobalamin (1500mcg/ml) "},{"id":250147,"name":"Zyra 20 Injection","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Syndicate Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250148,"name":"Zoon Plus Oral Emulsion Sugar Free","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Ultimate Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Oral Emulsion","short_composition1":"Sodium Picosulfate (3.33mg) ","short_composition2":" Liquid Paraffin (1.25ml) "},{"id":250149,"name":"Zolitrik 600 Tablet","price":740,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":250150,"name":"Z-Texel Injection","price":12689.97,"Is_discontinued":"FALSE","manufacturer_name":"BDR Pharmaceuticals Internationals Pvt","type":"allopathy","pack_size_label":"vial of 1.5 ml Powder for Injection","short_composition1":"Cabazitaxel (60mg)","short_composition2":""},{"id":250151,"name":"Zin 250mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Herbotics Research Inc","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250152,"name":"Zimox CV 200mg/28.5mg Tablet","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":250153,"name":"Zivotel CH 40mg/12.5mg Tablet","price":118,"Is_discontinued":"FALSE","manufacturer_name":"Norlis Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":250154,"name":"Zestron 5mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Agex Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norethisterone (5mg)","short_composition2":""},{"id":250155,"name":"Zevid OZ Syrup","price":36.1,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":250156,"name":"Zac 5mg Tablet","price":42.25,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clobazam (5mg)","short_composition2":""},{"id":250157,"name":"Zoftamic 500mg Injection","price":10.62,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":250158,"name":"Zolcin 200 mg/500 mg Tablet","price":88.3,"Is_discontinued":"FALSE","manufacturer_name":"Indian Drugs & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250159,"name":"Zetaglim M Forte 3mg/1000mg Tablet","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (3mg) ","short_composition2":" Metformin (1000mg)"},{"id":250160,"name":"Zerokuf Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Denmarc Remedies","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Chlorpheniramine Maleate (5mg/5ml) ","short_composition2":" Dextromethorphan Hydrobromide (10mg/5ml) "},{"id":250161,"name":"Zopod Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":250162,"name":"Zombistin 4.5MIU Injection","price":3884.55,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (4.5Million IU)","short_composition2":""},{"id":250163,"name":"Zictuss-X Syrup Mint","price":64.9,"Is_discontinued":"FALSE","manufacturer_name":"Hebert Biotech","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":250164,"name":"Zaq 40mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zaq Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250165,"name":"Zestoron 200mg Tablet SR","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Crinova Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Progesterone (200mg)","short_composition2":""},{"id":250166,"name":"Zib 100mg Tablet DT","price":104.95,"Is_discontinued":"FALSE","manufacturer_name":"Makers Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250167,"name":"Zbeta 40mg Tablet SR","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Propranolol (40mg)","short_composition2":""},{"id":250168,"name":"Zonflox-OZ Tablet","price":117,"Is_discontinued":"FALSE","manufacturer_name":"NV Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250169,"name":"Zerochol 80 Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Bsure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (80mg)","short_composition2":""},{"id":250170,"name":"Zydm 500mg Tablet","price":389,"Is_discontinued":"FALSE","manufacturer_name":"Remark Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":250171,"name":"Zaroz 250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Stately Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250172,"name":"Zatrocuf D Syrup","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":250173,"name":"Zilzip 2% Soap","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"box of 75 gm Soap","short_composition1":"Ketoconazole (2% w/w)","short_composition2":""},{"id":250174,"name":"Zyrab L 75mg/20mg Capsule","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250175,"name":"Zac 6mg Tablet","price":94.9,"Is_discontinued":"FALSE","manufacturer_name":"Dawson Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250176,"name":"Zinipan 40mg Tablet","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250177,"name":"Zyntap P 50 mg/325 mg Tablet","price":109,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tapentadol (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250178,"name":"Zylocef 200mg Tablet DT","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250179,"name":"Zoflut Ointment","price":93.58,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Fluticasone Propionate (0.05% w/w)","short_composition2":""},{"id":250180,"name":"Zigarab D Capsule","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Tulip Lab Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (NA) ","short_composition2":" Rabeprazole (NA)"},{"id":250181,"name":"Zemlid 600 Tablet","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Wecare Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":250182,"name":"Zoquine 250mg Tablet","price":338,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Mefloquine (250mg)","short_composition2":""},{"id":250183,"name":"Ziddivir 100mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Sain Medicaments Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":250184,"name":"Zemisol Infusion","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Claris Lifesciences Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Glycerin (10% w/v) ","short_composition2":" Mannitol (10% w/v)"},{"id":250185,"name":"Zulid 100mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Sierra Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":250186,"name":"Zenda 200mg Suspension","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":250187,"name":"Zithem 500mg Tablet","price":105.6,"Is_discontinued":"FALSE","manufacturer_name":"Asgard Labs Private Limited","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250188,"name":"Zolamed 0.5mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Medirin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.5mg)","short_composition2":""},{"id":250189,"name":"Zevolin 100mg Capsule","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Snu Biocare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":250190,"name":"Zolrab 20mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Stride Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250191,"name":"Zimanex 4mg Injection","price":3050,"Is_discontinued":"FALSE","manufacturer_name":"Metta Life Sciences Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":250192,"name":"Zuwarm 400mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250193,"name":"Zicort 6 Tablet","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250194,"name":"Zodon Oral Solution","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Rudolf Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Solution","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":250195,"name":"Zoryl 3mg Tablet","price":167,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (3mg)","short_composition2":""},{"id":250196,"name":"Zuraxim 250 Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Aishwarya Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":250197,"name":"Zerokuff Dmr Syrup","price":84.9,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Guaifenesin (100mg) ","short_composition2":" Chlorpheniramine Maleate (4mg) "},{"id":250198,"name":"Zoltil 100mg Dry Syrup","price":149.6,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Linezolid (100mg)","short_composition2":""},{"id":250199,"name":"Zalex 10mg Tablet MD","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Intigus Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (10mg)","short_composition2":""},{"id":250200,"name":"Zirox Kid 200mg Oral Suspension","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Sunroxx Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":250201,"name":"Zidrab-DSR Capsule","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250202,"name":"Zolaxin Tablet","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Invictus Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250203,"name":"Zystroin 20mg Capsule","price":178,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Isotretinoin (20mg)","short_composition2":""},{"id":250204,"name":"Zytel CH 80mg Tablet","price":117,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (80mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":250205,"name":"Zeclox D 250 mg/250 mg Capsule","price":66,"Is_discontinued":"FALSE","manufacturer_name":"A. Menarini India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":250206,"name":"Zorem-HT 5 Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (5mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":250207,"name":"Zepam 2mg Tablet MD","price":41.5,"Is_discontinued":"FALSE","manufacturer_name":"Psycormedies","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":250208,"name":"Zodem 2mg/5ml Syrup","price":44.41,"Is_discontinued":"FALSE","manufacturer_name":"Hygeia Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg/5ml)","short_composition2":""},{"id":250209,"name":"Zyrova D3 Tablet","price":131.9,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (5mg) ","short_composition2":" Vitamin D3 (1000IU)"},{"id":250210,"name":"Znr 10mg Tablet","price":95.22,"Is_discontinued":"FALSE","manufacturer_name":"Sundyota Numandis Probioceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (10mg)","short_composition2":""},{"id":250211,"name":"Zequin 300mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Quinine (300mg)","short_composition2":""},{"id":250212,"name":"Zelcaine Injection","price":16.58,"Is_discontinued":"FALSE","manufacturer_name":"PCI Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 30 ml Injection","short_composition1":"Lidocaine (NA)","short_composition2":""},{"id":250213,"name":"Zyitra 100mg Capsule","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Biochem Pharmaceutical Industries","type":"allopathy","pack_size_label":"strip of 7 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":250214,"name":"Zenta D 10mg/20mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Abron Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (20mg)"},{"id":250215,"name":"Zorat Syrup","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Sodium Valproate (200mg/5ml)","short_composition2":""},{"id":250216,"name":"Zuter A Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (15mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":250217,"name":"Zionac P 100mg/325mg Tablet","price":73.5,"Is_discontinued":"FALSE","manufacturer_name":"UHC Life Sciences","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250218,"name":"Zovimax CV 500mg/125mg Tablet","price":235,"Is_discontinued":"FALSE","manufacturer_name":"Kritikos Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250219,"name":"Zeflo 200mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Indo-Reh Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250220,"name":"Ziflu 20mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fluoxetine (20mg)","short_composition2":""},{"id":250221,"name":"Zectum 300mg Tablet","price":997,"Is_discontinued":"FALSE","manufacturer_name":"Scope Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Faropenem (300mg)","short_composition2":""},{"id":250222,"name":"Zidkof-LS Syrup","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg/5ml) ","short_composition2":" Levosalbutamol (1mg/5ml) "},{"id":250223,"name":"Zetel 40 Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg)","short_composition2":""},{"id":250224,"name":"Zestine Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (8mg)","short_composition2":""},{"id":250225,"name":"Ziopan P 100mg/325mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250226,"name":"Zelox 50mg Oral Suspension","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Croford Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Roxithromycin (50mg)","short_composition2":""},{"id":250227,"name":"Zetitor 10mg Tablet","price":57.6,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":250228,"name":"Zinac MR 100mg/4mg Tablet","price":166,"Is_discontinued":"FALSE","manufacturer_name":"Blismed Pharmaceuticals Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":250229,"name":"Zensome D 30mg/40mg Capsule SR","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zeno Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":250230,"name":"ZADRO 100MG DROP","price":16.11,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"packet of 10 ml Drop","short_composition1":"Cefadroxil (100mg)","short_composition2":""},{"id":250231,"name":"Zetaxim 1gm Injection","price":26.56,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Cefotaxime (1gm)","short_composition2":""},{"id":250232,"name":"Zofacin 100mg/5ml Syrup","price":26.9,"Is_discontinued":"FALSE","manufacturer_name":"Shine Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250233,"name":"ZYDICLO 1% GEL","price":12.5,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"tube of 30 gm Gel","short_composition1":"Diclofenac (1% w/w)","short_composition2":""},{"id":250234,"name":"Zoran 150mg Injection","price":3.18,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ranitidine (150mg)","short_composition2":""},{"id":250235,"name":"Zpac 100mg Injection","price":2267.57,"Is_discontinued":"FALSE","manufacturer_name":"RPG Life Sciences Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Paclitaxel (100mg)","short_composition2":""},{"id":250236,"name":"Zebate-M Ointment","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Miconazole (2% w/w) "},{"id":250237,"name":"Zeflurin 10mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flunarizine (10mg)","short_composition2":""},{"id":250238,"name":"Zmox 250mg Capsule","price":62.55,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":250239,"name":"Zolex P 40mg Injection","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Medix Biocare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250240,"name":"Zoyclo-S Lotion","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Lotion","short_composition1":"Clobetasol (0.05% w/v) ","short_composition2":" Salicylic Acid (3% w/v)"},{"id":250241,"name":"Zido H 100mg Capsule","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Genix Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":250242,"name":"Zitropid 250mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Rapidchem Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250243,"name":"Zumace-P Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250244,"name":"Zolekam 200 Capsule","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Kamcure Biotech","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":250245,"name":"Zed Flu Oral Suspension","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zedlon Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (1mg) ","short_composition2":" Paracetamol (125mg) "},{"id":250246,"name":"Zesone 0.05% Cream","price":85,"Is_discontinued":"FALSE","manufacturer_name":"AS Lifesciences","type":"allopathy","pack_size_label":"tube of 30 gm Cream","short_composition1":"Clobetasol (0.05% w/w)","short_composition2":""},{"id":250247,"name":"Zoeclav Dry Syrup","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":250248,"name":"Zelglip 20mg Tablet","price":113.3,"Is_discontinued":"FALSE","manufacturer_name":"Bionext Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Teneligliptin (20mg)","short_composition2":""},{"id":250249,"name":"Zety 0.25mg Tablet","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.25mg)","short_composition2":""},{"id":250250,"name":"Zomed 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Emocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250251,"name":"Zortimox 500mg/125mg Tablet","price":101,"Is_discontinued":"FALSE","manufacturer_name":"Cortina Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250252,"name":"Zyclog Ointment","price":76.93,"Is_discontinued":"FALSE","manufacturer_name":"Zyris Derma Care (P) Ltd","type":"allopathy","pack_size_label":"tube of 20 gm Ointment","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Neomycin (0.5% w/w)"},{"id":250253,"name":"Zymocef 1.5gm Injection","price":215,"Is_discontinued":"FALSE","manufacturer_name":"Venus Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1.5gm)","short_composition2":""},{"id":250254,"name":"Zulpride 50mg Tablet","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amisulpride (50mg)","short_composition2":""},{"id":250255,"name":"Zix 50mg Tablet","price":27.79,"Is_discontinued":"FALSE","manufacturer_name":"Jenburkt Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (50mg)","short_composition2":""},{"id":250256,"name":"ZOVAX KID 500MG TABLET","price":17.03,"Is_discontinued":"TRUE","manufacturer_name":"Deys Medical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":250257,"name":"Zoloid 0.25mg Tablet","price":19.75,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":250258,"name":"Zevid 400mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":250259,"name":"Zymotrip Forte Tablet","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Trypsin Chymotrypsin (100000AU)","short_composition2":""},{"id":250260,"name":"Zithrobell 500 Tablet","price":86.6,"Is_discontinued":"FALSE","manufacturer_name":"Bal Pharma Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250261,"name":"Zilpres 80 Tablet","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Aristo Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":250262,"name":"Zitromycin 500mg Tablet","price":94.1,"Is_discontinued":"FALSE","manufacturer_name":"Ordain Health Care Global Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250263,"name":"Zicarb 200mg Injection","price":450,"Is_discontinued":"FALSE","manufacturer_name":"Neon Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Dacarbazine (200mg)","short_composition2":""},{"id":250264,"name":"Zapiton Syrup","price":93,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg) ","short_composition2":" Tricholine Citrate (275mg)"},{"id":250265,"name":"Zolben 400mg Tablet","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Dynamic Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250266,"name":"Zolect 6mg/400mg Tablet","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Sarthi Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":250267,"name":"Ziticox MR 60mg/4mg Tablet","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Myriad Hues Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (60mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":250268,"name":"Zinivog GM 1mg/500mg/0.3mg Tablet","price":92.4,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg) "},{"id":250269,"name":"Zidom 20mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250270,"name":"Zyvana M 2 Forte Tablet PR","price":112.5,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 15 Tablet pr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (1000mg)"},{"id":250271,"name":"Zam 1mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":250272,"name":"Zetax O 50mg Dry Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":250273,"name":"Zoyawel 600 Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Linezolid (400mg)","short_composition2":""},{"id":250274,"name":"Zobid R 100mg/20mg Capsule","price":48.09,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Diclofenac (100mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250275,"name":"Zonex 500mg/500mg Injection","price":187.5,"Is_discontinued":"FALSE","manufacturer_name":"Axodin Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250276,"name":"Zyretec OD 10mg Tablet","price":18.14,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":250277,"name":"Zester 150mg Injection","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Cure Kelvin","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Arteether (150mg)","short_composition2":""},{"id":250278,"name":"Ziftor 200 DT Tablet","price":107.18,"Is_discontinued":"FALSE","manufacturer_name":"Prector Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250279,"name":"Zoec Cold Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Phenylephrine (10mg) "},{"id":250280,"name":"Zoteg 1000mg Injection","price":264,"Is_discontinued":"FALSE","manufacturer_name":"Suncure Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg)","short_composition2":""},{"id":250281,"name":"Zunaglim MV 1mg/500mg/0.2mg Tablet","price":103,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg) "},{"id":250282,"name":"Zypine MD 10mg Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (10mg)","short_composition2":""},{"id":250283,"name":"Zefdinir Suspension","price":97.12,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Cefdinir (125mg/5ml)","short_composition2":""},{"id":250284,"name":"Zogli 15mg/1mg Tablet","price":49.58,"Is_discontinued":"FALSE","manufacturer_name":"Ordain Health Care Global Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (15mg) ","short_composition2":" Glimepiride (1mg)"},{"id":250285,"name":"Ziox 500mg Tablet","price":61.06,"Is_discontinued":"FALSE","manufacturer_name":"Centaur Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250286,"name":"Zesunate Kit","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"box of 1 Kit","short_composition1":"Artesunate (100mg) ","short_composition2":" Sulphadoxine (500mg) "},{"id":250287,"name":"Zetam Suspension","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"bottle of 100 ml Suspension","short_composition1":"Piracetam (500mg/5ml)","short_composition2":""},{"id":250288,"name":"Zolnex-D 10mg/40mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Nex Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250289,"name":"ZCIL 250MG CAPSULE","price":27.22,"Is_discontinued":"FALSE","manufacturer_name":"Aurobindo Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ampicillin (250mg)","short_composition2":""},{"id":250290,"name":"Zolax 10mg Capsule","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Shiwalic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250291,"name":"Zola Plus 0.25mg/40mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Lemford Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.25mg) ","short_composition2":" Propranolol (40mg)"},{"id":250292,"name":"Ziblonac SP 100mg/325mg/15mg Tablet","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Arkle Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250293,"name":"Zeraz 500mg Tablet","price":59.5,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250294,"name":"Zepa 40mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zetek Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250295,"name":"Zividone-O Ointment","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"tube of 20 gm Ointment","short_composition1":"Povidone Iodine (5% w/w) ","short_composition2":" Ornidazole (1% w/w)"},{"id":250296,"name":"Zuroxim 250mg Tablet","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Sygnus Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":250297,"name":"Zidden 1000mg Injection","price":315,"Is_discontinued":"FALSE","manufacturer_name":"BMW Pharmaco India Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":250298,"name":"Zilneu 5mg Tablet","price":35,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cilnidipine (5mg)","short_composition2":""},{"id":250299,"name":"Zumlobet-NM Cream","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Miconazole (2% w/w) "},{"id":250300,"name":"Ziglip 50 Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Prochem Bioceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Vildagliptin (50mg)","short_composition2":""},{"id":250301,"name":"Zel 100mg Tablet DT","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Eltis Organics","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":250302,"name":"Zaroz 500mg Tablet","price":67.8,"Is_discontinued":"FALSE","manufacturer_name":"Stately Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250303,"name":"Zinus 10mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Cronus Biotech Ltd","type":"allopathy","pack_size_label":"strip of 20 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":250304,"name":"Zorem Plus 2.5mg/50mg/12.5mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (2.5mg) ","short_composition2":" Losartan (50mg) "},{"id":250305,"name":"Zeswin 40mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250306,"name":"Zeroclot 20mg Tablet","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Tas Med India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Rivaroxaban (20mg)","short_composition2":""},{"id":250307,"name":"Zeolen MT Forte 1000mg/20mg Tablet SR","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (1000mg) ","short_composition2":" Teneligliptin (20mg)"},{"id":250308,"name":"Ziplan 5mg Tablet","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Haloperidol (5mg)","short_composition2":""},{"id":250309,"name":"Zelcof-DX Syrup","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Dextromethorphan Hydrobromide (10mg)"},{"id":250310,"name":"Zofacin 250mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Shine Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250311,"name":"Zytel CH 40mg Tablet","price":77.5,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":250312,"name":"Zime 100mg Tablet","price":119.92,"Is_discontinued":"FALSE","manufacturer_name":"Siomond Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250313,"name":"Zega 100mg Tablet","price":21.22,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":250314,"name":"Zycillin 500mg Injection","price":9,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ampicillin (500mg)","short_composition2":""},{"id":250315,"name":"Zurvast D 10mg/1000IU Tablet","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Europa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (10mg) ","short_composition2":" Vitamin D3 (1000IU)"},{"id":250316,"name":"ZYX 200mg Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"HRD Supra Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":250317,"name":"Zytil 500mg Tablet","price":485,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":250318,"name":"Zenta DSR 30mg/20mg Capsule","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Abron Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (20mg)"},{"id":250319,"name":"Zofixim 200mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zorex Pharma Pvt Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250320,"name":"Zeed 30mg Tablet","price":330,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":250321,"name":"Zebimox-CV 625 Tablet","price":119.9,"Is_discontinued":"FALSE","manufacturer_name":"Zeaxa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":250322,"name":"Zyflox 200mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Himsagar Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250323,"name":"Zixime LB 200mg Tablet","price":143,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":250324,"name":"Zoldac 1mg Tablet","price":19.51,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":250325,"name":"Zielu 1% Cream","price":279,"Is_discontinued":"FALSE","manufacturer_name":"Ziel Pharmaceuticals","type":"allopathy","pack_size_label":"tube of 30 gm Cream","short_composition1":"Luliconazole (1% w/w)","short_composition2":""},{"id":250326,"name":"Zunatel H 40mg/12.5mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":250327,"name":"Zeozol Plus 6mg/400mg Tablet","price":15.96,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":250328,"name":"Zac Plus 100mg/325mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Corvin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250329,"name":"Zentra 200mg Capsule","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":250330,"name":"Zeogesic SP 100mg/325mg/15mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250331,"name":"Zyset 2mg Injection","price":48.29,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":250332,"name":"Z Met 50mg Tablet SR","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metoprolol Succinate (50mg)","short_composition2":""},{"id":250333,"name":"Zenpride OD 75mg Tablet","price":125,"Is_discontinued":"TRUE","manufacturer_name":"Eris Lifesciences Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levosulpiride (75mg)","short_composition2":""},{"id":250334,"name":"Zylip 10mg Tablet","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":250335,"name":"Zytax AZ Plus 200mg/250mg Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":250336,"name":"Zuptor Asp 10mg/75mg Capsule","price":68.1,"Is_discontinued":"FALSE","manufacturer_name":"Benique Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Rosuvastatin (10mg) ","short_composition2":" Aspirin (75mg)"},{"id":250337,"name":"Zimspor O 200mg/200mg Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250338,"name":"Zipime 1000mg Injection","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Galpha Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg)","short_composition2":""},{"id":250339,"name":"Zoprox CV Dry Syrup","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":250340,"name":"Zator 5mg Tablet","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (5mg)","short_composition2":""},{"id":250341,"name":"Zulfy-M Oral Suspension","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Metronidazole (120mg/5ml) "},{"id":250342,"name":"Zumpan D 30mg/40mg Capsule SR","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250343,"name":"Zolip 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"PJ Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250344,"name":"Zexime 200 DT Tablet","price":143,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":250345,"name":"Zerimox-CV Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Morstella Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250346,"name":"Zolox 400mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"Retec Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250347,"name":"Zonemox 500mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Medizone","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":250348,"name":"Zipnexa MF Tablet","price":335,"Is_discontinued":"FALSE","manufacturer_name":"Curezip Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tranexamic Acid (500mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":250349,"name":"Zurifin 0.25% Cream","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Glee Pharma Private Limited","type":"allopathy","pack_size_label":"tube of 30 gm Cream","short_composition1":"Amorolfine (0.25% w/w)","short_composition2":""},{"id":250350,"name":"Zonclav 625 Tablet","price":134,"Is_discontinued":"FALSE","manufacturer_name":"SAG Health Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250351,"name":"Zacts 250mg Tablet","price":110.83,"Is_discontinued":"FALSE","manufacturer_name":"Zenacts Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250352,"name":"Zeroclot 15mg Tablet","price":315,"Is_discontinued":"FALSE","manufacturer_name":"Tas Med India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Rivaroxaban (15mg)","short_composition2":""},{"id":250353,"name":"Ziotran-MF Tablet","price":249,"Is_discontinued":"FALSE","manufacturer_name":"Salveo Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tranexamic Acid (500mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":250354,"name":"Zyline TR 5mg/400mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Terbutaline (5mg) ","short_composition2":" Doxofylline (400mg)"},{"id":250355,"name":"Zyrona 5mg/100ml Infusion","price":6500,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Zoledronic acid (5mg/100ml)","short_composition2":""},{"id":250356,"name":"Ziox 100mg/5ml Suspension","price":28.02,"Is_discontinued":"FALSE","manufacturer_name":"Centaur Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250357,"name":"Zycoser-DP Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zycuslife Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250358,"name":"Zopride 4mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":250359,"name":"Zopride 16mg Tablet","price":146,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":250360,"name":"Zolgas D 30mg/40mg Capsule SR","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Sargas Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":250361,"name":"Zovisert 50 Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sertraline (50mg)","short_composition2":""},{"id":250362,"name":"Zefun 200mg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"S H Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Fluconazole (200mg)","short_composition2":""},{"id":250363,"name":"Zylomak 100mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Trimak Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":250364,"name":"Zenover 5mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Evershine Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250365,"name":"Zunaglim MV 2mg/500mg/0.2mg Tablet","price":122,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":250366,"name":"Zolark 0.5mg Tablet","price":14.5,"Is_discontinued":"FALSE","manufacturer_name":"Konark Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250367,"name":"Zeritak 50mg/10mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Sanbury Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":250368,"name":"Zypcort 6mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250369,"name":"Zimnex CV 200mg/125mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Ultratech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250370,"name":"Zofix 50 Dry Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":250371,"name":"Zebi 20 Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250372,"name":"Zeocet-M Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":250373,"name":"Zaipan D 10mg/20mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Medswap Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (20mg)"},{"id":250374,"name":"Zenecet Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Sanes Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250375,"name":"Zaxime Injection","price":481.48,"Is_discontinued":"FALSE","manufacturer_name":"Makers Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":250376,"name":"Ziclave 500mg/125mg Tablet","price":118.08,"Is_discontinued":"FALSE","manufacturer_name":"Zivago Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250377,"name":"Zolvent Nasal Spray","price":537,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"pump bottle of 7 MDI Nasal Spray","short_composition1":"Zolmitriptan (5% w/w)","short_composition2":""},{"id":250378,"name":"Zilee 750mg Tablet","price":43.7,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (750mg)","short_composition2":""},{"id":250379,"name":"Ziddi 500 mg/62.5 mg Injection","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Themis Medicare Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Ceftazidime (500mg) ","short_composition2":" Tazobactum (62.5mg)"},{"id":250380,"name":"Zithium 100mg Tablet DT","price":15.55,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 3 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":250381,"name":"Zidohope 300mg Tablet","price":996.97,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 tablets","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":250382,"name":"Z Pod 100mg Tablet DT","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":250383,"name":"Zeroflu Tablet","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Atlantic Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":250384,"name":"Zapan-D 10mg/20mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"G.M.H. Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (20mg)"},{"id":250385,"name":"Zanoflox 50mg Syrup","price":24.5,"Is_discontinued":"FALSE","manufacturer_name":"Mediwin Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":250386,"name":"Zencip 500mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Zensar Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":250387,"name":"Zarp-D Capsule SR","price":128.97,"Is_discontinued":"FALSE","manufacturer_name":"Teknovations Life Science","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250388,"name":"Zolaco 200mg Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lacosamide (200mg)","short_composition2":""},{"id":250389,"name":"Zixif LB 200mg Tablet","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million Spores)"},{"id":250390,"name":"Zo Joint 500mg/50mg/50mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glucosamine (500mg) ","short_composition2":" Diacerein (50mg) "},{"id":250391,"name":"Zornif 200mg/500mg Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Vasu Organics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250392,"name":"Zethyl-G Capsule","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Tanzer Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (750mcg)"},{"id":250393,"name":"Zensartan Trio 40mg/5mg/12.5mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Amlodipine (5mg) "},{"id":250394,"name":"Zadumol 650 Tablet","price":18.5,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol (650mg)","short_composition2":""},{"id":250395,"name":"Zovixim Syrup","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Quantum Formulations","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":250396,"name":"Zep 200mg Tablet","price":16.99,"Is_discontinued":"FALSE","manufacturer_name":"Lifecare Innovations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Carbamazepine (200mg)","short_composition2":""},{"id":250397,"name":"ZY 250mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Biocore Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250398,"name":"Zextron 4mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Nimbles Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":250399,"name":"Zepcar 200mg Tablet CR","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Carbamazepine (200mg)","short_composition2":""},{"id":250400,"name":"Zofix CV 100mg/62.5mg Tablet DT","price":125.75,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":250401,"name":"Z Flox OZ 200mg/500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Scoria Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250402,"name":"Zithro Oral Suspension","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Ritz Pharma","type":"allopathy","pack_size_label":"packet of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250403,"name":"Zingmet-G2 Tablet SR","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Inolife Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (1000mg)"},{"id":250404,"name":"Zipclave 500mg/125mg Tablet","price":199.95,"Is_discontinued":"FALSE","manufacturer_name":"Curezip Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250405,"name":"Ziltax 80 Tablet","price":135,"Is_discontinued":"TRUE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":250406,"name":"Zylotis 100 Tablet","price":18.48,"Is_discontinued":"FALSE","manufacturer_name":"Scott Edil Pharmacia Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":250407,"name":"Zycillin 250mg Capsule","price":16.25,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ampicillin (250mg)","short_composition2":""},{"id":250408,"name":"ZOVAX 125MG TABLET DT","price":36,"Is_discontinued":"TRUE","manufacturer_name":"Deys Medical","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Amoxycillin (125mg)","short_composition2":""},{"id":250409,"name":"Zosecta DSR 30mg/20mg Capsule","price":119.9,"Is_discontinued":"FALSE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (20mg)"},{"id":250410,"name":"Zubacef 250 mg/31.25 mg Injection","price":52.1,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":250411,"name":"Zolase 5mg/5ml Syrup","price":31.82,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Cetirizine (5mg/5ml)","short_composition2":""},{"id":250412,"name":"ZEN 300mg Tablet SR","price":24.5,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Carbamazepine (300mg)","short_composition2":""},{"id":250413,"name":"Zefix 50mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Meditek India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":250414,"name":"Zencid 400mg Tablet","price":12.25,"Is_discontinued":"FALSE","manufacturer_name":"Helax Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250415,"name":"Zinflox T 500mg/600mg Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":250416,"name":"Zedpan 40mg Tablet","price":84.9,"Is_discontinued":"FALSE","manufacturer_name":"Zedwell Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250417,"name":"Zosep 250mg Tablet DT","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Zorex Pharma Pvt Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefalexin (250mg)","short_composition2":""},{"id":250418,"name":"Zenodex 500mg/50mg/500mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Izen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (500mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250419,"name":"Zonact 1000mg/500mg Injection","price":264.5,"Is_discontinued":"FALSE","manufacturer_name":"Vintas Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250420,"name":"Zotic Syrup","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Progressive Life Care","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg) ","short_composition2":" Tricholine Citrate (275mg)"},{"id":250421,"name":"Zitaz 250mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"SA Remedies","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250422,"name":"Zypcid SO Syrup","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":250423,"name":"Zoycort 6mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Biobrick Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250424,"name":"Zicfi 100mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250425,"name":"Zovid TN 400mg/600mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Vivid Labs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg) ","short_composition2":" Tinidazole (600mg)"},{"id":250426,"name":"Zofactum 1000mg/500mg Injection","price":395,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250427,"name":"Zoltric 25mg Tablet","price":39.45,"Is_discontinued":"FALSE","manufacturer_name":"Cubit Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sertraline (25mg)","short_composition2":""},{"id":250428,"name":"Zitomox-CV 625 Tablet","price":144,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250429,"name":"Zelxiga 10mg Tablet","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Hauz Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 14 tablets","short_composition1":"Dapagliflozin (10mg)","short_composition2":""},{"id":250430,"name":"Zoecef 200mg Tablet","price":107,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250431,"name":"Zogodol-R Capsule SR","price":136,"Is_discontinued":"FALSE","manufacturer_name":"Zomask Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250432,"name":"Zitamax Injection","price":60.5,"Is_discontinued":"FALSE","manufacturer_name":"Aishwarya Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":250433,"name":"Zekmef-DS Oral Suspension Mango","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Medbaxy Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (100mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml)"},{"id":250434,"name":"Zipod X 1000mg Injection","price":57.73,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":250435,"name":"Z Ozole DD 10mg/20mg Capsule","price":44.29,"Is_discontinued":"FALSE","manufacturer_name":"Gujarat Terce Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250436,"name":"Zirlon L 5mg Tablet","price":33.05,"Is_discontinued":"FALSE","manufacturer_name":"Waves Bio-Tech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250437,"name":"Zyvana M2 Tablet SR","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":250438,"name":"Zerocid 20mg Capsule","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Corvin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250439,"name":"Zalep 5mg Capsule","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zaleplon (5mg)","short_composition2":""},{"id":250440,"name":"Zopen D 10 mg/40 mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Kentreck Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250441,"name":"Zealata 400mg Tablet","price":3454.5,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Imatinib mesylate (400mg)","short_composition2":""},{"id":250442,"name":"Zeftil O 100mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":250443,"name":"Zocip 500mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Wintech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":250444,"name":"Zuath 500mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Positif Life sciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250445,"name":"Zontis MR Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Octavius Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250446,"name":"Zaxim 200mg Tablet","price":199.5,"Is_discontinued":"FALSE","manufacturer_name":"Beckcem Drug International Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250447,"name":"Zeftil-CV Tablet","price":173.64,"Is_discontinued":"FALSE","manufacturer_name":"Lifeline Remedies India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250448,"name":"Zefobact 1.5gm Injection","price":265,"Is_discontinued":"FALSE","manufacturer_name":"Cue Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250449,"name":"Ziotil 200 Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":250450,"name":"Zoricet-M Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zorris Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250451,"name":"Zemakool OD 1200mg Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Mesalazine (1200mg)","short_composition2":""},{"id":250452,"name":"Zoloxy 150mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Kioxy Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":250453,"name":"Zofi OZ 200mg/500mg Tablet","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg) "},{"id":250454,"name":"Zocmoxy 625 LB Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":250455,"name":"Zimocin 250mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Abia Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250456,"name":"Zidomet Cream","price":121,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"tube of 20 gm Cream","short_composition1":"Hydroquinone (2% w/w) ","short_composition2":" Mometasone (0.1% w/w) "},{"id":250457,"name":"Zoran 250mg Tablet","price":66.6,"Is_discontinued":"FALSE","manufacturer_name":"I.I.F.A Health Care","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250458,"name":"Zac-AQ Injection","price":23.5,"Is_discontinued":"FALSE","manufacturer_name":"Instant Remedies Pvt Ltd","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":250459,"name":"Zescort-PD Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zesstek Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":250460,"name":"Zatin H 50 mg/12.5 mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Thrift Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":250461,"name":"Zibose-M 0.3 Tablet SR","price":55,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg) ","short_composition2":" Voglibose (0.3mg)"},{"id":250462,"name":"Zytak 25mg Injection","price":2.5,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ranitidine (25mg)","short_composition2":""},{"id":250463,"name":"Zolipax 1mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Reliance Formulation Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":250464,"name":"Zilneu T 10 mg/40 mg Tablet","price":90,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cilnidipine (10mg) ","short_composition2":" Telmisartan (40mg)"},{"id":250465,"name":"Zenlong 16mg Tablet SR","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Lornoxicam (16mg)","short_composition2":""},{"id":250466,"name":"Zepin 300mg Tablet SR","price":29.96,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Carbamazepine (300mg)","short_composition2":""},{"id":250467,"name":"Zypace P 100mg/325mg Tablet","price":34.2,"Is_discontinued":"FALSE","manufacturer_name":"Evaxo Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250468,"name":"Zax 500mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":250469,"name":"Zed Syrup","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Esquire Drug House","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Phenylpropanolamine (12.5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":250470,"name":"Zuritorva 20mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zurinovo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":250471,"name":"Zesmocar D Capsule SR","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Carmentis Health Care","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":250472,"name":"Zixime O 200mg/200mg Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250473,"name":"Zeucor CV 5mg/75mg Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 tablets","short_composition1":"Rosuvastatin (5mg) ","short_composition2":" Clopidogrel (75mg)"},{"id":250474,"name":"Zopipure 1 Tablet","price":42.75,"Is_discontinued":"FALSE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Eszopiclone (1mg)","short_composition2":""},{"id":250475,"name":"Zanroxim 200mg Tablet","price":118,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250476,"name":"Zozith 250 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Styla Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250477,"name":"Zestol 450mg Tablet CR","price":174,"Is_discontinued":"FALSE","manufacturer_name":"Surge Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Oxcarbazepine (450mg)","short_composition2":""},{"id":250478,"name":"Zizant 3MIU Injection","price":3383,"Is_discontinued":"FALSE","manufacturer_name":"Biological E Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (3Million IU)","short_composition2":""},{"id":250479,"name":"Zironi 10 Tablet","price":24.5,"Is_discontinued":"FALSE","manufacturer_name":"Exsiva Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amitriptyline (10mg)","short_composition2":""},{"id":250480,"name":"Zolsan 5mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Shatayushi Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":250481,"name":"Zerogerd D 30mg/20mg Capsule SR","price":178.5,"Is_discontinued":"FALSE","manufacturer_name":"Medstry Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250482,"name":"Zenecet L 5mg/10mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Sanes Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250483,"name":"Zemcy-K2 Softgel Capsule","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Rhophic Health Care","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Calcitriol (0.25mcg) ","short_composition2":" Calcium Carbonate (625mg) "},{"id":250484,"name":"Zidnac-SP Tablet","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250485,"name":"Zithoter 100 Oral Suspension","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Terra Pharma Private Limited","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":250486,"name":"Zithran 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Watran Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":250487,"name":"Zitis 250mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Scortis Lab Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250488,"name":"Zeefix CV 200mg/125mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250489,"name":"Zimtel 20mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Zim Laboratories Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (20mg)","short_composition2":""},{"id":250490,"name":"Zucet-AM Syrup","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ambroxol (30mg) ","short_composition2":" Levocetirizine (2.5mg) "},{"id":250491,"name":"Zetaglim 1mg Tablet","price":36.5,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg)","short_composition2":""},{"id":250492,"name":"Zolopan D 30mg/40mg Capsule SR","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Avni Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250493,"name":"Zolin Mint 50ml Lotion","price":50,"Is_discontinued":"FALSE","manufacturer_name":"MHS Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 50 ml Lotion","short_composition1":"Povidone Iodine (5% w/w)","short_composition2":""},{"id":250494,"name":"Zometra 20mg Capsule","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Ryze Lifecare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250495,"name":"Zanoflox OZ 50mg/125mg Suspension","price":31.25,"Is_discontinued":"FALSE","manufacturer_name":"Mediwin Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":250496,"name":"Zacrol TP 4mg/100mg/325mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Thiocolchicoside (4mg) ","short_composition2":" Aceclofenac (100mg) "},{"id":250497,"name":"Zenof 200mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Izen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Lactobacillus (100Million spores)"},{"id":250498,"name":"Zanin 500mg Injection","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Hydroxyprogesterone (500mg)","short_composition2":""},{"id":250499,"name":"Zicfi Dry Syrup","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":250500,"name":"Zerox 500mg Injection","price":42.5,"Is_discontinued":"FALSE","manufacturer_name":"Pharmacon Gignos","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":250501,"name":"Zobend 400mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250502,"name":"Zacome Plus Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Medifaith Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Niacinamide (100mg) "},{"id":250503,"name":"Zeltum CV 500mg/125mg Tablet","price":600,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"bottle of 10 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250504,"name":"Zomax 125mg Tablet","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (125mg)","short_composition2":""},{"id":250505,"name":"Zavinex 3MIU Injection","price":1175,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Interferon Alpha 2B (3miu)","short_composition2":""},{"id":250506,"name":"Zinver 16mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Meridian Medicare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (16mg)","short_composition2":""},{"id":250507,"name":"Zenof 400mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":250508,"name":"Zerocin 250mg Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"Zennar Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clarithromycin (250mg)","short_composition2":""},{"id":250509,"name":"Zupred 4mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":250510,"name":"Zaxaglit M 5mg/1000mg Tablet","price":510,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Saxagliptin (5mg) ","short_composition2":" Metformin (1000mg)"},{"id":250511,"name":"Zotop 40mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Otik Biotec","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250512,"name":"Zycin 100mg Redimix Suspension","price":21.06,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Redimix Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250513,"name":"Z Cox 90mg Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (90mg)","short_composition2":""},{"id":250514,"name":"Zebol 25mg Injection","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":250515,"name":"Zocin 100mg Tablet","price":23.9,"Is_discontinued":"FALSE","manufacturer_name":"Winsome Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":250516,"name":"Zombistin Forte 2MIU Injection","price":1987.5,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (2Million IU)","short_composition2":""},{"id":250517,"name":"Zeftrizal 1.5gm Injection","price":161.25,"Is_discontinued":"FALSE","manufacturer_name":"Akesiss Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250518,"name":"Zovax LB Capsule","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Deys Medical","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":250519,"name":"Zensartan 80mg Tablet","price":50.37,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (80mg)","short_composition2":""},{"id":250520,"name":"Zikti 500mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Pax Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250521,"name":"Zovidac 500mg Injection","price":495,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Acyclovir (500mg)","short_composition2":""},{"id":250522,"name":"Zorpex 75mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 14 tablets","short_composition1":"Roxatidine (75mg)","short_composition2":""},{"id":250523,"name":"Zenthro 500mg Tablet","price":65.5,"Is_discontinued":"FALSE","manufacturer_name":"Auztus Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250524,"name":"Zilsa 6.5% Gel","price":120,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"tube of 5 gm Vaginal gel","short_composition1":"Tioconazole (6.5% w/w)","short_composition2":""},{"id":250525,"name":"Zeroclav 500mg/125mg Tablet","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Dr. Gowda's Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250526,"name":"Zored 4mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":250527,"name":"Z Rosu 20mg Tablet","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Corazon Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":250528,"name":"Zolep 5mg Tablet","price":39.6,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":250529,"name":"Zolorab 20mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Indoco Remedies Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250530,"name":"Zerof-OZ 200mg/500mg Tablet","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250531,"name":"Zopidin Ointment","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Povidone Iodine (5% w/w)","short_composition2":""},{"id":250532,"name":"Z-Cid Oral Suspension","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg)"},{"id":250533,"name":"Zimipar 1000mg Injection","price":229.19,"Is_discontinued":"FALSE","manufacturer_name":"Intra Life","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":250534,"name":"Zoxib P 60mg/325mg Tablet","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (60mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250535,"name":"Zanvit G 300mg/500mcg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (500mcg)"},{"id":250536,"name":"Zoffy Injection","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":250537,"name":"Zevacef CV 200mg/125mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250538,"name":"Zfflox OM Oral Suspension","price":28.5,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Metronidazole (100mg/5ml)"},{"id":250539,"name":"Zivith 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250540,"name":"Zypress-AT Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Atenolol (50mg)"},{"id":250541,"name":"Zesticlar 250 Tablet","price":272,"Is_discontinued":"FALSE","manufacturer_name":"Jaiwik Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clarithromycin (250mg)","short_composition2":""},{"id":250542,"name":"Zenfi O 50mg Dry Syrup","price":42.2,"Is_discontinued":"FALSE","manufacturer_name":"Zen Labs India","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":250543,"name":"Zimicort 6mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Elancer Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250544,"name":"Zit MP 4mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zither Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":250545,"name":"Ziodic SP 50mg/325mg/15mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250546,"name":"Zilarbi CT 25 Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (40mg) ","short_composition2":" Chlorthalidone (25mg)"},{"id":250547,"name":"Zedser SP Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zedchem Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg) "},{"id":250548,"name":"Zocart 6mg Tablet","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Ropoz Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250549,"name":"Zoldin 20mg Capsule","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Divine Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250550,"name":"Zonecure SB 1000mg/500mg Injection","price":174,"Is_discontinued":"FALSE","manufacturer_name":"Suncure Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250551,"name":"Zoetram P 37.5mg/325mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250552,"name":"Zolrab-DSR Capsule","price":93,"Is_discontinued":"FALSE","manufacturer_name":"Stride Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250553,"name":"Zanac-P Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Genial Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250554,"name":"Zesnac P 100mg/325mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250555,"name":"Zolviflam-Plus Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"MayGriss Healthcare Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250556,"name":"Zaglivia M 5mg/500mg Tablet ER","price":460,"Is_discontinued":"FALSE","manufacturer_name":"Hauz Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Saxagliptin (5mg) ","short_composition2":" Metformin (500mg)"},{"id":250557,"name":"Zoylex 400mg Tablet DT","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Vhb Life Sciences Inc","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Acyclovir (400mg)","short_composition2":""},{"id":250558,"name":"Zolome RD 10mg/20mg Capsule","price":43.5,"Is_discontinued":"FALSE","manufacturer_name":"Shalman Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250559,"name":"Zemflox OZ 200mg/500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Medcover Pharmaceuticals (OPC) Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250560,"name":"Zydiclo Injection","price":13.75,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 30 ml Injection","short_composition1":"Diclofenac (25mg)","short_composition2":""},{"id":250561,"name":"Zavedos 10mg Capsule","price":2883.46,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 1 Capsule","short_composition1":"Idarubicin (10mg)","short_composition2":""},{"id":250562,"name":"Zocin DS 100mg/5ml Suspension","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Winsome Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Ofloxacin (100mg/5ml)","short_composition2":""},{"id":250563,"name":"Zarbil 40 Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Sinsan Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (40mg)","short_composition2":""},{"id":250564,"name":"Zocare 400mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":250565,"name":"Zylocef 500mg Injection","price":49.95,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":250566,"name":"Zuby 250mg/5ml Syrup","price":29.9,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Paracetamol (250mg/5ml)","short_composition2":""},{"id":250567,"name":"Zilamac 250 mg/250 mg Injection","price":869,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Imipenem (250mg) ","short_composition2":" Cilastatin (250mg)"},{"id":250568,"name":"Zisper 5mg Tablet MD","price":46.4,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Risperidone (5mg)","short_composition2":""},{"id":250569,"name":"Zucet 5mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250570,"name":"Zulfy-OZ 200mg/500mg Tablet","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250571,"name":"Zopipure 2 Tablet","price":65.2,"Is_discontinued":"FALSE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Eszopiclone (2mg)","short_composition2":""},{"id":250572,"name":"Zerokold Junior Oral Drops","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Drops","short_composition1":"Chlorpheniramine Maleate (1mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":250573,"name":"Zolic 4mg Injection","price":2700,"Is_discontinued":"FALSE","manufacturer_name":"Oncare Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":250574,"name":"Zymox Premix 125mg Oral Suspension","price":18.3,"Is_discontinued":"FALSE","manufacturer_name":"Smilax Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (125mg)","short_composition2":""},{"id":250575,"name":"Zopex 100mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Pride Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":250576,"name":"Zoxatab MR 250mg/50mg/325mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250577,"name":"Zixum 200mg Tablet DT","price":97.8,"Is_discontinued":"FALSE","manufacturer_name":"Roseate Medicare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250578,"name":"Zumace-MR Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250579,"name":"Zithmust 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Aconwell Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250580,"name":"Zeuoxate 200mg Tablet","price":164,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flavoxate (200mg)","short_composition2":""},{"id":250581,"name":"Zymocef 250mg/125mg Tablet","price":196.87,"Is_discontinued":"FALSE","manufacturer_name":"Venus Remedies Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250582,"name":"Zorotene 0.05% Cream","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Tazarotene (0.05% w/w)","short_composition2":""},{"id":250583,"name":"Zeero 100mg/325mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Earl Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250584,"name":"Zolcid 20mg Capsule","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Stride Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250585,"name":"Zenmet-G Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (80mg) ","short_composition2":" Metformin (500mg)"},{"id":250586,"name":"Zerobac-OZ Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Symbiosis Lab","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":250587,"name":"Zyclovin P 100mg/325mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Jwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250588,"name":"Zotec 500mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Ambromide Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250589,"name":"ZANCLAV DRY SYRUP","price":71.77,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (NA) ","short_composition2":" Clavulanic Acid (NA)"},{"id":250590,"name":"Zopra 30mg Capsule","price":41.66,"Is_discontinued":"FALSE","manufacturer_name":"Ravenbhel Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Lansoprazole (30mg)","short_composition2":""},{"id":250591,"name":"Zycet LM 5mg/10mg Tablet","price":76.18,"Is_discontinued":"FALSE","manufacturer_name":"Monichem Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250592,"name":"Zensumet-L 80mg/480mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Arteether (80mg) ","short_composition2":" Lumefantrine (480mg)"},{"id":250593,"name":"Zinetil 100mg Tablet","price":6.9,"Is_discontinued":"FALSE","manufacturer_name":"Gujarat Terce Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorpromazine (100mg)","short_composition2":""},{"id":250594,"name":"Zeroler Tablet","price":35.12,"Is_discontinued":"FALSE","manufacturer_name":"Intag Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (NA)","short_composition2":""},{"id":250595,"name":"Zepita 4000 mg/500 mg Injection","price":661,"Is_discontinued":"FALSE","manufacturer_name":"Claris Lifesciences Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":250596,"name":"Zoxil CV 250 mg/125 mg Tablet","price":75.23,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250597,"name":"ZO 200mg Infusion","price":93,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250598,"name":"Zorbin Forte 40mg Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Biological","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Famotidine (40mg)","short_composition2":""},{"id":250599,"name":"Zoprox 50mg Syrup","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":250600,"name":"Zardpime T 1000mg/125mg Injection","price":499,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":250601,"name":"Zixif CV 200mg/125mg Tablet","price":174,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250602,"name":"Zythro 250mg Tablet","price":64.3,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250603,"name":"Zalcort 6mg Tablet","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Milstein Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250604,"name":"Zither 150mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Age Biotech","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":250605,"name":"Zepox 600 Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Oxcarbazepine (600mg)","short_composition2":""},{"id":250606,"name":"Zolnia 10mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Univentis Medicare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250607,"name":"Zolirab 20mg Tablet","price":46.5,"Is_discontinued":"FALSE","manufacturer_name":"Mas Life Science","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250608,"name":"Zecral 200mg Tablet","price":162,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ketoconazole (200mg)","short_composition2":""},{"id":250609,"name":"Zodoxime 50mg Dry Syrup","price":65.3,"Is_discontinued":"FALSE","manufacturer_name":"Apple Biomedics Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":250610,"name":"Zipnol-Plus Tablet","price":53.9,"Is_discontinued":"FALSE","manufacturer_name":"Masson Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.25mg) ","short_composition2":" Propranolol (10mg)"},{"id":250611,"name":"Zogo Gel","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Zomask Healthcare Private Limited","type":"allopathy","pack_size_label":"tube of 30 gm Gel","short_composition1":"Diclofenac (2% w/w) ","short_composition2":" Capsaicin Based Rubefacients (0.025% w/w) "},{"id":250612,"name":"Zotaxime 100mg Tablet DT","price":62.5,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250613,"name":"Zolive Lotion","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Alive Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Lotion","short_composition1":"Miconazole (2% w/w)","short_composition2":""},{"id":250614,"name":"Zepid 2mg Tablet","price":19.8,"Is_discontinued":"FALSE","manufacturer_name":"Psychotropics India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (2mg)","short_composition2":""},{"id":250615,"name":"Zamitol 0.5mg Tablet","price":44.95,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250616,"name":"ZENERV 75MG CAPSULE","price":82,"Is_discontinued":"TRUE","manufacturer_name":"Eris Lifesciences Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Pregabalin (75mg)","short_composition2":""},{"id":250617,"name":"Zoxakind 200mg Tablet","price":39.9,"Is_discontinued":"TRUE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nitazoxanide (200mg)","short_composition2":""},{"id":250618,"name":"Zeeon 250mg Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Fitwel Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250619,"name":"Zoca 30mg Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Mavin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":250620,"name":"Zivocet 5mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Mepfarma India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250621,"name":"Zaprol 40mg Injection","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Epitome Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250622,"name":"Zicor 250mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Mepfarma India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250623,"name":"Zipron 500mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Pifer Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":250624,"name":"Zanoflox TZ 200mg/600mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Mediwin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":250625,"name":"Zipdep 15mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Mirtazapine (15mg)","short_composition2":""},{"id":250626,"name":"Zincef 250mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefalexin (250mg)","short_composition2":""},{"id":250627,"name":"Zenover AB 5mg/60mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Evershine Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":250628,"name":"Zerox-M 150mg/30mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Ozone Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg) ","short_composition2":" Ambroxol (30mg)"},{"id":250629,"name":"Zaduclav DS Dry Syrup","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (400mg) ","short_composition2":" Clavulanic Acid (57mg)"},{"id":250630,"name":"Zidex-TZ 281.25mg Injection","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Mediquest Inc.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":250631,"name":"Zithvax 500 Tablet","price":60.6,"Is_discontinued":"FALSE","manufacturer_name":"Vaxova Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250632,"name":"Zemo D 10mg/20mg Capsule","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Novus Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250633,"name":"Zofi 50mg Oral Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":250634,"name":"Zimspor AZ Plus 200mg/250mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":250635,"name":"Zocam 1mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":250636,"name":"Zorocort 6mg Tablet","price":79.5,"Is_discontinued":"FALSE","manufacturer_name":"Medimind Drugs and Chemicals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250637,"name":"Zerof 200mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250638,"name":"Zoxton-S 1.5gm Injection","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Ampira Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250639,"name":"Zithrodol 100 Oral Suspension","price":25.28,"Is_discontinued":"FALSE","manufacturer_name":"Cure Tech Skincare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":250640,"name":"Zidnac-P Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250641,"name":"Zencon 150mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Zennar Life Sciences","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":250642,"name":"Zclam P 0.25mg/20mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Megnesia Neurocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Propranolol (20mg)"},{"id":250643,"name":"Zeroclot 15mg Tablet","price":315,"Is_discontinued":"TRUE","manufacturer_name":"Tas Med India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rivaroxaban (15mg)","short_composition2":""},{"id":250644,"name":"Zemef DV 80mg/250mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Global Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":250645,"name":"Zeepram Plus Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Zenberg Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.5mg) ","short_composition2":" Escitalopram Oxalate (10mg)"},{"id":250646,"name":"Zilee AX 500mg/75mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (500mg) ","short_composition2":" Ambroxol (75mg)"},{"id":250647,"name":"Zovistar 200mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Monichem Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (200mg)","short_composition2":""},{"id":250648,"name":"Zithrocare 100mg/5ml Suspension","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Meyer Organics Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250649,"name":"Zotacef 1000mg Injection","price":71.25,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":250650,"name":"Zuby Kid Drop","price":18.96,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"packet of 15 ml Drop","short_composition1":"Paracetamol (NA)","short_composition2":""},{"id":250651,"name":"ZYNTAP 75 MG TABLET","price":139,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tapentadol (75mg)","short_composition2":""},{"id":250652,"name":"Zytiprost 250mg Tablet","price":34285.71,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 30 tablets","short_composition1":"Abiraterone Acetate (250mg)","short_composition2":""},{"id":250653,"name":"Zicon Eye Drop","price":30.4,"Is_discontinued":"FALSE","manufacturer_name":"Indiana Opthalmics","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Naphazoline (0.056%) ","short_composition2":" Chlorpheniramine Maleate (0.01%)"},{"id":250654,"name":"Zomycin 500mg Tablet","price":76,"Is_discontinued":"TRUE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250655,"name":"Zidime CV Dry Syrup","price":71.5,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (300mg) ","short_composition2":" Clavulanic Acid (187.5mg)"},{"id":250656,"name":"Zyrifa Kid Tablet","price":11.9,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Isoniazid (NA) ","short_composition2":" Rifampicin (NA) "},{"id":250657,"name":"Zaxid-E Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Biomax Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tranexamic Acid (250mg) ","short_composition2":" Ethamsylate (250mg)"},{"id":250658,"name":"Zorem-HT 10 Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (10mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":250659,"name":"Zeroworm 400mg Tablet","price":9.11,"Is_discontinued":"FALSE","manufacturer_name":"Talent Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250660,"name":"Zale M 50mg/100mg Suspension","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Alexin Bio-Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Metronidazole (100mg)"},{"id":250661,"name":"Zid Kid 150mg/75mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Flaring Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rifampicin (150mg) ","short_composition2":" Isoniazid (75mg)"},{"id":250662,"name":"Zipron 250mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Pifer Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (250mg)","short_composition2":""},{"id":250663,"name":"Zecbel Ointment","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Rhydburg Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Beclometasone (0.025% w/w) ","short_composition2":" Clotrimazole (1% w/w) "},{"id":250664,"name":"Zynar 5mg Tablet","price":19.5,"Is_discontinued":"FALSE","manufacturer_name":"Alna Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flunarizine (5mg)","short_composition2":""},{"id":250665,"name":"Zetron 1mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Granisetron (1mg)","short_composition2":""},{"id":250666,"name":"Zovax CV 250mg/125mg Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Deys Medical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250667,"name":"Zicfix 200mg Tablet DT","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Stensa Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250668,"name":"Zaflox 200mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Ryze Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250669,"name":"Zimnex OF 200mg/200mg Tablet","price":103.53,"Is_discontinued":"FALSE","manufacturer_name":"Ultratech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250670,"name":"Zipodom 200mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Unipure Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":250671,"name":"Zyrovild M 500mg/50mg Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (500mg) ","short_composition2":" Vildagliptin (50mg)"},{"id":250672,"name":"Zibit-OF Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Medisoft Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250673,"name":"Zeprine 40mg Tablet SR","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Biomed Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Isoxsuprine (40mg)","short_composition2":""},{"id":250674,"name":"Zolition 100mg Capsule","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Accretion Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":250675,"name":"Zurvast Gold 75mg/10mg/75mg Capsule","price":124.8,"Is_discontinued":"FALSE","manufacturer_name":"Europa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Aspirin (75mg) ","short_composition2":" Rosuvastatin (10mg) "},{"id":250676,"name":"Ziplan 10mg Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Haloperidol (10mg)","short_composition2":""},{"id":250677,"name":"Zorbicef 250 Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Canvarzys Care Pvt Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":250678,"name":"Zexflam MR 100mg/325mg/250mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250679,"name":"Zestmab 100mg Injection","price":5520,"Is_discontinued":"FALSE","manufacturer_name":"RPG Life Sciences Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Rituximab (100mg)","short_composition2":""},{"id":250680,"name":"Zitrock 200mg Oral Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Avonic Life Sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":250681,"name":"Zonesol-DXR Capsule","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":250682,"name":"Zithrodol 200 Oral Suspension","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Cure Tech Skincare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":250683,"name":"Zimalka Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Krishgir Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Disodium Hydrogen Citrate (1.4gm/5ml)","short_composition2":""},{"id":250684,"name":"Zaxone-SB 1.5gm Injection","price":103.6,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250685,"name":"Zeopant 40mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250686,"name":"Zeopant IT 40mg/150mg Capsule SR","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Pantoprazole (40mg) ","short_composition2":" Itopride (150mg)"},{"id":250687,"name":"Zufox 200mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sparfloxacin (200mg)","short_composition2":""},{"id":250688,"name":"Z Cort 30mg Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"AS Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":250689,"name":"Zinor 5 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Salveo Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norethisterone (5mg)","short_composition2":""},{"id":250690,"name":"Zaxaglit 2.5mg Tablet","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Saxagliptin (2.5mg)","short_composition2":""},{"id":250691,"name":"Zepine 200 Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Raffles Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Carbamazepine (200mg)","short_composition2":""},{"id":250692,"name":"Zithmark 200mg Oral Suspension","price":50.5,"Is_discontinued":"FALSE","manufacturer_name":"Indmark Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":250693,"name":"Zocovic Dry Syrup","price":60.48,"Is_discontinued":"FALSE","manufacturer_name":"DS Laboratories","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":250694,"name":"ZY Fsh R 75I.U Injection","price":1978.2,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Urofollitropin (75i.u)","short_composition2":""},{"id":250695,"name":"Zelis 5mg Tablet","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Lisinopril (5mg)","short_composition2":""},{"id":250696,"name":"Zincopan-D 10mg/40mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250697,"name":"Zeftra 0.5mg Tablet","price":12.74,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250698,"name":"Zamitol 0.25mg Tablet","price":7.81,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":250699,"name":"Zithrocin 1000mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Biochem Pharmaceutical Industries","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Azithromycin (1000mg)","short_composition2":""},{"id":250700,"name":"Zaxyben 50mg Injection","price":1768.7,"Is_discontinued":"FALSE","manufacturer_name":"Molekule India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Phenoxybenzamine (50mg)","short_composition2":""},{"id":250701,"name":"Z-Sar 50 Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Corazon Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg)","short_composition2":""},{"id":250702,"name":"Zovastin 10mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zoetic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":250703,"name":"Zinimet 1gm Tablet XL","price":25.5,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet xl","short_composition1":"Metformin (1gm)","short_composition2":""},{"id":250704,"name":"Zia Syrup","price":58.55,"Is_discontinued":"FALSE","manufacturer_name":"West-Coast Pharmaceutical Works Ltd","type":"allopathy","pack_size_label":"bottle of 50 ml Syrup","short_composition1":"Zinc acetate (20mg/5ml)","short_composition2":""},{"id":250705,"name":"Zulu Forte 200 mg/2 mg Tablet","price":88.2,"Is_discontinued":"TRUE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (200mg) ","short_composition2":" Tizanidine (2mg)"},{"id":250706,"name":"Zetcet Syrup","price":18.81,"Is_discontinued":"FALSE","manufacturer_name":"Sun Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cetirizine (5mg/5ml)","short_composition2":""},{"id":250707,"name":"Zyrab D 10mg/20mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250708,"name":"Zoltic 10mg Tablet","price":57.5,"Is_discontinued":"FALSE","manufacturer_name":"Volus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250709,"name":"Zumlid P 100mg/325mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250710,"name":"Zealpam EZ 0.5mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Estro Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.5mg)","short_composition2":""},{"id":250711,"name":"Zmont L 5mg/10mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250712,"name":"Zoxiimac Injection","price":990,"Is_discontinued":"FALSE","manufacturer_name":"Tyykem Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftizoxime (1000mg)","short_composition2":""},{"id":250713,"name":"Zepred 16mg Tablet","price":116,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":250714,"name":"Zexate 50mg Injection","price":63,"Is_discontinued":"TRUE","manufacturer_name":"Fresenius Kabi India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methotrexate (50mg)","short_composition2":""},{"id":250715,"name":"Zobilan Injection","price":2990,"Is_discontinued":"FALSE","manufacturer_name":"Mylan Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Solution for Infusion","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":250716,"name":"Zome Tablet MR","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Nectar Biopharma Pvt Limited","type":"allopathy","pack_size_label":"strip of 10 tablet mr","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250717,"name":"Zeslaz 6mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Blubell Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250718,"name":"Zestogra 50mg Tablet","price":76.5,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Sildenafil (50mg)","short_composition2":""},{"id":250719,"name":"Zypodox Dry Syrup","price":71.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Lactobacillus (60Million cells)"},{"id":250720,"name":"Zincef 500mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefalexin (500mg)","short_composition2":""},{"id":250721,"name":"Zirotis 250 Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Atlantis Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250722,"name":"Zerolix P Oral Suspension","price":38.5,"Is_discontinued":"FALSE","manufacturer_name":"Elixir Life Care Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":250723,"name":"Zolpa 10 Tablet","price":145.5,"Is_discontinued":"FALSE","manufacturer_name":"Events Pharma","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250724,"name":"Zerolix SP 100mg/325mg/10mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Elixir Life Care Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250725,"name":"Zatrofix LB 200mg Tablet","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":250726,"name":"Zacrol TC 100mg/325mg Tablet","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Biozec Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250727,"name":"Zeucor CV 10mg/75mg Tablet","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 tablets","short_composition1":"Rosuvastatin (10mg) ","short_composition2":" Clopidogrel (75mg)"},{"id":250728,"name":"Zacome P 750mcg/75mg Soft Gelatin Capsule","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Medifaith Biotech","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":250729,"name":"Zocol 50mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Hallmark Formulations Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Fluconazole (50mg)","short_composition2":""},{"id":250730,"name":"Zopain 0.50mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Indamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.50mg)","short_composition2":""},{"id":250731,"name":"Zaz 500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zeal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250732,"name":"Zurvast 20mg Tablet","price":224,"Is_discontinued":"FALSE","manufacturer_name":"Europa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":250733,"name":"Ziflax-OZ Tablet","price":121,"Is_discontinued":"FALSE","manufacturer_name":"Curezip Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250734,"name":"Zynast L 5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Astra IDL MAX","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250735,"name":"Zion 4mg Tablet","price":33.67,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (4mg)","short_composition2":""},{"id":250736,"name":"Zenoxim XP 500 mg/62.5 mg Injection","price":73.5,"Is_discontinued":"FALSE","manufacturer_name":"Indchemie Health Specialities Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Tazobactum (62.5mg)"},{"id":250737,"name":"Zopi OZ Syrup","price":37.9,"Is_discontinued":"FALSE","manufacturer_name":"Aamorb Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250738,"name":"Zithrokem Suspension","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (NA)","short_composition2":""},{"id":250739,"name":"Zipio M 30mg/500mg Tablet SR","price":31.9,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Pioglitazone (30mg) ","short_composition2":" Metformin (500mg)"},{"id":250740,"name":"Zenrox 150mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Genetics & Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":250741,"name":"Zykuf Oral Drops","price":27.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Drops","short_composition1":"Chlorpheniramine Maleate (2mg/ml) ","short_composition2":" Phenylephrine (5mg/ml)"},{"id":250742,"name":"Zovax LB 250mg/60Million spores Capsule","price":34.83,"Is_discontinued":"FALSE","manufacturer_name":"Deys Medical","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":250743,"name":"Zavinex 5Million IU Injection","price":1755,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Interferon Alpha 2B (5Million IU)","short_composition2":""},{"id":250744,"name":"Zoxavid OZ 200mg/500mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250745,"name":"Z Cin 500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zygal Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":250746,"name":"Znp 100mg/500mg Tablet","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Zetek Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":250747,"name":"Zogliz 40mg Tablet","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (40mg)","short_composition2":""},{"id":250748,"name":"Zanin 250mg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Hydroxyprogesterone (250mg)","short_composition2":""},{"id":250749,"name":"Zuvanext 20mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Regalia Pharmaceuticals (I) Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":250750,"name":"Zolidale 600mg Tablet","price":134.3,"Is_discontinued":"FALSE","manufacturer_name":"Allen Dale Biosciences","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":250751,"name":"Zunimox CV Dry Syrup","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":250752,"name":"Zanroxim Plus 200mg/200mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250753,"name":"Zolixius 10mg Tablet","price":73.45,"Is_discontinued":"FALSE","manufacturer_name":"Enrico Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":250754,"name":"Zac Oral Suspension","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250755,"name":"Zelfast-D Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Rouzel Pharma","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (250mg) "},{"id":250756,"name":"Zemol-M Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Mefenamic Acid (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":250757,"name":"Zomac 40mg Tablet","price":79.2,"Is_discontinued":"FALSE","manufacturer_name":"Hellix Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250758,"name":"Zeftom 250mg Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Medivaxia Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":250759,"name":"Zainet-P Tablet","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Progressive Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol (500mg) ","short_composition2":" Phenylpropanolamine (25mg) "},{"id":250760,"name":"Zuricof P Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (125mg) "},{"id":250761,"name":"Zioxim CV 200mg/125mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250762,"name":"Zesosiz D 30mg/20mg Capsule SR","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Semiotic Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250763,"name":"Zesosiz L 75mg/20mg Capsule","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Semiotic Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250764,"name":"Zeora D 10mg/20mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250765,"name":"Zolviflam-MR Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"MayGriss Healthcare Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250766,"name":"Zopi 5mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Biologic Psychotropics India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":250767,"name":"Zeoroxim CV 500mg/125mg Tablet","price":575,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250768,"name":"Zithrocon 250mg Tablet","price":67.3,"Is_discontinued":"FALSE","manufacturer_name":"Concertina Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250769,"name":"Zamhav-MD 10 Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Heveren Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clobazam (10mg)","short_composition2":""},{"id":250770,"name":"Zodcef S 1000mg/500mg Injection","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250771,"name":"ZF 400mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (400mg)","short_composition2":""},{"id":250772,"name":"Zeford 1mg Tablet","price":24.03,"Is_discontinued":"FALSE","manufacturer_name":"Oxford Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":250773,"name":"Zotra Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Acme Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (NA)","short_composition2":""},{"id":250774,"name":"Zidovex L 150mg/300mg Tablet","price":216.25,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lamivudine (150mg) ","short_composition2":" Zidovudine (300mg)"},{"id":250775,"name":"Zibose 0.2mg Tablet","price":48.4,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Voglibose (0.2mg)","short_composition2":""},{"id":250776,"name":"Zytham 800mg Tablet","price":39.27,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ethambutol (800mg)","short_composition2":""},{"id":250777,"name":"Zodialon 0.5mg Tablet MD","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Integra Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (0.5mg)","short_composition2":""},{"id":250778,"name":"Zidolam Ecopack 150 mg/300 mg Tablet","price":636,"Is_discontinued":"FALSE","manufacturer_name":"Hetero Drugs Ltd","type":"allopathy","pack_size_label":"strip of 30 tablets","short_composition1":"Lamivudine (150mg) ","short_composition2":" Zidovudine (300mg)"},{"id":250779,"name":"Zacin O 200 mg/500 mg Tablet","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250780,"name":"Zemoxy-CV 500mg/125mg Tablet","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250781,"name":"Ziprax O 200mg/200mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250782,"name":"Zingaro 800mg/40mg Tablet","price":6,"Is_discontinued":"FALSE","manufacturer_name":"Adcco Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Magaldrate (800mg) ","short_composition2":" Simethicone (40mg)"},{"id":250783,"name":"Zucet-M KID Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":250784,"name":"Zenocid D 10mg/20mg Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zensar Health Care","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250785,"name":"Zuritel 40mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zurinovo Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg)","short_composition2":""},{"id":250786,"name":"Zovinex 500mg Injection","price":482,"Is_discontinued":"FALSE","manufacturer_name":"Novo Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Acyclovir (500mg)","short_composition2":""},{"id":250787,"name":"Zydero 10mg/20mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Antigen Healthcare P. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250788,"name":"Zocil 200mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Wonder Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (200mg)","short_composition2":""},{"id":250789,"name":"Zubimox CV 500mg/125mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250790,"name":"Zolib M 2mg/500mg Tablet","price":72.99,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":250791,"name":"Zolil Cream","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Santo Formulations","type":"allopathy","pack_size_label":"tube of 10 gm Cream","short_composition1":"Luliconazole (1% w/w)","short_composition2":""},{"id":250792,"name":"Zartel 40 H Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":250793,"name":"Zeacid 20mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Advance Revive","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250794,"name":"Zyrocon 100mg Tablet","price":270,"Is_discontinued":"FALSE","manufacturer_name":"Concept Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":250795,"name":"Zyrovild Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Vildagliptin (50mg)","short_composition2":""},{"id":250796,"name":"Zexflam P Oral Suspension","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":250797,"name":"Zeomox-CV 625 Tablet","price":134.5,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250798,"name":"Zonefor-SB 1.5gm Injection","price":310,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250799,"name":"Zione DS 12.5mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorthalidone (12.5mg)","short_composition2":""},{"id":250800,"name":"Zyfix 50mg Dry Syrup","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":250801,"name":"Zolocin Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Medterm Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250802,"name":"Zeecof D Syrup","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Cogniwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":250803,"name":"Zemflox 200mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Medcover Pharmaceuticals (OPC) Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250804,"name":"Zeepam 2mg Injection","price":14.3,"Is_discontinued":"FALSE","manufacturer_name":"Tamman Titoe Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Lorazepam (2mg)","short_composition2":""},{"id":250805,"name":"Zeogesic TH 100mg/4mg Tablet","price":153,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":250806,"name":"Zetalo 20mg Tablet","price":55,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citalopram (20mg)","short_composition2":""},{"id":250807,"name":"Zecarb 300mg Tablet","price":10.8,"Is_discontinued":"FALSE","manufacturer_name":"Zeus Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lithium carbonate (300mg)","short_composition2":""},{"id":250808,"name":"ZOREP 15 MG/2 MG TABLET","price":59.5,"Is_discontinued":"TRUE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (15mg) ","short_composition2":" Glimepiride (2mg)"},{"id":250809,"name":"Zecef 250mg Injection","price":28.83,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefotaxime (250mg)","short_composition2":""},{"id":250810,"name":"Zigma 300mg Tablet CR","price":23.64,"Is_discontinued":"FALSE","manufacturer_name":"Crescent Therapeutics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Carbamazepine (300mg)","short_composition2":""},{"id":250811,"name":"Zynac 200mg Tablet SR","price":33.68,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":250812,"name":"Zimtel 40mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Zim Laboratories Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg)","short_composition2":""},{"id":250813,"name":"Zodep Plus Tablet","price":252,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amitriptyline (25mg) ","short_composition2":" Chlordiazepoxide (10mg)"},{"id":250814,"name":"Zall-AX 5mg/60mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":250815,"name":"Ziticin 500mg Tablet","price":77.2,"Is_discontinued":"FALSE","manufacturer_name":"Adley Formulations","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250816,"name":"Zilide 500mg Tablet","price":68.1,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250817,"name":"Zuvas Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":250818,"name":"Zanobid 200mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250819,"name":"Ziyarab D 30mg/20mg Capsule SR","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250820,"name":"Zuptor 20mg Tablet","price":198.5,"Is_discontinued":"FALSE","manufacturer_name":"Benique Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":250821,"name":"Zufix DT 50mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Hauz Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":250822,"name":"Zolipan 40mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Swift Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250823,"name":"Zyto D 10mg/40mg Tablet","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250824,"name":"ZIK 200mg Syrup","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":250825,"name":"Zylotor 20mg Tablet","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":250826,"name":"Zeom 20mg Capsule","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250827,"name":"Zipdep 30mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Mirtazapine (30mg)","short_composition2":""},{"id":250828,"name":"Zator 100mg Tablet","price":216,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (100mg)","short_composition2":""},{"id":250829,"name":"Zenipod 100mg Tablet DT","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":250830,"name":"Zintocold-AX Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Integral Lifesciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Levocetirizine (0.5mg/5ml) ","short_composition2":" Ambroxol (15mg/5ml) "},{"id":250831,"name":"Z Pod OF 200mg/200mg Tablet","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250832,"name":"Zatrocuf BR Syrup","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (4mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":250833,"name":"Zator 10mg Injection","price":27.66,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (10mg)","short_composition2":""},{"id":250834,"name":"Zofla 6mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250835,"name":"Z Bank 100mg Oral Suspension","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Indica Biolife Sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":250836,"name":"Zoylid 600 Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Bolivian Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":250837,"name":"Zeodoxim 200 Tablet DT","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":250838,"name":"Zeocold Oral Suspension","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml) "},{"id":250839,"name":"Zithoter 250 Tablet","price":70.69,"Is_discontinued":"FALSE","manufacturer_name":"Terra Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250840,"name":"Zolnem 600mg Tablet","price":217,"Is_discontinued":"FALSE","manufacturer_name":"Nemi Pharmaceuticles","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":250841,"name":"Zeora 20mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":250842,"name":"Zithscot 100 Oral Suspension","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Scotwin Healthcare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":250843,"name":"Zepred 8mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (8mg)","short_composition2":""},{"id":250844,"name":"Zovitaz 4000mg/500mg Injection","price":410,"Is_discontinued":"FALSE","manufacturer_name":"Zovilon Healthcare Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":250845,"name":"Zacmox CL 250mg/125mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250846,"name":"Zizi 50mg Dry Syrup","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":250847,"name":"Zypocet M 5mg/10mg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Evax Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":250848,"name":"Zoopime 1000mg/125mg Injection","price":595,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":250849,"name":"Zesnil 25mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Milnacipran (25mg)","short_composition2":""},{"id":250850,"name":"Zivolan 40mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Salveo Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Isoxsuprine (40mg)","short_composition2":""},{"id":250851,"name":"Zycid 20mg Capsule","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Sois Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":250852,"name":"Zofrid 200mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":250853,"name":"Zolp 5mg Tablet","price":40.5,"Is_discontinued":"FALSE","manufacturer_name":"Ivy Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":250854,"name":"Zegerd 40mg Capsule","price":82.86,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (40mg)","short_composition2":""},{"id":250855,"name":"Zorem LT 5 mg/50 mg Tablet","price":109.5,"Is_discontinued":"TRUE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (5mg) ","short_composition2":" Losartan (50mg)"},{"id":250856,"name":"Zefex 1000mg Injection","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg)","short_composition2":""},{"id":250857,"name":"Zetafenac Eye Drop","price":117,"Is_discontinued":"FALSE","manufacturer_name":"Bioquest Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 5 ml Opthalmic Suspension","short_composition1":"Nepafenac (0.1% w/v)","short_composition2":""},{"id":250858,"name":"Zefim-CV 200mg/125mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250859,"name":"Zycold Oral Suspension","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Dextromethorphan Hydrobromide (10mg) "},{"id":250860,"name":"Zethro 200mg Suspension","price":44.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":250861,"name":"Zobeta 1gm/500mg Injection","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Stallion Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1gm) ","short_composition2":" Sulbactam (500mg)"},{"id":250862,"name":"Zolnex 40 Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Nex Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250863,"name":"Zopime TZ 1000mg/125mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Shiny Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":250864,"name":"Zytax OZ 200mg/500mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg) "},{"id":250865,"name":"Zyronic 100mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Rx Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":250866,"name":"Zypan 40mg Injection","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":250867,"name":"Zaficef 500mg Tablet","price":600,"Is_discontinued":"FALSE","manufacturer_name":"Vavisto Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":250868,"name":"Zolenix D 30mg/40mg Capsule","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Saphnix Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":250869,"name":"Zetra 100mg Capsule","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":250870,"name":"Zeocet L 10 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (10mg)","short_composition2":""},{"id":250871,"name":"Zufe L Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Levosalbutamol (1mg/5ml) ","short_composition2":" Ambroxol (30mg/5ml) "},{"id":250872,"name":"Zudico MR 250mg/50mg/500mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":250873,"name":"Zodon 4 Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Rudolf Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":250874,"name":"Ziyanil M Oral Suspension","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (100mg) ","short_composition2":" Paracetamol (250mg)"},{"id":250875,"name":"Zas-Tin 1MIU Injection","price":1749,"Is_discontinued":"FALSE","manufacturer_name":"Suzan Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (1Million IU)","short_composition2":""},{"id":250876,"name":"Zenipant D 30mg/40mg Capsule SR","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250877,"name":"Zitrin 250mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Texas Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250878,"name":"Zevo 750mg Infusion","price":90.61,"Is_discontinued":"FALSE","manufacturer_name":"Indi Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Levofloxacin (750mg)","short_composition2":""},{"id":250879,"name":"Zydotum Powder for Injection","price":485,"Is_discontinued":"FALSE","manufacturer_name":"Venus Remedies Ltd","type":"allopathy","pack_size_label":"packet of 3 gm Powder for Injection","short_composition1":"Ceftazidime (NA) ","short_composition2":" Sulbactam (NA)"},{"id":250880,"name":"Zenithro 500mg Tablet","price":64.95,"Is_discontinued":"FALSE","manufacturer_name":"Zenobio Life Science","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250881,"name":"Zes 30mg Capsule","price":48,"Is_discontinued":"TRUE","manufacturer_name":"Deys Medical","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Lansoprazole (30mg)","short_composition2":""},{"id":250882,"name":"Zypine MD 7.5mg Tablet","price":66,"Is_discontinued":"TRUE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (7.5mg)","short_composition2":""},{"id":250883,"name":"Zazen-PG 750mcg/75mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Auzalus Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":250884,"name":"Zolapra-DSR 30mg/40mg Capsule","price":91,"Is_discontinued":"FALSE","manufacturer_name":"Amicures Research Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250885,"name":"Zid Kid Plus Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Flaring Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Isoniazid (50mg) ","short_composition2":" Pyrazinamide (300mg) "},{"id":250886,"name":"Ziprex T 500mg/600mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Brooks Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":250887,"name":"Zopral 1mg Tablet","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Osho Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":250888,"name":"Zonemox CL Capsule","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Medizone","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg) "},{"id":250889,"name":"Zoloxy 8mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg)","short_composition2":""},{"id":250890,"name":"Zaflox OZ 200mg/500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Ryze Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":250891,"name":"Zarika 6mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Erika Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":250892,"name":"Zeucor-F Tablet","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 tablets","short_composition1":"Fenofibrate (160mg) ","short_composition2":" Rosuvastatin (5mg)"},{"id":250893,"name":"Zygolet 2.5mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Zering Smith Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Letrozole (2.5mg)","short_composition2":""},{"id":250894,"name":"Zedmox 500mg Capsule","price":59.65,"Is_discontinued":"FALSE","manufacturer_name":"Zedwell Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":250895,"name":"Zimcin 250 Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250896,"name":"Zynate 50mg Tablet","price":264,"Is_discontinued":"FALSE","manufacturer_name":"Jackson Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Artesunate (50mg)","short_composition2":""},{"id":250897,"name":"Zofi OF 200mg/200mg Tablet","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":250898,"name":"Zanpan D 10mg/40mg Capsule","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Wallace Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250899,"name":"Zadumox 500 Capsule","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":250900,"name":"Zitrock 250mg Tablet","price":63.5,"Is_discontinued":"FALSE","manufacturer_name":"Avonic Life Sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":250901,"name":"Zumcold DS Oral Suspension","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml) "},{"id":250902,"name":"Zonbactam 1000mg/500mg Injection","price":599,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250903,"name":"Zylin M 750mcg/150mg Capsule","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (150mg)"},{"id":250904,"name":"Zupox CV Dry Syrup","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":250905,"name":"Zulta 750mg Tablet","price":695,"Is_discontinued":"FALSE","manufacturer_name":"Frank Medilink","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sultamicillin tosilate (750mg)","short_composition2":""},{"id":250906,"name":"Zifcef 200mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":250907,"name":"Zeswin-D Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250908,"name":"Zavikpod 200mg Tablet DT","price":192,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":250909,"name":"Zunim 100mg Tablet MD","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":250910,"name":"Zoreo 500 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Apcon Remedies","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250911,"name":"Zithrel 500 Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Relward Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250912,"name":"Zodal 400mg Tablet","price":13,"Is_discontinued":"FALSE","manufacturer_name":"Otik Biotec","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":250913,"name":"Zentro-LS Capsule SR","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Styla Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250914,"name":"Zfen-SP Tablet","price":124.95,"Is_discontinued":"FALSE","manufacturer_name":"Aleixo Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250915,"name":"Zentopred 8mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Iva Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (8mg)","short_composition2":""},{"id":250916,"name":"Zythscot 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Adenscot Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250917,"name":"Ziyamak 500mg Injection","price":43.5,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":250918,"name":"Zolecus D Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"SUNRISE PHARMACEUTICAL","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":250919,"name":"Zaxcef 100 DT Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Tridev Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250920,"name":"ZIDIME T 1000 MG/125 MG INJECTION","price":203.95,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":250921,"name":"Zidon RD 10 mg/20 mg Capsule","price":51.81,"Is_discontinued":"FALSE","manufacturer_name":"Kamron Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":250922,"name":"Zubol SP 100mg/325mg/15mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Diverse Health Services","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250923,"name":"Zudipine 5mg Tablet","price":27.7,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg)","short_composition2":""},{"id":250924,"name":"Zaxid Tablet","price":132.37,"Is_discontinued":"FALSE","manufacturer_name":"Biomax Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tranexamic Acid (NA) ","short_composition2":" Mefenamic Acid (NA)"},{"id":250925,"name":"Zetfor 500mg Tablet","price":7,"Is_discontinued":"TRUE","manufacturer_name":"Raptakos Brett & Co Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (500mg)","short_composition2":""},{"id":250926,"name":"Zeficar 0.5mg Tablet","price":17,"Is_discontinued":"FALSE","manufacturer_name":"J B Chemicals and Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.5mg)","short_composition2":""},{"id":250927,"name":"ZO T TABLET 200 MG/600 MG","price":65,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":250928,"name":"Zitis 500mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Scortis Lab Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250929,"name":"Zecral-O 1000mg/20mg Suspension","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 200 ml Suspension","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":250930,"name":"Zolve 500mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levetiracetam (500mg)","short_composition2":""},{"id":250931,"name":"Zufix DT 100mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Hauz Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":250932,"name":"Zoxol 0.25mg Tablet","price":11.4,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 24 tablets","short_composition1":"Trihexyphenidyl (0.25mg)","short_composition2":""},{"id":250933,"name":"Zovamide 100mg/500mg Tablet","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Zovaitalia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":250934,"name":"Zypower Tablet","price":3560,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Voriconazole (200mg)","short_composition2":""},{"id":250935,"name":"Zlimetin 6mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Lyra Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Ivermectin (6mg)","short_composition2":""},{"id":250936,"name":"Zencort-M 16mg Tablet","price":117,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":250937,"name":"Zion 1500mg Injection","price":480,"Is_discontinued":"FALSE","manufacturer_name":"I.I.F.A Health Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":250938,"name":"Zithrolen 100mg Oral Suspension","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Alencure Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250939,"name":"Zithrolen 200mg Oral Suspension","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Alencure Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":250940,"name":"Zaxcold Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Reqwell Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250941,"name":"Zenicet 5mg Tablet","price":37.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250942,"name":"Zenmet XL 50 Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Metoprolol Succinate (47.5mg)","short_composition2":""},{"id":250943,"name":"Zestocef O Syrup","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Ofloxacin (50mg)"},{"id":250944,"name":"Zitle 500mg Tablet","price":69.5,"Is_discontinued":"FALSE","manufacturer_name":"Ellederma Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250945,"name":"Ziflax O 200mg/200mg Tablet","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Curezip Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250946,"name":"Zodol P 50mg/500mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":250947,"name":"Zinor 10mg Tablet CR","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Salveo Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Norethisterone (10mg)","short_composition2":""},{"id":250948,"name":"Zenmet 1000 Tablet","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (1000mg)","short_composition2":""},{"id":250949,"name":"Zoylex DT Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Vhb Life Sciences Inc","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Acyclovir (200mg)","short_composition2":""},{"id":250950,"name":"Zindyme Tablet","price":59.5,"Is_discontinued":"FALSE","manufacturer_name":"Sunanda Meditech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":250951,"name":"Zeroduo P 100mg/325mg Tablet","price":101,"Is_discontinued":"FALSE","manufacturer_name":"Morepen Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":250952,"name":"Ziclone 7.5mg Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Bal Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zopiclone (7.5mg)","short_composition2":""},{"id":250953,"name":"Zydiclo 75mg Injection 1ml","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"packet of 5 injections","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":250954,"name":"Zypine 7.5mg Tablet","price":54.28,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (7.5mg)","short_composition2":""},{"id":250955,"name":"Zolineg 2Million IU Injection","price":1836.99,"Is_discontinued":"FALSE","manufacturer_name":"Sanofi India Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Colistimethate Sodium (2Million IU)","short_composition2":""},{"id":250956,"name":"Zafil O Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250957,"name":"Zabimox-CV 500mg/125mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":250958,"name":"Zotiram 750mcg Injection","price":8329,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Teriparatide (750mcg/3ml)","short_composition2":""},{"id":250959,"name":"Zemal Forte Tablet","price":135.4,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Artemether (80mg) ","short_composition2":" Lumefantrine (480mg)"},{"id":250960,"name":"Zorat 500 CR Tablet","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Sodium Valproate (333mg) ","short_composition2":" Valproic Acid (153mg)"},{"id":250961,"name":"Zithromin 500mg Tablet","price":76.44,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250962,"name":"Zorbten MF 500mg/20mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Goddres Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (500mg) ","short_composition2":" Teneligliptin (20mg)"},{"id":250963,"name":"Zenithral 500mg Tablet","price":67.17,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250964,"name":"Ziety 0.5mg Tablet","price":14.37,"Is_discontinued":"FALSE","manufacturer_name":"Targof Pure Drugs Td","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":250965,"name":"Zylin OD 100mg Tablet","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pregabalin (100mg)","short_composition2":""},{"id":250966,"name":"Zatrorab D 10mg/20mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250967,"name":"Z Pod CV Dry Syrup","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml) ","short_composition2":" Clavulanic Acid (31.25mg/5ml)"},{"id":250968,"name":"Zoprog 200 Soft Gelatin Capsule","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Progesterone (200mg)","short_composition2":""},{"id":250969,"name":"Zacrol-MR Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":250970,"name":"Zulfi-OR Oral Suspension","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg) "},{"id":250971,"name":"Zac 75mg Tablet SR","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Instant Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":250972,"name":"Zenimox-CV Dry Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":250973,"name":"Zocoral O Syrup","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (10mg)"},{"id":250974,"name":"Zacnix O LB 200mg/200mg Tablet","price":183,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":250975,"name":"Zealpam 1mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Estro Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":250976,"name":"Zeox OF Tablet","price":123,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":250977,"name":"Zimno P Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Exsan Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (1mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":250978,"name":"Zithrev 100mg Oral Suspension","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Aarvi Drugs","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":250979,"name":"Zflox 50mg Oral Suspension","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Trubeca Lifesciences","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":250980,"name":"Zextine Tablet","price":156,"Is_discontinued":"FALSE","manufacturer_name":"Holy Evolution Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paroxetine (12.5mg)","short_composition2":""},{"id":250981,"name":"Zestol 600mg Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Surge Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Oxcarbazepine (600mg)","short_composition2":""},{"id":250982,"name":"Zytamol 500 Tablet","price":15.2,"Is_discontinued":"FALSE","manufacturer_name":"Rebanta Health Care (P) Limited","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Paracetamol (500mg)","short_composition2":""},{"id":250983,"name":"Zumrab D 30mg/20mg Capsule SR","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250984,"name":"Zenzone S 1000mg/500mg Injection","price":273,"Is_discontinued":"FALSE","manufacturer_name":"Zennar Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":250985,"name":"Zapeo Injection","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Heveren Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piracetam (200mg)","short_composition2":""},{"id":250986,"name":"Zithropon 500mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Nippon Seiyaku Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":250987,"name":"Zylocef 50mg Dry Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":250988,"name":"Zaso 10mg Capsule","price":40.21,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 7 capsules","short_composition1":"Zaleplon (10mg)","short_composition2":""},{"id":250989,"name":"Zomator 0.25mg Injection","price":500,"Is_discontinued":"TRUE","manufacturer_name":"Biocon","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Somatostatin (0.25mg)","short_composition2":""},{"id":250990,"name":"Zosovir 400mg Tablet","price":17340,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 28 tablets","short_composition1":"Sofosbuvir (400mg)","short_composition2":""},{"id":250991,"name":"Zomox 250mg Capsule","price":32.9,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":250992,"name":"Zetam Injection","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"vial of 15 ml Injection","short_composition1":"Piracetam (200mg)","short_composition2":""},{"id":250993,"name":"Zabesta X 2.5 mg/6.25 mg Tablet","price":63.25,"Is_discontinued":"TRUE","manufacturer_name":"USV Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bisoprolol (2.5mg) ","short_composition2":" Hydrochlorothiazide (6.25mg)"},{"id":250994,"name":"Zitrobid 200mg Oral Suspension","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":250995,"name":"Zinir LB Tablet DT","price":115,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefdinir (150mg) ","short_composition2":" Lactobacillus (45Million Spores)"},{"id":250996,"name":"Zeorab D 30mg/20mg Capsule SR","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Morgen Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":250997,"name":"Zytrix 250mg Injection","price":30.5,"Is_discontinued":"FALSE","manufacturer_name":"Health Care Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":250998,"name":"Zeflon 400mg Tablet","price":106,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":250999,"name":"Zicox 750mg Tablet","price":66.25,"Is_discontinued":"FALSE","manufacturer_name":"Vertex India Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (750mg)","short_composition2":""},{"id":251000,"name":"Zlife 30mg/20mg Capsule","price":99.9,"Is_discontinued":"FALSE","manufacturer_name":"Divees Biotech","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251001,"name":"Zolingerd D 30mg/40mg Tablet SR","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Ulterius Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251002,"name":"Zeloc 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Cogniwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251003,"name":"Zenmox 125 Dry Syrup","price":35.73,"Is_discontinued":"FALSE","manufacturer_name":"Zen Labs India","type":"allopathy","pack_size_label":"bottle of 60 ml Dry Syrup","short_composition1":"Amoxycillin (125mg/5ml)","short_composition2":""},{"id":251004,"name":"Zicam 1 Tablet DT","price":67.1,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 15 tablet dt","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":251005,"name":"Zaneraz AB Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":251006,"name":"Z Alpha 150mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Medivaxia Pharma","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":251007,"name":"Zosate 80mg Tablet","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (80mg)","short_composition2":""},{"id":251008,"name":"Zorsol 300 Tablet","price":320,"Is_discontinued":"FALSE","manufacturer_name":"Nirlife Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ursodeoxycholic Acid (300mg)","short_composition2":""},{"id":251009,"name":"Zecil SB 1500mg/750mg Injection","price":324,"Is_discontinued":"FALSE","manufacturer_name":"Zenn Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg) ","short_composition2":" Sulbactam (750mg)"},{"id":251010,"name":"Zychlor Eye Ointment","price":70,"Is_discontinued":"FALSE","manufacturer_name":"rynel clifton pharma pvt. ltd","type":"allopathy","pack_size_label":"tube of 5 gm Eye Ointment","short_composition1":"Chloramphenicol (1% w/w) ","short_composition2":" Hydrocortisone (0.5% w/w)"},{"id":251011,"name":"Zotipax 100mg Tablet","price":117.5,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zotepine (100mg)","short_composition2":""},{"id":251012,"name":"Zedec 50mg Injection","price":123.75,"Is_discontinued":"FALSE","manufacturer_name":"Taurus Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251013,"name":"Zithromycin 250mg Tablet","price":58.38,"Is_discontinued":"FALSE","manufacturer_name":"Ordain Health Care Global Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251014,"name":"Zator 20mg Tablet","price":52.37,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (20mg)","short_composition2":""},{"id":251015,"name":"Zomark PM 0.25 mg/10 mg Tablet","price":21.9,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Propranolol (10mg)"},{"id":251016,"name":"Zenquin 250mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chloroquine (250mg)","short_composition2":""},{"id":251017,"name":"Zantor 10mg Tablet","price":75.73,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":251018,"name":"Zygem 1gm Injection","price":6700,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Gemcitabine (1gm)","short_composition2":""},{"id":251019,"name":"Zolcer 10mg Capsule","price":21.45,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (10mg)","short_composition2":""},{"id":251020,"name":"Zidec 50mg Injection","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251021,"name":"Zine AX 5mg/30mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Nebulae Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg) ","short_composition2":" Ambroxol (30mg)"},{"id":251022,"name":"Zevacef 100mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":251023,"name":"Zedri 250mg Tablet DT","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Zedip Formulations","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefadroxil (250mg)","short_composition2":""},{"id":251024,"name":"Zola D Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Hamax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":251025,"name":"Zymox Plus 125mg Tablet","price":19.5,"Is_discontinued":"FALSE","manufacturer_name":"Smilax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (125mg) ","short_composition2":" Lactobacillus (30Million spores)"},{"id":251026,"name":"Zumustin 100mg Injection","price":2028,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Bendamustine (100mg)","short_composition2":""},{"id":251027,"name":"Zobra F Eye Drops","price":88.2,"Is_discontinued":"FALSE","manufacturer_name":"Hicare Pharma","type":"allopathy","pack_size_label":"bottle of 5 ml Opthalmic Suspension","short_composition1":"Tobramycin (0.3% w/v) ","short_composition2":" Fluorometholone (0.1% w/v)"},{"id":251028,"name":"Zabimox-CV Dry Syrup","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":251029,"name":"Ziblonac P 100mg/325mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Arkle Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251030,"name":"Zitomet 500mg Tablet","price":67.45,"Is_discontinued":"FALSE","manufacturer_name":"Metlar Formulations","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251031,"name":"Zazogesic Asp 100mg/325mg/15mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Uko Pharmatech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251032,"name":"Zulu V 20mg/2mg Tablet","price":73.47,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Valdecoxib (20mg) ","short_composition2":" Tizanidine (2mg)"},{"id":251033,"name":"Zaxone 1000mg Injection","price":56.65,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":251034,"name":"Zuker 40mg Tablet","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Biocon","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (40mg)","short_composition2":""},{"id":251035,"name":"Zeflaza 6mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251036,"name":"Ziyoazi 250mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251037,"name":"Zaneman 50mg Tablet","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Klokter Life Sciences","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Sildenafil (50mg)","short_composition2":""},{"id":251038,"name":"Zitac 25mg Injection","price":310,"Is_discontinued":"FALSE","manufacturer_name":"Uni-Pex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ranitidine (25mg)","short_composition2":""},{"id":251039,"name":"Zomcet-MD Tablet","price":45.7,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":251040,"name":"Zolpidox 1 Tablet MD","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Doxis Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":251041,"name":"Zogodol-TH Tablet","price":208.4,"Is_discontinued":"FALSE","manufacturer_name":"Zomask Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":251042,"name":"Zyara D 30mg/20mg Capsule","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Ambrons pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251043,"name":"Zalinz 600mg Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Kiama Lifesciences","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251044,"name":"Zdf 6mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zencure Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251045,"name":"Zalsin 250 Tablet","price":70.69,"Is_discontinued":"FALSE","manufacturer_name":"Prector Lifesciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251046,"name":"Zydinox 200 Capsule","price":253,"Is_discontinued":"FALSE","manufacturer_name":"Zydillac Dermaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251047,"name":"Zaglivia 5mg Tablet","price":430,"Is_discontinued":"FALSE","manufacturer_name":"Hauz Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Saxagliptin (5mg)","short_composition2":""},{"id":251048,"name":"Zemhart 90mg Tablet SR","price":209,"Is_discontinued":"FALSE","manufacturer_name":"Leeford Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Diltiazem (90mg)","short_composition2":""},{"id":251049,"name":"Zoltac 40mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Eveson Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251050,"name":"Zenol D Tablet","price":46.45,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251051,"name":"Zegerd 20mg Oral Suspension","price":8.71,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 6 gm Oral Suspension","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251052,"name":"Zepodox 50mg Tablet","price":57.8,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":251053,"name":"Zyflox M 100mg/100mg Suspension","price":16.87,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Metronidazole (100mg) ","short_composition2":" Norfloxacin (100mg)"},{"id":251054,"name":"Zenoset 4mg Tablet","price":13.95,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":251055,"name":"Zeriphyllin Syrup","price":18.5,"Is_discontinued":"FALSE","manufacturer_name":"Ciron Drugs & Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Etofylline (46.50mg) ","short_composition2":" Theophylline (14mg)"},{"id":251056,"name":"Zapcer D 10mg/20mg Capsule","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Elite Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251057,"name":"Zuricof LS Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ambroxol (30mg) ","short_composition2":" Levosalbutamol (1mg/0.4ml) "},{"id":251058,"name":"Zifpod CV 200mg/125mg Tablet","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251059,"name":"Zacroli Forte 0.1% Ointment","price":398,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Tacrolimus (0.1% w/w)","short_composition2":""},{"id":251060,"name":"Zethyl Plus Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Tanzer Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1000mcg) ","short_composition2":" Niacinamide (100mg) "},{"id":251061,"name":"Zitocold Syrup","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Alleviate Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (250mg) "},{"id":251062,"name":"Zegnasol Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Disodium Hydrogen Citrate (1.53mg/5ml)","short_composition2":""},{"id":251063,"name":"Zirath 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Hamswell Lifecare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251064,"name":"Zolidom 10mg/40mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251065,"name":"Zatrox 250mg Tablet","price":164,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":251066,"name":"Zorem LT 2.5mg/50mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (2.5mg) ","short_composition2":" Losartan (50mg)"},{"id":251067,"name":"Zubithro 500mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251068,"name":"Zacin 100mg Oral Suspension","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (100mg/5ml)","short_composition2":""},{"id":251069,"name":"Zecoba 1500mcg Injection","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":251070,"name":"Zeomox DL 250mg/250mg Capsule","price":62.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":251071,"name":"Zeophylin 100mg Capsule","price":84.7,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":251072,"name":"Zenifexo 180mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fexofenadine (180mg)","short_composition2":""},{"id":251073,"name":"Zebrolin Capsule","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Crinova Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":251074,"name":"Zyo Cold Syrup","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":251075,"name":"Zolita 40mg Injection","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Astronia Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251076,"name":"Zodec 50mg Injection","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251077,"name":"Zincomalt 100mg Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Iron Sucrose (100mg)","short_composition2":""},{"id":251078,"name":"Zinpal 24mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Palvin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (24mg)","short_composition2":""},{"id":251079,"name":"Zenpar-M DS Oral Suspension","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (100mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml)"},{"id":251080,"name":"Zflox 200 Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Trubeca Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251081,"name":"Zony 250 Tablet","price":64.9,"Is_discontinued":"FALSE","manufacturer_name":"Olens Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251082,"name":"Ziokof L Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Levosalbutamol (1mg/5ml) ","short_composition2":" Ambroxol (30mg/5ml) "},{"id":251083,"name":"Zedem-ER 6.25 Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 Tablet pr","short_composition1":"Zolpidem (6.25mg)","short_composition2":""},{"id":251084,"name":"Zotoin 100mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Lifecare Neuro Products Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Phenytoin (100mg)","short_composition2":""},{"id":251085,"name":"Zolichem Tablet","price":329,"Is_discontinued":"FALSE","manufacturer_name":"Lee Chem Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251086,"name":"Zidolin Injection","price":644,"Is_discontinued":"FALSE","manufacturer_name":"Aishwarya Healthcare","type":"allopathy","pack_size_label":"vial of 300 ml Injection","short_composition1":"Linezolid (2mg/ml)","short_composition2":""},{"id":251087,"name":"Zitelmi M 40mg/50mg Tablet","price":100.5,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Metoprolol Succinate (50mg)"},{"id":251088,"name":"Zilee OZ 250 mg/500 mg Tablet","price":72.18,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (250mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251089,"name":"Zoflick OZ 200mg/500mg Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"Maverick Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251090,"name":"Zynacar 800 Tablet","price":266.67,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sevelamer (800mg)","short_composition2":""},{"id":251091,"name":"Zalide 100 mg/2 mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Active Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Tizanidine (2mg)"},{"id":251092,"name":"Zolaco 100mg Tablet","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lacosamide (100mg)","short_composition2":""},{"id":251093,"name":"Zy DSR Capsule","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zynext Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251094,"name":"Zercan 200 Capsule","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251095,"name":"Zolcef-S 500mg/500mg Injection","price":188,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251096,"name":"Zidocef 1gm Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1gm)","short_composition2":""},{"id":251097,"name":"Zeset 4mg Tablet","price":45.95,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":251098,"name":"Ziclof-S Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zircon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251099,"name":"Zyrcet-LC 5mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Biotabs Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":251100,"name":"Zilide XL 200mg Oral Suspension","price":101.1,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251101,"name":"Zegrid 20mg Tablet","price":39.8,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251102,"name":"Zee 2mg Tablet","price":137.4,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 20 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":251103,"name":"Zoxin S 1000 mg/500 mg Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Litaka Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251104,"name":"Zenol DSR Capsule","price":57.05,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (NA) ","short_composition2":" Pantoprazole (NA)"},{"id":251105,"name":"Zelid Plus Suspension","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":251106,"name":"Zoe OZ Tablet","price":63.66,"Is_discontinued":"FALSE","manufacturer_name":"Enzo Biopharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ornidazole (500mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":251107,"name":"Zelid Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Nimesulide (50mg)","short_composition2":""},{"id":251108,"name":"Zyfix 100mg Dry Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (100mg/5ml)","short_composition2":""},{"id":251109,"name":"Zilatax CT 40mg/12.5mg Tablet","price":119.25,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":251110,"name":"Zulton 40mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg)","short_composition2":""},{"id":251111,"name":"Zax-S 1000mg/500mg Injection","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251112,"name":"Zumazi 250 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg) ","short_composition2":" Lactic acid bacillus (60Million spores)"},{"id":251113,"name":"Zonit 50mg Tablet","price":54.41,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zonisamide (50mg)","short_composition2":""},{"id":251114,"name":"Zumcet M 5mg/10mg Tablet","price":96,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":251115,"name":"Zivith 250 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251116,"name":"Zecet-P Plus Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Diphenhydramine (25mg) "},{"id":251117,"name":"Zitlite 10 Capsule","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Dermacure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Isotretinoin (10mg)","short_composition2":""},{"id":251118,"name":"Zatro F 160mg/10mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Martyn Nikk Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fenofibrate (160mg) ","short_composition2":" Rosuvastatin (10mg)"},{"id":251119,"name":"Zithway 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Waylone Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251120,"name":"Zestine Forte 16mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (16mg)","short_composition2":""},{"id":251121,"name":"Zeroket SP 100mg/325mg/15mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Senzan Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251122,"name":"Zicpalm 200 Capsule","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Rekin Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251123,"name":"Zoeclo P 100mg/325mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251124,"name":"Zipon C 200mg/250mg Tablet","price":272,"Is_discontinued":"FALSE","manufacturer_name":"Simon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":251125,"name":"Zithidel 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Delroy Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251126,"name":"Zidlam Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":251127,"name":"Zynolid Plus 100mg/325mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Zenotis Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251128,"name":"Zurox 250mg Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":251129,"name":"Zopex 50mg Dry Syrup","price":68.75,"Is_discontinued":"FALSE","manufacturer_name":"Pride Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":251130,"name":"Zydiclo Injection 3ml","price":22.9,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 5 injections","short_composition1":"Diclofenac (NA)","short_composition2":""},{"id":251131,"name":"Z8 10mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":251132,"name":"Zylocef S 1000 mg/500 mg Injection","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251133,"name":"Zedcure 200 mg/500 mg Tablet","price":69.28,"Is_discontinued":"FALSE","manufacturer_name":"Resilient Cosmecueticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251134,"name":"Zobastat Tablet","price":13.5,"Is_discontinued":"FALSE","manufacturer_name":"Resilient Cosmecueticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":251135,"name":"Zapacid 15mg Capsule","price":28.57,"Is_discontinued":"FALSE","manufacturer_name":"Win-Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Lansoprazole (15mg)","short_composition2":""},{"id":251136,"name":"ZENTOR 250 MG TABLET","price":21.4,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (250mg)","short_composition2":""},{"id":251137,"name":"Zylocef T 250 mg/31.25 mg Injection","price":43.25,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":251138,"name":"Zepdyl Syrup","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Mandar Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Chlorpheniramine Maleate (4mg) ","short_composition2":" Codeine (10mg)"},{"id":251139,"name":"Zimzat-OX Oral Suspension","price":59.9,"Is_discontinued":"FALSE","manufacturer_name":"Sanify Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg) "},{"id":251140,"name":"Zitrich 500mg Tablet","price":61.9,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251141,"name":"Zytum 250mg Tablet","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":251142,"name":"Zenoa 400mg Tablet","price":134,"Is_discontinued":"FALSE","manufacturer_name":"Glosun Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":251143,"name":"Zolfa 18mg Tablet","price":219,"Is_discontinued":"FALSE","manufacturer_name":"Soltech Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (18mg)","short_composition2":""},{"id":251144,"name":"Zykuf P Suspension","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Chlorpheniramine Maleate (1mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":251145,"name":"Zin 10mg Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Biosmith Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":251146,"name":"Zidane 40mg Capsule","price":84.5,"Is_discontinued":"FALSE","manufacturer_name":"Cyril Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Duloxetine (40mg)","short_composition2":""},{"id":251147,"name":"Zolpistar 10mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Invision Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":251148,"name":"Zovia 75mg Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Merck Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tapentadol (75mg)","short_composition2":""},{"id":251149,"name":"Zilo D 400mg/10mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Doxofylline (400mg) ","short_composition2":" Montelukast (10mg)"},{"id":251150,"name":"Zipris 20mg Capsule","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (20mg)","short_composition2":""},{"id":251151,"name":"Zilide 100mg Oral Suspension","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251152,"name":"Zofix OZ 200mg/500mg Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251153,"name":"Zithrovil 200 Oral Suspension","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Fibovil Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251154,"name":"Zyrab 20mg Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"German Remedies","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251155,"name":"Zimac 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Mint Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251156,"name":"Zeozole 2% Soap","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"box of 75 gm Soap","short_composition1":"Ketoconazole (2% w/w)","short_composition2":""},{"id":251157,"name":"Zithmark 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Indmark Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251158,"name":"Zeeter 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Laxter Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251159,"name":"Zotop D 30mg/40mg Capsule SR","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Otik Biotec","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251160,"name":"Zetoxi MR 60mg/4mg Tablet","price":299,"Is_discontinued":"FALSE","manufacturer_name":"Scope Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (60mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":251161,"name":"Zistin 8mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (8mg)","short_composition2":""},{"id":251162,"name":"Zoxinace-SP Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251163,"name":"Zoli D 30mg/40mg Capsule","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Gladden Laboratories","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Esomeprazole (40mg)"},{"id":251164,"name":"Zobeta 500mg/500mg Injection","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Stallion Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251165,"name":"Zwei 0.2mg Tablet MD","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Gold Line","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Voglibose (0.2mg)","short_composition2":""},{"id":251166,"name":"Zeena 750mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (750mg)","short_composition2":""},{"id":251167,"name":"Zegerd 40mg Oral Suspension","price":11.7,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 6 gm Oral Suspension","short_composition1":"Omeprazole (40mg)","short_composition2":""},{"id":251168,"name":"Zylin OD 75mg Tablet","price":113.5,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pregabalin (75mg)","short_composition2":""},{"id":251169,"name":"Zestasil 100 Tablet","price":202,"Is_discontinued":"FALSE","manufacturer_name":"TBG pharma ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Sildenafil (100mg)","short_composition2":""},{"id":251170,"name":"Zincopan 40mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251171,"name":"Zotum S 250mg/125mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Aztec Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":251172,"name":"Zipris 40mg Capsule","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (40mg)","short_composition2":""},{"id":251173,"name":"Zenee PR 100mg Tablet","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Altar Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":251174,"name":"Zoltweet 0.5mg Tablet","price":20.1,"Is_discontinued":"FALSE","manufacturer_name":"Tweet India Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":251175,"name":"Zyrinol 100mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Anvi Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":251176,"name":"Zycef 250mg Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Teblik Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":251177,"name":"Zithsan 250mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Tuttsan Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251178,"name":"Zaxid-L 75mg/20mg Capsule SR","price":163.9,"Is_discontinued":"FALSE","manufacturer_name":"Akumentis Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251179,"name":"Zebi-Dex Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zeaxa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Dextromethorphan Hydrobromide (10mg)"},{"id":251180,"name":"Ziprolet 500mg Tablet","price":59.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":251181,"name":"Zilcard 10 Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Cilnidipine (10mg)","short_composition2":""},{"id":251182,"name":"Zoftaron 8mg Tablet MD","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Ondansetron (8mg)","short_composition2":""},{"id":251183,"name":"Zenvir 5% Cream","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"tube of 5 gm Cream","short_composition1":"Acyclovir (5% w/w)","short_composition2":""},{"id":251184,"name":"Zidnim-P Tablet","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251185,"name":"Zidrox 500mg Tablet","price":480,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":251186,"name":"Zegdol Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251187,"name":"Zipace SP Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Meritus Life Care Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325 mg) "},{"id":251188,"name":"Zole PD 10mg/40mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Pfiscar India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251189,"name":"Zim-CV Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Nitro Organics","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251190,"name":"Zoxton-T 1.125 Injection","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Ampira Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251191,"name":"Ziorab L 75mg/20mg Capsule","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251192,"name":"Zygenta Plus 40mg Injection","price":9.2,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Gentamicin (40mg)","short_composition2":""},{"id":251193,"name":"Zoltis 400 Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Atlantis Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":251194,"name":"Zomide M 2mg/500mg Tablet SR","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Swakam Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":251195,"name":"Zigalis CV 625 Tablet","price":156,"Is_discontinued":"FALSE","manufacturer_name":"RSL Bioscience Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251196,"name":"Zoriv 600mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"East African (India) Overseas","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251197,"name":"Zosuc 500mg/125mg Tablet","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Dicore Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251198,"name":"Zeecent 200 Oral Suspension","price":114.9,"Is_discontinued":"FALSE","manufacturer_name":"SAG Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251199,"name":"Zoxinace MR 100mg/325mg/250mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251200,"name":"ZITA (GRAF) 50MG/2MG TABLET","price":48.88,"Is_discontinued":"TRUE","manufacturer_name":"GRAF Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Tizanidine (2mg)"},{"id":251201,"name":"Zengat D Eye Drop","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Klar Sehen Pvt Ltd","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Dexamethasone (0.1% w/w) ","short_composition2":" Gatifloxacin (0.3% w/w)"},{"id":251202,"name":"Zotra OZ Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Acme Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (NA) ","short_composition2":" Ornidazole (NA)"},{"id":251203,"name":"Zefclav 250 mg/62.5 mg Tablet","price":31.47,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefadroxil (250mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":251204,"name":"Zenoset 2mg Syrup","price":28.57,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":251205,"name":"Zolpil 5mg Tablet","price":65.68,"Is_discontinued":"FALSE","manufacturer_name":"Psychotropics India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251206,"name":"Zytak 300mg Tablet","price":10.62,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ranitidine (300mg)","short_composition2":""},{"id":251207,"name":"Zenlong T 8 mg/8 mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg) ","short_composition2":" Thiocolchicoside (8mg)"},{"id":251208,"name":"Zedflam 50 mg/10 mg Tablet","price":57.5,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251209,"name":"Zipio G 15mg/1mg Tablet","price":20.9,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (15mg) ","short_composition2":" Glimepiride (1mg)"},{"id":251210,"name":"Zimat Syrup","price":24.25,"Is_discontinued":"FALSE","manufacturer_name":"Kopran Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Cetirizine (5mg/5ml)","short_composition2":""},{"id":251211,"name":"Zytic 500mg Tablet","price":62.5,"Is_discontinued":"FALSE","manufacturer_name":"Penlon India Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251212,"name":"Zoyadec 25mg Injection","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":251213,"name":"Zytorse 20mg Tablet","price":54.9,"Is_discontinued":"FALSE","manufacturer_name":"Zanetaz Medicorp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (20mg)","short_composition2":""},{"id":251214,"name":"Zargo 25mg Tablet","price":22.5,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (25mg)","short_composition2":""},{"id":251215,"name":"Zincobal 1500mcg Injection","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":251216,"name":"Zocalme 0.5mg Tablet","price":15.6,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":251217,"name":"Zedruff Shampoo","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Shampoo","short_composition1":"Ketoconazole (2% w/v) ","short_composition2":" Zinc pyrithione (1% w/v)"},{"id":251218,"name":"Zid 1000mg Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Accord Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":251219,"name":"Zolpi 10mg Tablet","price":52.7,"Is_discontinued":"FALSE","manufacturer_name":"Boon & Bastion Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":251220,"name":"Z Cid O Oral Suspension","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg) "},{"id":251221,"name":"Zentim gm 1000mg/125mg Injection","price":138.1,"Is_discontinued":"FALSE","manufacturer_name":"Delcure Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251222,"name":"ZIPRAX 50MG TABLET DT","price":44.02,"Is_discontinued":"TRUE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":251223,"name":"Zortan 25mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Snell's Therapeutics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (25mg)","short_composition2":""},{"id":251224,"name":"Zypam 2mg Tablet","price":21,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lorazepam (2mg)","short_composition2":""},{"id":251225,"name":"Zione O 40mg/6.25mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Unichem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (40mg) ","short_composition2":" Chlorthalidone (6.25mg)"},{"id":251226,"name":"Zatrotoz Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg) ","short_composition2":" Tricholine Citrate (275mg)"},{"id":251227,"name":"Zytram P 37.5mg/325mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251228,"name":"Zitcold N Tablet","price":51.5,"Is_discontinued":"FALSE","manufacturer_name":"Zither Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (25mg) ","short_composition2":" Cetirizine (5mg) "},{"id":251229,"name":"Zidex-TZ 1000mg/125mg Injection","price":375,"Is_discontinued":"FALSE","manufacturer_name":"Mediquest Inc.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251230,"name":"Zeotrin-M Tablet","price":107.65,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":251231,"name":"Zetacef 200 DT Tablet 200mg","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Servocare Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251232,"name":"Zefocef 100 DT Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251233,"name":"Zepex 500mg Capsule","price":131.4,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Cefalexin (500mg)","short_composition2":""},{"id":251234,"name":"Zeox 50mg Dry Syrup","price":47.2,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":251235,"name":"Zooglip-M Tablet SR","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Zoobion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg) ","short_composition2":" Teneligliptin (20mg)"},{"id":251236,"name":"Zefax O 200mg/200mg Tablet","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251237,"name":"Zythro 500 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Medsyn Lab Biotech","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251238,"name":"Zithrokk 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Rokkwinn Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251239,"name":"Zyroban 10mg Tablet","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Hauz Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 7 tablets","short_composition1":"Rivaroxaban (10mg)","short_composition2":""},{"id":251240,"name":"Zerox 100mg Syrup","price":25.9,"Is_discontinued":"FALSE","manufacturer_name":"Ozone Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251241,"name":"Zolvex 600mg Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Werke Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251242,"name":"Zeroduo SP 100mg/325mg/15mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Morepen Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251243,"name":"Zidoxe 100mg Tablet DT","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":251244,"name":"Zelcort 6 Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251245,"name":"Zesoxyn Oral Suspension","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Semiotic Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Suspension","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":251246,"name":"Zifcef 50mg Dry Syrup","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":251247,"name":"Zupoz 40mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"SBP Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251248,"name":"Zolome Forte 20mg Capsule","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Shalman Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251249,"name":"Zaflort 6mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Medna Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251250,"name":"Zelol 50mg Tablet ER","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Metoprolol Tartrate (50mg)","short_composition2":""},{"id":251251,"name":"Zo-Clav 500mg/125mg Tablet","price":109.5,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251252,"name":"ZIK 100mg Syrup","price":51.4,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251253,"name":"Zoxaflam 200gm Tablet","price":212.21,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Oxaceprol (200gm)","short_composition2":""},{"id":251254,"name":"Zylid Suspension","price":45.8,"Is_discontinued":"FALSE","manufacturer_name":"Shankus Acme Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251255,"name":"ZOLANDIN 50MG SUSPENSION","price":14.7,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Nimesulide (50mg)","short_composition2":""},{"id":251256,"name":"Zenthro 250mg Tablet","price":64.95,"Is_discontinued":"FALSE","manufacturer_name":"Auztus Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251257,"name":"Zocor 125mg Syrup","price":73.2,"Is_discontinued":"FALSE","manufacturer_name":"Park Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefaclor (125mg)","short_composition2":""},{"id":251258,"name":"Zomycin 250mg Tablet","price":33.3,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251259,"name":"Zosecta 20mg Tablet","price":102.5,"Is_discontinued":"TRUE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (20mg)","short_composition2":""},{"id":251260,"name":"Zift 100mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Medico Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251261,"name":"Zithromin 1gm Tablet","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Azithromycin (1gm)","short_composition2":""},{"id":251262,"name":"Zanozole 200 mg/500 mg Infusion","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Bal Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251263,"name":"Zydik 50mg/10mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"G-Nine Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251264,"name":"Zefikay AZ Tablet","price":118.75,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (NA) ","short_composition2":" Azithromycin (NA)"},{"id":251265,"name":"Zobapip 4000mg/500mg Injection","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Basil Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251266,"name":"Zicon Suspension","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Antiseptic Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251267,"name":"Zoricef Dry Syrup","price":110,"Is_discontinued":"FALSE","manufacturer_name":"ICI Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefuroxime (125mg)","short_composition2":""},{"id":251268,"name":"Zolaflex Plus 400mg/600mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Adcco Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg) ","short_composition2":" Tinidazole (600mg)"},{"id":251269,"name":"Zoxyclav 500mg/125mg Tablet","price":101.6,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251270,"name":"Zactam 4000mg/500mg Injection","price":423,"Is_discontinued":"FALSE","manufacturer_name":"Septalyst Lifesciences Pvt.Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251271,"name":"Zatrocid Oral Suspension Mango Sugar Free","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Magaldrate (400mg/5ml) ","short_composition2":" Simethicone (20mg/5ml)"},{"id":251272,"name":"Zudico 75mg Injection","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":251273,"name":"Zuwarm IM Oral Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Ivermectin (1.5mg) ","short_composition2":" Albendazole (200mg)"},{"id":251274,"name":"Zifo AT Syrup","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Med Express","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":251275,"name":"Zocvin Cold Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (125mg) "},{"id":251276,"name":"Zezek 200mg Tablet DT","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Uvkan Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251277,"name":"Zithrex 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Medons India","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251278,"name":"Zidom-D Capsule","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251279,"name":"Zargesic BR Tablet","price":186,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Trypsin (48mg) ","short_composition2":" Bromelain (90mg) "},{"id":251280,"name":"Z Bank 200mg Oral Suspension","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Indica Biolife Sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251281,"name":"Zollson 40 Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Avyukt Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251282,"name":"Zolpen-D Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Stride Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251283,"name":"Zovifast-P Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251284,"name":"Zeero-Cold Oral Drops","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Earl Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Drops","short_composition1":"Chlorpheniramine Maleate (1mg) ","short_composition2":" Paracetamol (125mg) "},{"id":251285,"name":"Zipthrin 500mg Tablet","price":239,"Is_discontinued":"FALSE","manufacturer_name":"Curezip Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251286,"name":"Zeclox L 250mg/250mg/60Million spores Capsule","price":24.83,"Is_discontinued":"FALSE","manufacturer_name":"A. Menarini India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg) "},{"id":251287,"name":"Zavedos 5mg Capsule","price":1660.48,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 1 Capsule","short_composition1":"Idarubicin (5mg)","short_composition2":""},{"id":251288,"name":"Zuvanext A 10 mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Regalia Pharmaceuticals (I) Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (10mg) ","short_composition2":" Aspirin (75mg)"},{"id":251289,"name":"Zovator 20mg Tablet","price":150.5,"Is_discontinued":"FALSE","manufacturer_name":"Zovaitalia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":251290,"name":"Zimquine 100mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Dycine Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Quetiapine (100mg)","short_composition2":""},{"id":251291,"name":"Zipio 30mg Tablet","price":21.9,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (30mg)","short_composition2":""},{"id":251292,"name":"Zithro Oral Suspension","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Ritz Pharma","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251293,"name":"Zoff 50mg Oral Suspension","price":21,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":251294,"name":"Zonet S 1000mg/500mg Injection","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Linnet Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251295,"name":"Zonet 1000mg Injection","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Linnet Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":251296,"name":"Zogli 15mg/2mg Tablet","price":72.56,"Is_discontinued":"FALSE","manufacturer_name":"Ordain Health Care Global Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (15mg) ","short_composition2":" Glimepiride (2mg)"},{"id":251297,"name":"Zuvicin 10mg Injection","price":362.64,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Epirubicin (10mg)","short_composition2":""},{"id":251298,"name":"Zepodox 100mg Tablet","price":79.8,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":251299,"name":"Zidon O 10 mg/10 mg Capsule","price":41.98,"Is_discontinued":"FALSE","manufacturer_name":"Kamron Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (10mg)"},{"id":251300,"name":"Zupaxel 300mg Injection","price":10279.8,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Paclitaxel (300mg)","short_composition2":""},{"id":251301,"name":"Zoxil CV 400mg/5ml/57mg/5ml Suspension","price":84.76,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Amoxycillin (400mg/5ml) ","short_composition2":" Clavulanic Acid (57mg/5ml)"},{"id":251302,"name":"Zebay 25mg Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acarbose (25mg)","short_composition2":""},{"id":251303,"name":"Zovixim 200mg Tablet","price":118,"Is_discontinued":"FALSE","manufacturer_name":"Quantum Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251304,"name":"Zid 1000mg Injection","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Medilife Health Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":251305,"name":"Zemith 1500 Injection","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"box of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":251306,"name":"Zethyl 1500mcg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Tanzer Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":251307,"name":"Zacrol P 100mg/325mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Biozec Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251308,"name":"Zeetak Injection","price":3.4,"Is_discontinued":"TRUE","manufacturer_name":"Sun Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ranitidine (25mg/ml)","short_composition2":""},{"id":251309,"name":"Zysid P 100mg/325mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251310,"name":"Zilopan D 10mg/20mg Capsule","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251311,"name":"Zevacef 100mg Dry Syrup","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg/5ml)","short_composition2":""},{"id":251312,"name":"Zevacid OS Oral Suspension","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Zenstar Life Sciences","type":"allopathy","pack_size_label":"bottle of 100 ml Oral Suspension","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":251313,"name":"Zitomet 250mg Tablet","price":69.4,"Is_discontinued":"FALSE","manufacturer_name":"Metlar Formulations","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251314,"name":"Zeldom O Oral Suspension","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Medsyn Lab Biotech","type":"allopathy","pack_size_label":"bottle of 100 ml Oral Suspension","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":251315,"name":"Zonflox 200 Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"NV Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251316,"name":"Zolidox Tablet","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Cure Tech Skincare","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251317,"name":"Zeodic 10 Tablet","price":48.9,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":251318,"name":"Zeodic-DS Tablet","price":67.5,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251319,"name":"Zemsiar Plus 6mg/400mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Alisier Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":251320,"name":"Zetclav 500mg/125mg Tablet","price":132,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251321,"name":"Zozith 500mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Day Meddy Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251322,"name":"Zymoxcine 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Synex Global Services Llp","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251323,"name":"Zeficlor 125mg Dry Syrup","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Leeford Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefaclor (125mg)","short_composition2":""},{"id":251324,"name":"Zeelone 8mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Synex Global Services Llp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (8mg)","short_composition2":""},{"id":251325,"name":"Zymoxcine 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Synex Global Services Llp","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251326,"name":"Zidium Injection","price":53.1,"Is_discontinued":"FALSE","manufacturer_name":"Symbiotic Drugs","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Dicyclomine (NA) ","short_composition2":" Ranitidine (NA)"},{"id":251327,"name":"Zotan H 50mg/12.5mg Tablet","price":68.75,"Is_discontinued":"FALSE","manufacturer_name":"Zoticus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":251328,"name":"Zegerd 20mg Capsule","price":48.41,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251329,"name":"Zoftariz 1gm Injection","price":37.5,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1gm)","short_composition2":""},{"id":251330,"name":"Zomitac D 30mg/40mg Capsule","price":89.7,"Is_discontinued":"TRUE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251331,"name":"Zypara 750 Tablet","price":18.45,"Is_discontinued":"TRUE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (750mg)","short_composition2":""},{"id":251332,"name":"Zeen PR Syrup","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Winmac Laboratories Ltd","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Piracetam (500mg/5ml)","short_composition2":""},{"id":251333,"name":"Zeebro-BR Tablet","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Shinto Organics (P) Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (90mg) ","short_composition2":" Trypsin (48mg) "},{"id":251334,"name":"ZEEPARA 650MG TABLET","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol (650mg)","short_composition2":""},{"id":251335,"name":"Zetamox-K Eye Drop","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Bioquest Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 5 ml Eye Drop","short_composition1":"Ketorolac (0.5% w/v) ","short_composition2":" Moxifloxacin (0.5% w/v)"},{"id":251336,"name":"Zylip 20mg Tablet","price":71.42,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":251337,"name":"Zeemine 3mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Psycormedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rivastigmine (3mg)","short_composition2":""},{"id":251338,"name":"Zipodom Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Unipure Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":251339,"name":"Zemozec 1500mg Injection","price":296,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":251340,"name":"Zolegra 10mg/120mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Montelukast (10mg) ","short_composition2":" Fexofenadine (120mg)"},{"id":251341,"name":"Zicfi-CXL Tablet","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Cloxacillin (500mg) "},{"id":251342,"name":"Zimspor 100mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251343,"name":"Zerocef-OZ Tablet","price":199.9,"Is_discontinued":"FALSE","manufacturer_name":"Lifeline Remedies India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251344,"name":"Zolpiwide 5mg Tablet","price":48.65,"Is_discontinued":"FALSE","manufacturer_name":"World Wide Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251345,"name":"Zon 1000mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Oscar Remedies Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":251346,"name":"Zoran 200mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251347,"name":"Zefotin 40mg Tablet","price":39.6,"Is_discontinued":"FALSE","manufacturer_name":"Integral Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (40mg)","short_composition2":""},{"id":251348,"name":"Zofi CV 200mg/125mg Tablet","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251349,"name":"Zacrol P Oral Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Biozec Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":251350,"name":"Zocpan-DSR Capsule","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251351,"name":"Zeonate 50mg Injection","price":127.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251352,"name":"Zithronid 200mg Syrup","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Nidus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251353,"name":"Zipred 4mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Shinto Organics (P) Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":251354,"name":"Zisan 500mg Injection","price":249.5,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251355,"name":"Zycet AM 5mg/60mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":251356,"name":"Zyfix CV 200mg/125mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251357,"name":"ZI Worm Plus Oral Suspension","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Ivermectin (1.5mg/5ml) ","short_composition2":" Albendazole (200mg/5ml)"},{"id":251358,"name":"Zediva Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Mediva Lifecare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ammonium Chloride (50mg/5ml) ","short_composition2":" Bromhexine (4mg/5ml) "},{"id":251359,"name":"Zoxy AP 100mg/325mg/250mg Tablet","price":76.5,"Is_discontinued":"FALSE","manufacturer_name":"Akme Biotec","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251360,"name":"Zitovik 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Creogenic Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251361,"name":"Zentum 1500mg Injection","price":266,"Is_discontinued":"FALSE","manufacturer_name":"Zennar Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":251362,"name":"Zetitor 20mg Tablet","price":139.65,"Is_discontinued":"FALSE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":251363,"name":"Zeosartan 80mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (80mg)","short_composition2":""},{"id":251364,"name":"Zestol 150mg Tablet CR","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Surge Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Oxcarbazepine (150mg)","short_composition2":""},{"id":251365,"name":"Zeford 2 Tablet","price":71.5,"Is_discontinued":"FALSE","manufacturer_name":"Oxpro Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":251366,"name":"Zolton 40mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Maxton Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251367,"name":"Zinret 5mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":251368,"name":"Zoeterb M Cream","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Mometasone (0.1% w/w) ","short_composition2":" Terbinafine (1% w/w)"},{"id":251369,"name":"Zufe TX Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":251370,"name":"Zomark P 0.25 mg/20 mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Propranolol (20mg)"},{"id":251371,"name":"Zimnic CV 50 mg/31.25 mg Dry Syrup","price":72.02,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":251372,"name":"Zenocite 500mg Tablet","price":1047.22,"Is_discontinued":"FALSE","manufacturer_name":"Unimark Remedies Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Capecitabine (500mg)","short_composition2":""},{"id":251373,"name":"ZYPRINOL 250 MG TABLET","price":25,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (250mg)","short_composition2":""},{"id":251374,"name":"Zisper 2mg Tablet","price":44.52,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (2mg)","short_composition2":""},{"id":251375,"name":"Zigma 200mg Tablet","price":11.57,"Is_discontinued":"FALSE","manufacturer_name":"Crescent Therapeutics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Carbamazepine (200mg)","short_composition2":""},{"id":251376,"name":"Zimnic AZ Kid 100 mg/125 mg Tablet","price":104,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg) ","short_composition2":" Azithromycin (125mg)"},{"id":251377,"name":"Zoclox Capsule","price":51.35,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (NA) ","short_composition2":" Cloxacillin (NA)"},{"id":251378,"name":"Zeclop A 10 mg/75 mg Tablet","price":61.52,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aspirin (10mg) ","short_composition2":" Clopidogrel (75mg)"},{"id":251379,"name":"Ziox 250mg Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Centaur Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251380,"name":"Zyrova 5 Tablet","price":195.96,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 30 tablets","short_composition1":"Rosuvastatin (5mg)","short_composition2":""},{"id":251381,"name":"Ziticin 250mg Tablet","price":131.82,"Is_discontinued":"FALSE","manufacturer_name":"Adley Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251382,"name":"Zalclav 500mg/125mg Tablet","price":101.68,"Is_discontinued":"FALSE","manufacturer_name":"Osseous Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251383,"name":"Zizi 100mg Tablet DT","price":63.4,"Is_discontinued":"FALSE","manufacturer_name":"Mestra Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251384,"name":"Zuvas 20 Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":251385,"name":"Zymor 1000mg Injection","price":1499,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":251386,"name":"Zefresh 2% Mouth Wash","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Mouth Wash","short_composition1":"Chlorhexidine Gluconate (2% w/v)","short_composition2":""},{"id":251387,"name":"Zinirab 20mg Tablet","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251388,"name":"Zeeflox OZ 200mg/500mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zee Cure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251389,"name":"Zocil 400mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Wonder Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (400mg)","short_composition2":""},{"id":251390,"name":"Zyloglic M 80mg/500mg Tablet","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zylig Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gliclazide (80mg) ","short_composition2":" Metformin (500mg)"},{"id":251391,"name":"Zicarb 500mg Injection","price":990,"Is_discontinued":"FALSE","manufacturer_name":"Neon Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Dacarbazine (500mg)","short_composition2":""},{"id":251392,"name":"Zixif 100mg Tablet","price":86.5,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251393,"name":"Zencylin CV Dry Syrup","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":251394,"name":"Zhenrab-D Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Zhen Heal Craft Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251395,"name":"Zycit 250mg Injection","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Laxian Healthcare","type":"allopathy","pack_size_label":"ampoule of 4 ml Injection","short_composition1":"Citicoline (250mg/ml)","short_composition2":""},{"id":251396,"name":"Zanmef Suspension","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Mefenamic Acid (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":251397,"name":"Zedocort 6mg Tablet","price":121,"Is_discontinued":"FALSE","manufacturer_name":"Habitare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251398,"name":"Zamox 250mg Tablet","price":31.5,"Is_discontinued":"FALSE","manufacturer_name":"Pfimex International Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":251399,"name":"Zybol Oral Gel","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Gel","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg)"},{"id":251400,"name":"Zofomune 60mg Tablet","price":5687.2,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 28 tablets","short_composition1":"Daclatasvir (60mg)","short_composition2":""},{"id":251401,"name":"Zykinase 1.5 MIU Injection","price":3898.08,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Streptokinase (1500000IU)","short_composition2":""},{"id":251402,"name":"Zatrofix OF Dry Syrup","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Ofloxacin (50mg)"},{"id":251403,"name":"Zydrot 80mg/250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":251404,"name":"Zisper 4mg Tablet MD","price":40,"Is_discontinued":"TRUE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Risperidone (4mg)","short_composition2":""},{"id":251405,"name":"Zylep Duo Syrup","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Paracetamol (250mg/5ml) "},{"id":251406,"name":"Zexcof-D Syrup","price":68.5,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Cetirizine (2.5mg/5ml) ","short_composition2":" Phenylephrine (5mg/5ml) "},{"id":251407,"name":"Zocpan Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251408,"name":"Zoprox O 200mg/200mg Tablet","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251409,"name":"Zome 10mg Tablet","price":19.9,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Biological","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg)","short_composition2":""},{"id":251410,"name":"Zerinorm 4mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":251411,"name":"Zingpride 100mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Ishjas Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amisulpride (100mg)","short_composition2":""},{"id":251412,"name":"Zetacon 200 Capsule","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Bolivian Healthcare","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251413,"name":"Zytamol 650 Tablet DT","price":34.24,"Is_discontinued":"FALSE","manufacturer_name":"Rebanta Health Care (P) Limited","type":"allopathy","pack_size_label":"strip of 15 tablet dt","short_composition1":"Paracetamol (650mg)","short_composition2":""},{"id":251414,"name":"Zas-Tin 2MIU Injection","price":2749,"Is_discontinued":"FALSE","manufacturer_name":"Suzan Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (2Million IU)","short_composition2":""},{"id":251415,"name":"Zolam 5mg Injection","price":77.4,"Is_discontinued":"FALSE","manufacturer_name":"Tamman Titoe Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Midazolam (5mg)","short_composition2":""},{"id":251416,"name":"Zypovid 5% Ointment","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"tube of 250 gm Ointment","short_composition1":"Povidone Iodine (5%)","short_composition2":""},{"id":251417,"name":"Zivex Syrup","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Euro Organics","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Hydroxyzine (10mg/5ml)","short_composition2":""},{"id":251418,"name":"Z One 250mg Injection","price":25.9,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":251419,"name":"Zyrof 2000IU Injection","price":562.5,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Rofecoxib (2000IU)","short_composition2":""},{"id":251420,"name":"Zepin 200mg Tablet SR","price":14.4,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Carbamazepine (200mg)","short_composition2":""},{"id":251421,"name":"Zyper 250mg Capsule","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Percos India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 capsules","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251422,"name":"Zyrotram 50mg Injection","price":15.85,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Tramadol (50mg)","short_composition2":""},{"id":251423,"name":"Zenotere 20mg Injection","price":2916.21,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Docetaxel (20mg)","short_composition2":""},{"id":251424,"name":"Zecta Injection","price":475,"Is_discontinued":"FALSE","manufacturer_name":"Shasun Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251425,"name":"Zericef-XP Injection","price":56.2,"Is_discontinued":"FALSE","manufacturer_name":"Zerico Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251426,"name":"Zeom-DM 10mg/20mg Capsule","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251427,"name":"Zedinir 300mg Tablet","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Cefdinir (300mg)","short_composition2":""},{"id":251428,"name":"Zosteron 500mg Injection","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Hydroxyprogesterone (500mg)","short_composition2":""},{"id":251429,"name":"Zoyadec 50mg Injection","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251430,"name":"Zamol 100 mg/500 mg Tablet","price":27.25,"Is_discontinued":"FALSE","manufacturer_name":"Norwest Pharmaceuticals Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":251431,"name":"Zegerd 20mg Sachet","price":6.82,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"packet of 6 gm Sachet","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251432,"name":"Z Mox Kid 250mg Tablet","price":21.95,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":251433,"name":"Zanoquin OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Radico Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251434,"name":"Zitrost 500mg Tablet","price":84.99,"Is_discontinued":"FALSE","manufacturer_name":"Trost Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251435,"name":"Zoacide 500mg Infusion","price":11.52,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Metronidazole (500mg)","short_composition2":""},{"id":251436,"name":"Zilanto 500mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Glanto Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251437,"name":"Zanim 100mg/2mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Medirose drug & pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Tinidazole (2mg)"},{"id":251438,"name":"Zypam 1mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lorazepam (1mg)","short_composition2":""},{"id":251439,"name":"Zenidox 200mg Tablet DT","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251440,"name":"Zytrix 1000mg Injection","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Health Care Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":251441,"name":"Zumheal D Tablet","price":265,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Trypsin (48mg) ","short_composition2":" Bromelain (90mg) "},{"id":251442,"name":"Zumpan 40mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251443,"name":"Zifpime 1000 Injection","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg)","short_composition2":""},{"id":251444,"name":"Zumrab 20mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251445,"name":"Zisan 200mg Oral Drops","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Drops","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251446,"name":"Zeltum 1500mg Injection","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":251447,"name":"Zetivas 5mg/10mg Tablet","price":78.74,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (5mg) ","short_composition2":" Ezetimibe (10mg)"},{"id":251448,"name":"Zatropan 40mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251449,"name":"Zenbolin 50mg Injection","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Zennar Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251450,"name":"Ziofen Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251451,"name":"Zarclav DS Dry Syrup","price":116,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (400mg) ","short_composition2":" Clavulanic Acid (57mg)"},{"id":251452,"name":"Zeoxa OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251453,"name":"Zeocort 6mg Tablet","price":83.5,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251454,"name":"Zilarbi CN 40mg/5mg Tablet","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Azilsartan medoxomil (40mg) ","short_composition2":" Cilnidipine (5mg)"},{"id":251455,"name":"Zetra 200 Capsule","price":267,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251456,"name":"Zetvin-MF Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":251457,"name":"Zeulin 500 Tablet","price":400,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citicoline (500mg)","short_composition2":""},{"id":251458,"name":"Zobapost 4.5 Injection","price":465,"Is_discontinued":"FALSE","manufacturer_name":"Lxir Medilabs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251459,"name":"Zovilda 50mg Tablet","price":163.9,"Is_discontinued":"FALSE","manufacturer_name":"Retra Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Vildagliptin (50mg)","short_composition2":""},{"id":251460,"name":"Zolben 6mg/400mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 2 tablets","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":251461,"name":"Zytamol 120 Oral Suspension","price":35.64,"Is_discontinued":"FALSE","manufacturer_name":"Rebanta Health Care (P) Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (120mg)","short_composition2":""},{"id":251462,"name":"Zingmet Tablet SR","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Inolife Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":251463,"name":"Ziyacef 50mg Dry Syrup","price":47.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":251464,"name":"Zithvon 500mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Alvonics Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251465,"name":"Zepred 4mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":251466,"name":"Zepred 40mg Injection","price":43,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylprednisolone (40mg)","short_composition2":""},{"id":251467,"name":"Zovibact 400mg Tablet","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Innovative Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (400mg)","short_composition2":""},{"id":251468,"name":"Zeelo 2mg Tablet","price":119.43,"Is_discontinued":"FALSE","manufacturer_name":"Apex Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":251469,"name":"Zend Syrup","price":21.05,"Is_discontinued":"FALSE","manufacturer_name":"Wens Drugs India Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Syrup","short_composition1":"Albendazole (NA)","short_composition2":""},{"id":251470,"name":"Zotamox 250 mg/250 mg Capsule","price":67.37,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":251471,"name":"Zidohope 100mg Tablet","price":596.72,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 tablets","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":251472,"name":"Zidovex LN 150 mg/300 mg/200 mg Tablet","price":687.5,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 30 tablets","short_composition1":"Lamivudine (150mg) ","short_composition2":" Zidovudine (300mg) "},{"id":251473,"name":"Zeefix 100mg Tablet","price":54.5,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251474,"name":"Zolppi D 10mg/20mg Tablet","price":57.5,"Is_discontinued":"FALSE","manufacturer_name":"Bionova Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251475,"name":"Zolfa 6mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Soltech Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251476,"name":"Zom 20mg Capsule","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Madhav Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251477,"name":"Zipio G 15mg/2mg Tablet","price":30.9,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (15mg) ","short_composition2":" Glimepiride (2mg)"},{"id":251478,"name":"Zibose-M 0.2 Tablet SR","price":50,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg) ","short_composition2":" Voglibose (0.2mg)"},{"id":251479,"name":"Zesoris-AZ 50mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Tas Med India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azathioprine (50mg)","short_composition2":""},{"id":251480,"name":"Zybron Expectorant","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Embiotic Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Expectorant","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":251481,"name":"Zilion SL 5mg Tablet","price":47.75,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251482,"name":"Zendrone 25mg Injection","price":18.97,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":251483,"name":"Zocx CV 500mg/125mg Tablet","price":144,"Is_discontinued":"TRUE","manufacturer_name":"Zens Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251484,"name":"Zolnex 5mg Tablet","price":27.9,"Is_discontinued":"FALSE","manufacturer_name":"Nexus Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251485,"name":"Zetaglim 4mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (4mg)","short_composition2":""},{"id":251486,"name":"Zithronic 500mg Tablet","price":66.51,"Is_discontinued":"FALSE","manufacturer_name":"Bionics Remedies","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251487,"name":"Zilion 300mg Tablet","price":215,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":251488,"name":"Zolpistar 5mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Invision Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251489,"name":"Zuricetcold Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Diphenhydramine (25mg) "},{"id":251490,"name":"Zenicef 200mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251491,"name":"Zerivid 200mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zovaitalia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251492,"name":"Zenben 400mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":251493,"name":"Zicfi CV Dry Syrup","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Clavulanic Acid (31.125mg/5ml)"},{"id":251494,"name":"Zonbact-OCV Dry Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Eugenics Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Potassium Clavulanate (32.25mg/5ml)"},{"id":251495,"name":"Zitabend Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Ivermectin (3mg) ","short_composition2":" Albendazole (200mg)"},{"id":251496,"name":"Ziyof OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251497,"name":"Zypan D 30mg/40mg Capsule SR","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251498,"name":"Zabimox LB 500mg/125mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":251499,"name":"Zedem 5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Dorris Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251500,"name":"Zirath 250 Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Hamswell Lifecare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251501,"name":"Zexime 50mg Dry Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":251502,"name":"Zarmet-GP2 Tablet SR","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":251503,"name":"Zenadryl Syrup","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Plenteous Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ammonium Chloride (138mg/5ml) ","short_composition2":" Sodium Citrate (57.03mg/5ml) "},{"id":251504,"name":"Zaduclav Dry Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":251505,"name":"Zenipant 40mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251506,"name":"Zylep C Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (0.5mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":251507,"name":"Zmont FX 10mg/120mg Tablet","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Benedic Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Montelukast (10mg) ","short_composition2":" Fexofenadine (120mg)"},{"id":251508,"name":"Ziprax LB 50mg Tablet DT","price":40.06,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (20Million spores)"},{"id":251509,"name":"Zupox 200mg Tablet","price":202,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251510,"name":"Zumroil Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":251511,"name":"Zivahale FB 6mcg/400mcg Capsule","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Zivago Pharma Private Limited","type":"allopathy","pack_size_label":"bottle of 30 capsules","short_composition1":"Formoterol (6mcg) ","short_composition2":" Budesonide (400mcg)"},{"id":251512,"name":"Zentra 100mg Capsule","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":251513,"name":"Zopenta 12.5mg Tablet ER","price":91.43,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Zolpidem (12.5mg)","short_composition2":""},{"id":251514,"name":"Zitholide 250 Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Disecure Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg) ","short_composition2":" Lactic acid bacillus (60Million spores)"},{"id":251515,"name":"Zantid 150mg Tablet","price":4.83,"Is_discontinued":"FALSE","manufacturer_name":"Jarson Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ranitidine (150mg)","short_composition2":""},{"id":251516,"name":"Zedem 5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251517,"name":"Zoxton 2gm Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Ampira Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (2000mg)","short_composition2":""},{"id":251518,"name":"Zeocin 500mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":251519,"name":"Zelevo Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zenkins Pharmaceutical Pvt.Ltd.","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":251520,"name":"Zione DS T 40mg/12.5mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Unichem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":251521,"name":"Zyrab-SR Capsule","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251522,"name":"Zefin 2mg/8mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Uni-Pex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Salbutamol (2mg) ","short_composition2":" Bromhexine (8mg)"},{"id":251523,"name":"Zeethrom 100mg Tablet DT","price":13.5,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 3 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251524,"name":"Zemanil 0.05% Cream","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Alter Ego Pharmaceuticals","type":"allopathy","pack_size_label":"tube of 30 gm Cream","short_composition1":"Clobetasol (0.05% w/w)","short_composition2":""},{"id":251525,"name":"Zeconac 200mg Tablet SR","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":251526,"name":"Zitamax-SB Injection","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Aishwarya Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251527,"name":"Zavier 20mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Eddy Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251528,"name":"Zextra 600mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Dr Reddy's Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Amtolmetin Guacil (600mg)","short_composition2":""},{"id":251529,"name":"Zolsec 20mg Capsule","price":39.16,"Is_discontinued":"FALSE","manufacturer_name":"Aarpik Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251530,"name":"Zedonac Green 50 mg/500 mg Tablet","price":4.91,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":251531,"name":"Zefotib 250mg Tablet","price":3385.46,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gefitinib (250mg)","short_composition2":""},{"id":251532,"name":"Zylocef 100mg Tablet DT","price":84.15,"Is_discontinued":"FALSE","manufacturer_name":"Lupin Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251533,"name":"Zikem 250mg Tablet","price":77.15,"Is_discontinued":"FALSE","manufacturer_name":"Shrinivas Gujarat Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251534,"name":"Zenerv 150mg Capsule","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Eris Lifesciences Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Pregabalin (150mg)","short_composition2":""},{"id":251535,"name":"Zylocef S 250 mg/125 mg Injection","price":49.95,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":251536,"name":"Zonim 100mg Tablet","price":6.72,"Is_discontinued":"FALSE","manufacturer_name":"Ozone Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":251537,"name":"Zedodec 50mg Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":251538,"name":"Zulvas 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":251539,"name":"Zyflur 0.03% Eye Drop","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"bottle of 5 ml Eye Drop","short_composition1":"Flurbiprofen (0.03% w/v)","short_composition2":""},{"id":251540,"name":"Zidomax 100mg Capsule","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":251541,"name":"Zerith 250mg Tablet","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Zephyr Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Erythromycin (250mg)","short_composition2":""},{"id":251542,"name":"Zopilar 40mg Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Vivid Labs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Propranolol (40mg)","short_composition2":""},{"id":251543,"name":"Zeepan D 10mg/40mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251544,"name":"Zoltweet Plus 0.25mg/10mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Tweet India Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Propranolol (10mg)"},{"id":251545,"name":"Zovinex 250mg Injection","price":373,"Is_discontinued":"FALSE","manufacturer_name":"Novo Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Acyclovir (250mg)","short_composition2":""},{"id":251546,"name":"Zelcocef 1000mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Leenate Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":251547,"name":"Zoprox 100mg Dry Syrup","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg/5ml)","short_composition2":""},{"id":251548,"name":"Zalith 500mg Tablet","price":56.1,"Is_discontinued":"FALSE","manufacturer_name":"Osseous Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251549,"name":"Zago 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Penlon India Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251550,"name":"Zypep T 4000mg/500mg Injection","price":445,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251551,"name":"Zediflox OZ 200mg/500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251552,"name":"Zoltina 2% Cream","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Sunniva Life Science","type":"allopathy","pack_size_label":"tube of 20 gm Cream","short_composition1":"Ketoconazole (2% w/w)","short_composition2":""},{"id":251553,"name":"Zanox 400mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Orley Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":251554,"name":"Zibutol INH 300mg/800mg Tablet","price":44.1,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Isoniazid (300mg) ","short_composition2":" Ethambutol (800mg)"},{"id":251555,"name":"Zapcer 20mg Capsule","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Elite Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251556,"name":"Zodipin 5mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"Zorex Pharma Pvt Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg)","short_composition2":""},{"id":251557,"name":"Zorvof 500mg Tablet","price":32.71,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":251558,"name":"Zigpril 2.5mg Tablet","price":42.31,"Is_discontinued":"FALSE","manufacturer_name":"Biocon","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (2.5mg)","short_composition2":""},{"id":251559,"name":"Zoftadol Plus 37.5mg/325mg Tablet","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251560,"name":"Zefact 250mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Medivaxia Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251561,"name":"Zithroxin 250mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Remantra Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251562,"name":"Zesiron 8mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Oddiant Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (8mg)","short_composition2":""},{"id":251563,"name":"Zeftil O CV Dry Syrup","price":86.35,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":251564,"name":"Zetax O-CV 162.5 Tablet","price":104.6,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":251565,"name":"Zoney DM 10mg/20mg Capsule","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Progressive Life Care","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251566,"name":"Zukarest Plus Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Diphenhydramine (25mg) "},{"id":251567,"name":"Zolistin 1MIU Injection","price":760,"Is_discontinued":"FALSE","manufacturer_name":"LG Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (1Million IU)","short_composition2":""},{"id":251568,"name":"Zytax-CV 200mg/125mg Tablet","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251569,"name":"Zidi 1gm Injection","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Medial Pharma Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1gm)","short_composition2":""},{"id":251570,"name":"Zofixi Dry Syrup","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":251571,"name":"Zeopar-Forte Tablet","price":76.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251572,"name":"Zamicin 500mg Tablet","price":64.9,"Is_discontinued":"FALSE","manufacturer_name":"Abiz Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251573,"name":"Zimfe SP 100mg/325mg/15mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251574,"name":"Zofton 200mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251575,"name":"Zim OZ 200mg/500mg Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Nitro Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251576,"name":"Zinio 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Aprique Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251577,"name":"Zentrox Plus 1000mg/500mg Injection","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Zenkins Pharmaceutical Pvt.Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251578,"name":"Zypride M Forte 1mg/1000mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zynor Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (1000mg)"},{"id":251579,"name":"Z Thro 150mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":251580,"name":"Zolvex Oral Suspension","price":149.6,"Is_discontinued":"FALSE","manufacturer_name":"Werke Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Linezolid (100mg)","short_composition2":""},{"id":251581,"name":"Zeconac SP 100mg/325mg/15mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251582,"name":"Zyvana MV 2mg/500mg/0.2mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":251583,"name":"Zovinem 1000mg Injection","price":1650,"Is_discontinued":"FALSE","manufacturer_name":"Zovilon Healthcare Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":251584,"name":"Zapp T 1000mg/125mg Injection","price":151,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251585,"name":"Zeltel AM 40mg/5mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Amlodipine (5mg)"},{"id":251586,"name":"Ziroxikan 20mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Albia Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Piroxicam (20mg)","short_composition2":""},{"id":251587,"name":"Zyrof 12.5mg Injection","price":2991.25,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Rofecoxib (12.5mg)","short_composition2":""},{"id":251588,"name":"Zaan CT 500 mg/600 mg Tablet","price":89.93,"Is_discontinued":"FALSE","manufacturer_name":"Vanguard Therapeutics Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":251589,"name":"Zyether Injection","price":62.5,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Arteether (NA)","short_composition2":""},{"id":251590,"name":"ZEXATE 15 MG INJECTION","price":50,"Is_discontinued":"TRUE","manufacturer_name":"Fresenius Kabi India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Methotrexate (15mg)","short_composition2":""},{"id":251591,"name":"Zylocef T 500 mg/62.5 mg Injection","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Tazobactum (62.5mg)"},{"id":251592,"name":"Zobert 500 mg/500 mg Injection","price":119.05,"Is_discontinued":"FALSE","manufacturer_name":"Viilbery Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251593,"name":"Zizi 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Mestra Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251594,"name":"Ziclof-MR Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zircon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251595,"name":"Zenocef 100mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251596,"name":"Zantid Plus 10mg/300mg Tablet","price":5.35,"Is_discontinued":"FALSE","manufacturer_name":"Jarson Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Ranitidine (300mg)"},{"id":251597,"name":"Zuluflox OZ 200mg/500mg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Ronam Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251598,"name":"Zyle 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Pentamark Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":251599,"name":"Z Bend 200mg Oral Suspension","price":16.8,"Is_discontinued":"FALSE","manufacturer_name":"Maxx Farmacia (India) Lip","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":251600,"name":"Zoycef 250 Tablet DT","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":251601,"name":"Zocalme 0.25mg Tablet","price":10.4,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":251602,"name":"Zall Plus Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Ambroxol (15mg)"},{"id":251603,"name":"Zekool-O Suspension","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 170 ml Suspension","short_composition1":"Magaldrate (540mg) ","short_composition2":" Simethicone (50mg) "},{"id":251604,"name":"Zidovex 100mg Capsule","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":251605,"name":"Zipodox O 50mg Dry Syrup Mango","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Orsis Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":251606,"name":"Zuter-L Syrup","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg) ","short_composition2":" Levosalbutamol (1mg) "},{"id":251607,"name":"Zifpime-TZ Injection","price":298,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251608,"name":"Zutris 250 Tablet","price":69.5,"Is_discontinued":"FALSE","manufacturer_name":"Soinsvie Pharmacia Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251609,"name":"Zetax O 50mg Tablet DT","price":58.45,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":251610,"name":"Zelmont F 10mg/120mg Tablet","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Montelukast (10mg) ","short_composition2":" Fexofenadine (120mg)"},{"id":251611,"name":"Zenikast Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":251612,"name":"Zenirab L 75mg/20mg Capsule SR","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251613,"name":"Zithmust 200mg Oral Suspension","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Aconwell Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251614,"name":"Zidcyp T Syrup","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Cyproheptadine (2mg) ","short_composition2":" Tricholine Citrate (275mg)"},{"id":251615,"name":"Zolme 3D 40mg/5mg/12.5mg Tablet","price":171,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (40mg) ","short_composition2":" Amlodipine (5mg) "},{"id":251616,"name":"Zeora LS 75mg/20mg Capsule SR","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251617,"name":"Zeora D 30mg/20mg Capsule SR","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251618,"name":"Zentran 200mg Capsule","price":346,"Is_discontinued":"FALSE","manufacturer_name":"Zenkins Pharmaceutical Pvt.Ltd.","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251619,"name":"Zolpisys CR 500 Tablet","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Human Biolife India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Sodium Valproate (333mg) ","short_composition2":" Valproic Acid (145mg)"},{"id":251620,"name":"Ziomi D 10mg/20mg Tablet","price":79.9,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251621,"name":"Z Cef 1000mg Injection","price":231,"Is_discontinued":"FALSE","manufacturer_name":"Uniword Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg)","short_composition2":""},{"id":251622,"name":"Zara 250mg Tablet","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Bushra Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251623,"name":"Zuvicin 100mg Injection","price":2335,"Is_discontinued":"FALSE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Epirubicin (100mg)","short_composition2":""},{"id":251624,"name":"ZOMITAC 10MG/150MG TABLET","price":90.71,"Is_discontinued":"TRUE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Ranitidine (150mg)"},{"id":251625,"name":"Z-Sar-H 50mg/12.5mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Corazon Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":251626,"name":"Zithrolect 100mg/5ml Suspension","price":26.14,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251627,"name":"Zinus-L 5mg Tablet","price":32.5,"Is_discontinued":"FALSE","manufacturer_name":"Cronus Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":251628,"name":"Zifcy Syrup","price":52.92,"Is_discontinued":"FALSE","manufacturer_name":"Axenic Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":251629,"name":"Zuesic-P 100mg/325mg Tablet","price":29.35,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251630,"name":"Zytax-AZ 200mg/250mg Tablet","price":99.6,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":251631,"name":"Ziptum 4000 mg/500 mg Injection","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Ind Swift Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251632,"name":"Zegecid 40mg Capsule","price":82.86,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (40mg)","short_composition2":""},{"id":251633,"name":"Zupaxel 100mg Injection","price":2267.57,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Paclitaxel (100mg)","short_composition2":""},{"id":251634,"name":"Zendec 25mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Kaizen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":251635,"name":"Zodime 200mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Edifice Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251636,"name":"Zyst D 10mg/40mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Ortin Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251637,"name":"Zeerab 20mg Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251638,"name":"Zedclav Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zedchem Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":251639,"name":"Zidanben K Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zeemat Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251640,"name":"Zovimax CV 1000mg/200mg Injection","price":134,"Is_discontinued":"FALSE","manufacturer_name":"Kritikos Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":251641,"name":"Zyprab 20mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251642,"name":"Zicolin Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Citicoline (500mg)","short_composition2":""},{"id":251643,"name":"Ziyaclav Dry Syrup","price":56.99,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":251644,"name":"Zidim 500mg Injection","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Impileo Lifescience","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (500mg)","short_composition2":""},{"id":251645,"name":"Zupox O 200mg/200mg Tablet","price":307,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251646,"name":"Zitropid 500mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Rapidchem Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251647,"name":"Zimspor O Dry Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Ofloxacin (50mg/5ml)"},{"id":251648,"name":"Zefocef LB 50mg Dry Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251649,"name":"Zetacef Oral Suspension","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Servocare Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":251650,"name":"Zeodent Dental Gel","price":76.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"tube of 50 gm Dental Gel","short_composition1":"Potassium Nitrate (5% w/w) ","short_composition2":" Sodium Monofluorophosphate (0.7% w/w) "},{"id":251651,"name":"Zyser 10mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Divine Savior Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":251652,"name":"Zatrofix OF 200mg/200mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251653,"name":"Zymotryp Forte 100000AU Tablet","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Trypsin Chymotrypsin (100000AU)","short_composition2":""},{"id":251654,"name":"Zaalkryp 6mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Kryptomed Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251655,"name":"Zeo CV DS Dry Syrup","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (400mg) ","short_composition2":" Clavulanic Acid (57mg)"},{"id":251656,"name":"Zithoter 500 Tablet","price":71.33,"Is_discontinued":"FALSE","manufacturer_name":"Terra Pharma Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251657,"name":"Zargesic-MR Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":251658,"name":"Zesnac S 50mg/10mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251659,"name":"Zednac 200mg Tablet SR","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":251660,"name":"Zurisyp Syrup","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Adison Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Disodium Hydrogen Citrate (1.37gm/5ml)","short_composition2":""},{"id":251661,"name":"Zeritin Cold Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Plenteous Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (0.5mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":251662,"name":"Zacra M Kid 2.5mg/4mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":251663,"name":"Zeopan 40mg Tablet","price":65.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251664,"name":"Zeflux Injection","price":98,"Is_discontinued":"FALSE","manufacturer_name":"ZDL(Zodiacal) Pharmaceutics Pvt.Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Esomeprazole (40mg)","short_composition2":""},{"id":251665,"name":"Zidalk 1.25gm Syrup","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Disodium Hydrogen Citrate (1.25gm/5ml)","short_composition2":""},{"id":251666,"name":"Zubinate 60mg Injection","price":183,"Is_discontinued":"FALSE","manufacturer_name":"Torres Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":251667,"name":"Zenfenac 50mg/325mg Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Zen Labs India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251668,"name":"Zesclav 625 Tablet","price":202,"Is_discontinued":"FALSE","manufacturer_name":"Zesstek Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251669,"name":"Ziyacef O 200mg/200mg Tablet","price":156.4,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251670,"name":"Zaros 20mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Addissun Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":251671,"name":"Zitcon 200mg Oral Suspension","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251672,"name":"Zemef A 80mg/100mg Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Global Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Aceclofenac (100mg)"},{"id":251673,"name":"Zitoric 90mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (90mg)","short_composition2":""},{"id":251674,"name":"Zemcifer 20mg Injection","price":172.95,"Is_discontinued":"FALSE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 2.5 ml Injection","short_composition1":"Iron (20mg)","short_composition2":""},{"id":251675,"name":"Zafil 200mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251676,"name":"Zefikay 50mg Dry Syrup","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":251677,"name":"Zonde 2mg Injection","price":19.5,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":251678,"name":"Zegecid 20mg Capsule","price":48.07,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251679,"name":"Zigpril 5mg Capsule","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Biocon","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ramipril (5mg)","short_composition2":""},{"id":251680,"name":"Zlide 500mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Bion Therapeutics India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251681,"name":"Zorpex 150mg Tablet","price":73.6,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 14 tablets","short_composition1":"Roxatidine (150mg)","short_composition2":""},{"id":251682,"name":"Zimostat 10mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Zim Laboratories Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":251683,"name":"Zixif 200mg Tablet","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251684,"name":"Zolcent 5mg Tablet","price":41.05,"Is_discontinued":"FALSE","manufacturer_name":"Crescent Therapeutics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251685,"name":"Zyquin 400mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Gatifloxacin (400mg)","short_composition2":""},{"id":251686,"name":"Zonit 25mg Capsule","price":26.63,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zonisamide (25mg)","short_composition2":""},{"id":251687,"name":"Zondel 100mg/150mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ibuprofen (100mg) ","short_composition2":" Chlorzoxazone (150mg)"},{"id":251688,"name":"Zipsydon 60mg Capsule","price":91.01,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (60mg)","short_composition2":""},{"id":251689,"name":"Zysma Syrup","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Acebrophylline (50mg)","short_composition2":""},{"id":251690,"name":"Zo-Clav 200mg/28.5mg Dry Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":251691,"name":"Zuesic-P Syrup","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Mefenamic Acid (50mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml)"},{"id":251692,"name":"Zedinir 125mg Dry Syrup","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefdinir (125mg)","short_composition2":""},{"id":251693,"name":"Zitrobid 250mg Tablet","price":64.6,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251694,"name":"Zypentin 100mg/10mg Capsule","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Zepsilon Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Gabapentin (100mg) ","short_composition2":" Nortriptyline (10mg)"},{"id":251695,"name":"Zimnex DS 100mg Dry Syrup","price":67.87,"Is_discontinued":"FALSE","manufacturer_name":"Ultratech Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251696,"name":"Zobit OZ 50mg/125mg Oral Suspension","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Jpee Drugs","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":251697,"name":"Zecephylo 100mg Capsule","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Bonsai Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":251698,"name":"Zodipin Plus 5mg/50mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Zorex Pharma Pvt Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Atenolol (50mg)"},{"id":251699,"name":"Zolve 750mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levetiracetam (750mg)","short_composition2":""},{"id":251700,"name":"Zogat 400mg Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Suzen Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gatifloxacin (400mg)","short_composition2":""},{"id":251701,"name":"Zovikos LB 500mg/125mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Apikos Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":251702,"name":"Zenocef-S 1gm/0.5gm Injection","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1gm) ","short_composition2":" Sulbactam (0.5gm)"},{"id":251703,"name":"Zubidol MR 100mg/325mg/250mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Axnture Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251704,"name":"Zifcas CV 200mg/125mg Tablet","price":242,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251705,"name":"Zety ES 0.5mg/10mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.5mg) ","short_composition2":" Escitalopram Oxalate (10mg)"},{"id":251706,"name":"Zoncet M 5mg/10mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":251707,"name":"Zulicon 1% Cream","price":271,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"tube of 30 gm Cream","short_composition1":"Luliconazole (1% w/w)","short_composition2":""},{"id":251708,"name":"Zeoroxime CV 500mg/125mg Tablet","price":465,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251709,"name":"Zhquine 400mg Tablet","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydroxychloroquine (400mg)","short_composition2":""},{"id":251710,"name":"Zoycid-O Oral Solution","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Solution","short_composition1":"Magaldrate (480mg) ","short_composition2":" Simethicone (20mg) "},{"id":251711,"name":"Zyconazol 100 Capsule","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":251712,"name":"Ziclofenac S 50mg/10mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251713,"name":"Zafkof-AM Syrup Sugar Free","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Spranza Vita Pharmaceutical LLP","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":251714,"name":"Zeeter 500mg Tablet","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Laxter Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251715,"name":"Zikcef O LB 200mg/200mg Tablet","price":178.7,"Is_discontinued":"FALSE","manufacturer_name":"Archmed Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":251716,"name":"Zithmust 100mg Oral Suspension","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Aconwell Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251717,"name":"Zicam 20mg Tablet","price":7,"Is_discontinued":"FALSE","manufacturer_name":"Terrace Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Piroxicam (20mg)","short_composition2":""},{"id":251718,"name":"Zithcott 500 Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Estocott Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251719,"name":"Zodesic P 100mg/325mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Felix Health Park","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251720,"name":"Zithrovil 250 Tablet","price":66.5,"Is_discontinued":"FALSE","manufacturer_name":"Fibovil Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251721,"name":"Zipon 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Simon Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251722,"name":"Zithronic 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Bionics Remedies","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251723,"name":"Zithor 500 Tablet","price":71.33,"Is_discontinued":"FALSE","manufacturer_name":"Medset Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251724,"name":"Zunaglim M 2mg/500mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":251725,"name":"Zifpod 200 Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251726,"name":"Zylomak 300mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Trimak Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (300mg)","short_composition2":""},{"id":251727,"name":"Zenmark 100mg Syrup","price":103,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":251728,"name":"Zanpan 40mg Tablet","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Wallace Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251729,"name":"Zolecus P40 Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"SUNRISE PHARMACEUTICAL","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251730,"name":"Zoxotrox TZ 1000mg/125mg Injection","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251731,"name":"Ziyanil M Oral Suspension","price":37.5,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":251732,"name":"Zokold Plus 5mg/325mg/10mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251733,"name":"Zanovid 200mg Infusion","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Bal Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251734,"name":"Zicin 100mg Tablet","price":28.57,"Is_discontinued":"FALSE","manufacturer_name":"GRAF Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251735,"name":"Zoxclox 250 mg/250 mg Capsule","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":251736,"name":"Zeficar 2mg Tablet","price":46.1,"Is_discontinued":"FALSE","manufacturer_name":"J B Chemicals and Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":251737,"name":"Zeefix 50mg Dry Syrup","price":42.21,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":251738,"name":"ZARATE 20 MG TABLET","price":37,"Is_discontinued":"TRUE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 7 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251739,"name":"Zithcure 500mg Tablet","price":60.66,"Is_discontinued":"FALSE","manufacturer_name":"Dr Cure Pharmaceuticals India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251740,"name":"Zengat Eye Ointment","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Klar Sehen Pvt Ltd","type":"allopathy","pack_size_label":"tube of 5 gm Eye Ointment","short_composition1":"Gatifloxacin (0.3% w/v)","short_composition2":""},{"id":251741,"name":"Zoflick Pod 200mg/200mg Tablet","price":227,"Is_discontinued":"FALSE","manufacturer_name":"Maverick Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251742,"name":"Zenotin NF Suspension","price":32.37,"Is_discontinued":"FALSE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":251743,"name":"Zuthrox NZ 125mg/50mg Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Nitazoxanide (125mg) ","short_composition2":" Ofloxacin (50mg)"},{"id":251744,"name":"Zatropod CV 200mg/125mg Tablet","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251745,"name":"Zincobal-GF Injection","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1000mcg) ","short_composition2":" Thiamine(Vitamin B1) (100mg) "},{"id":251746,"name":"Zithax 500mg Tablet","price":62.55,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251747,"name":"Zotacef S 1000 mg/500 mg Injection","price":123.75,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251748,"name":"Zoceclo MR 100mg/325mg/250mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251749,"name":"Zilin 600mg Tablet","price":350,"Is_discontinued":"FALSE","manufacturer_name":"Caventus Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251750,"name":"Zecy DSR 30mg/40mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Columbus Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251751,"name":"Zolit 10mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Anikem Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":251752,"name":"Ziyatil 500mg Tablet","price":330,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":251753,"name":"Zabee L 75mg/20mg Capsule SR","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Medok Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251754,"name":"Zetum 1500mg Injection","price":325,"Is_discontinued":"FALSE","manufacturer_name":"Scott Edil Pharmacia Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":251755,"name":"Zilmont LC 5mg/10mg Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":251756,"name":"Zeed 6mg Oral Suspension","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251757,"name":"Zeriton BR Syrup","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (2mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":251758,"name":"Zoran Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"I.I.F.A Health Care","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251759,"name":"Zitvom 2mg Oral Drops","price":33.7,"Is_discontinued":"FALSE","manufacturer_name":"Zither Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Drops","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":251760,"name":"Zeocin OZ Oral Suspension","price":38.45,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":251761,"name":"Zarobac T 1000mg/125mg Injection","price":340,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251762,"name":"Zazogesic MR 100mg/325mg/250mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Uko Pharmatech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251763,"name":"Zoranac MR 100mg/325mg/250mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Jchem Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251764,"name":"Zetacef-CV Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Servocare Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251765,"name":"Zederma Ointment","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Beclometasone (0.025% w/w) ","short_composition2":" Neomycin (0.5% w/w) "},{"id":251766,"name":"Zipcold-DX Soft Gelatin Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Lifekyor Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Guaifenesin (100mg) ","short_composition2":" Dextromethorphan Hydrobromide (10mg) "},{"id":251767,"name":"Zyn 250mg Tablet","price":15.68,"Is_discontinued":"FALSE","manufacturer_name":"Siomond Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251768,"name":"Zocip 500mg Tablet","price":37.7,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":251769,"name":"Zoppy OZ 200mg/500mg IV Infusion","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Apus Life Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251770,"name":"Zwick-Spas 10mg/250mg Tablet","price":18.5,"Is_discontinued":"FALSE","manufacturer_name":"Keona Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":251771,"name":"Zariclav BD Dry Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zaria Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":251772,"name":"Z8 5mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":251773,"name":"Zonic TZ 1000mg/125mg Injection","price":249,"Is_discontinued":"FALSE","manufacturer_name":"Fantabulous Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251774,"name":"Ziplan 1.5mg Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Haloperidol (1.5mg)","short_composition2":""},{"id":251775,"name":"Zithrovil 100mg Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Fibovil Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251776,"name":"Zeulin 500mg Injection","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Citicoline (500mg)","short_composition2":""},{"id":251777,"name":"Zenpar-Cold Oral Suspension","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Zenexa Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (250mg) "},{"id":251778,"name":"Z Cox 120mg Tablet","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (120mg)","short_composition2":""},{"id":251779,"name":"Zitmik 100mg Injection","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Biomax Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":251780,"name":"Zolione 600mg Tablet","price":358,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":251781,"name":"Zuef O 100mg Tablet DT","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":251782,"name":"Zulip G Forte 2mg/1000mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Corazon Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (1000mg)"},{"id":251783,"name":"Zexime AZ 200mg/250mg Tablet","price":242,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":251784,"name":"Zmost 500 Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Evantis Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251785,"name":"Zeocet L 2.5mg Syrup","price":45.6,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg/5ml)","short_composition2":""},{"id":251786,"name":"Zycin 200mg Redimix Suspension","price":30.13,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Redimix Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251787,"name":"Zomav 150mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":251788,"name":"Zegecid 40mg Powder","price":11.7,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 6 gm Powder","short_composition1":"Omeprazole (40mg)","short_composition2":""},{"id":251789,"name":"Zondel 400mg/250mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ibuprofen (400mg) ","short_composition2":" Chlorzoxazone (250mg)"},{"id":251790,"name":"Zvd 300mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Mcneil & Argus Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":251791,"name":"Zythrol 250mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Novagen Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251792,"name":"Zovidac 200mg Tablet DT","price":84.63,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Acyclovir (200mg)","short_composition2":""},{"id":251793,"name":"Zyclo 250mg/250mg Injection","price":12.5,"Is_discontinued":"FALSE","manufacturer_name":"Elfin Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ampicillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":251794,"name":"Zytil 250mg Tablet","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":251795,"name":"Zytorse 10mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zanetaz Medicorp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Torasemide (10mg)","short_composition2":""},{"id":251796,"name":"Zimfe-TH 100mg/4mg Tablet","price":152,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":251797,"name":"Ziticin 100mg Tablet DT","price":74.5,"Is_discontinued":"FALSE","manufacturer_name":"Adley Formulations","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251798,"name":"Zenof 100mg Tablet","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":251799,"name":"Zenox Eye Drop","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Eye Drop","short_composition1":"Ofloxacin (0.3% w/w)","short_composition2":""},{"id":251800,"name":"Zyl N 400mg Tablet","price":17,"Is_discontinued":"FALSE","manufacturer_name":"Elikem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg)","short_composition2":""},{"id":251801,"name":"Zon 250mg Injection","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Oscar Remedies Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":251802,"name":"ZADRO 125 MG TABLET","price":12,"Is_discontinued":"TRUE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefadroxil (125mg)","short_composition2":""},{"id":251803,"name":"Zoftagen 80mg Injection","price":6.74,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Gentamicin (80mg)","short_composition2":""},{"id":251804,"name":"Zondan 2mg Injection","price":34.35,"Is_discontinued":"FALSE","manufacturer_name":"Glaxo SmithKline Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":251805,"name":"Zoveran 10mg Injection","price":11.45,"Is_discontinued":"FALSE","manufacturer_name":"MDC Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (10mg)","short_composition2":""},{"id":251806,"name":"Zoxin 1gm Injection","price":69,"Is_discontinued":"TRUE","manufacturer_name":"Litaka Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Diclofenac (1gm)","short_composition2":""},{"id":251807,"name":"Zgesic Plus Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Rudiment Life Science Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251808,"name":"Zuzox 200mg Tablet","price":52.5,"Is_discontinued":"FALSE","manufacturer_name":"Penam Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251809,"name":"Zolocid 40mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Ventura Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251810,"name":"Zoneros 1.5 Injection","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Crossford Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251811,"name":"Zopip 4000mg/500mg Injection","price":446.44,"Is_discontinued":"FALSE","manufacturer_name":"Novus Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":251812,"name":"Zylin 150mg Capsule","price":164,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Pregabalin (150mg)","short_composition2":""},{"id":251813,"name":"Zitrac 100mg Oral Suspension","price":33.4,"Is_discontinued":"FALSE","manufacturer_name":"Pinarc Life Sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251814,"name":"Zanperison 50mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Eperisone (50mg)","short_composition2":""},{"id":251815,"name":"Zicef-SB 375 Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":251816,"name":"Zeromed-MR Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Medofy Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251817,"name":"Zedpod-CV Tablet","price":284,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251818,"name":"Ziprotil CV Dry Syrup","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Calen Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":251819,"name":"Zo-Itra 100 Capsule","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Zorris Lifesciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":251820,"name":"Zacnol 200mg Tablet","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251821,"name":"Zabvis D 30mg/40mg Capsule SR","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Aelivs Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251822,"name":"Zubicef Tablet DT","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Voxiva Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251823,"name":"Zinilet Kid Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Saturn Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":251824,"name":"Zefocef LB 200mg Tablet","price":188,"Is_discontinued":"FALSE","manufacturer_name":"Dawson Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251825,"name":"Zofix-AZ Tablet","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":251826,"name":"Zevicef 200 LB Tablet","price":144,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251827,"name":"Zarmet-GP1 Tablet SR","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg)"},{"id":251828,"name":"Zumitra 200mg Capsule","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251829,"name":"Zapp 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":251830,"name":"Zelakot M 8mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (8mg)","short_composition2":""},{"id":251831,"name":"Zotopod-OF Tablet","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Accilex Nutricorp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251832,"name":"Zorem Plus 5mg/50mg/12.5mg Tablet","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ramipril (5mg) ","short_composition2":" Losartan (50mg) "},{"id":251833,"name":"Zicef 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":251834,"name":"Zoldin D 10mg/20mg Capsule","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Divine Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251835,"name":"Zac 200mg Tablet SR","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Corvin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":251836,"name":"Zimac 100mg Oral Suspension","price":44.5,"Is_discontinued":"FALSE","manufacturer_name":"Mint Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251837,"name":"Zerokuff BR Syrup","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (8mg/5ml) ","short_composition2":" Guaifenesin (100mg/5ml) "},{"id":251838,"name":"Zithmark 100mg Oral Suspension","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Indmark Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251839,"name":"Ziyarab 20mg Tablet","price":54.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":251840,"name":"Zydexa Plus 4mg Injection","price":15,"Is_discontinued":"FALSE","manufacturer_name":"German Remedies","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Dexamethasone (4mg)","short_composition2":""},{"id":251841,"name":"Zofrid OZ 200mg/500mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251842,"name":"Zythscot 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Adenscot Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251843,"name":"Zopcef 200mg Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Exide Healthcare Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (200mg)","short_composition2":""},{"id":251844,"name":"Zyara 40mg Injection","price":46.6,"Is_discontinued":"FALSE","manufacturer_name":"Ambrons pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251845,"name":"Zepid Plus 3 mg/2 mg Tablet","price":36.63,"Is_discontinued":"FALSE","manufacturer_name":"Psychotropics India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (3mg) ","short_composition2":" Trihexyphenidyl (2mg)"},{"id":251846,"name":"Zeeon Suspension","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Fitwel Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":251847,"name":"Zorelbin 50mg Injection","price":11700,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Vinorelbine (50mg)","short_composition2":""},{"id":251848,"name":"Zyclav 250 mg/125 mg Tablet","price":152.37,"Is_discontinued":"FALSE","manufacturer_name":"Divine Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251849,"name":"Zoylex 500mg Injection","price":670,"Is_discontinued":"FALSE","manufacturer_name":"Vhb Life Sciences Inc","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Acyclovir (500mg)","short_composition2":""},{"id":251850,"name":"Zekpod 200mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Alwin Wilcare Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":251851,"name":"Zopral 0.25mg Tablet","price":7,"Is_discontinued":"FALSE","manufacturer_name":"Osho Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":251852,"name":"Zuath 250mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Positif Life sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251853,"name":"Zitrich Oral Suspension","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251854,"name":"Zofixi 200mg Tablet","price":90.8,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251855,"name":"Zemol 1000mg Infusion","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Paracetamol (1000mg)","short_composition2":""},{"id":251856,"name":"Zicerot 1gm/1gm Injection","price":3418,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Imipenem (1gm) ","short_composition2":" Cilastatin (1gm)"},{"id":251857,"name":"Zedan P 50mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Biological","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (50mg)","short_composition2":""},{"id":251858,"name":"Zefim 200mg Tablet DT","price":172.5,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251859,"name":"Zybelol 20mg Injection","price":296,"Is_discontinued":"FALSE","manufacturer_name":"Zanetaz Medicorp","type":"allopathy","pack_size_label":"vial of 4 ml Injection","short_composition1":"Labetalol (20mg)","short_composition2":""},{"id":251860,"name":"Zopime T 1gm/125mg Injection","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Mexato Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (1gm) ","short_composition2":" Tazobactum (125mg)"},{"id":251861,"name":"Zubimox 250mg Capsule","price":21.5,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":251862,"name":"Zeriheal 90mg/48mg/200mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (90mg) ","short_composition2":" Trypsin (48mg) "},{"id":251863,"name":"ZORDIL 2 MG TABLET DT","price":44.6,"Is_discontinued":"TRUE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":251864,"name":"Zomark 0.5mg Tablet SR","price":20.95,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":251865,"name":"Zefun 150mg Tablet","price":30.34,"Is_discontinued":"FALSE","manufacturer_name":"S H Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 2 tablets","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":251866,"name":"Zithree 100mg/5ml Suspension","price":26.15,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":251867,"name":"Zubacef 1000mg/125mg Injection","price":190,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251868,"name":"Zorocin 250mg Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Condor Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251869,"name":"Zorocin 500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Condor Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251870,"name":"Zacan 6mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Canipla Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":251871,"name":"Zyclomine 10mg/250mg Tablet","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":251872,"name":"Zacrol T 100mg/4mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":251873,"name":"Zardcef-S 1.5gm Injection","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251874,"name":"Zecapro 10mg Tablet","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Zensar Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg)","short_composition2":""},{"id":251875,"name":"Zedflox 400mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Smilax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg)","short_composition2":""},{"id":251876,"name":"Zantof LB 200mg Tablet","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251877,"name":"Zomitron 4mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Healers Lab","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":251878,"name":"Zulid P 100mg/500mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Cadex Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":251879,"name":"Zolop 20mg Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Albin Healthcare","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":251880,"name":"Zeftil O Syrup","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (100mg/5ml)","short_composition2":""},{"id":251881,"name":"Zoprox 100mg Tablet","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":251882,"name":"Zofylin 400mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Doxofylline (400mg)","short_composition2":""},{"id":251883,"name":"Zixum LB 200mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Roseate Medicare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251884,"name":"Zocpan D 10mg/40mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251885,"name":"Zeronac R 100mg/500mg/10mg Capsule","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"strip of 6 capsules","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (500mg) "},{"id":251886,"name":"Zeudca 150mg Tablet","price":149.9,"Is_discontinued":"FALSE","manufacturer_name":"Lifeline Remedies India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ursodeoxycholic Acid (150mg)","short_composition2":""},{"id":251887,"name":"Ziotil CV 200mg/125mg Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251888,"name":"Zosdem Clav 200mg/125mg Tablet","price":93.75,"Is_discontinued":"FALSE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":251889,"name":"Zas-Tin 3MIU Injection","price":4349,"Is_discontinued":"FALSE","manufacturer_name":"Suzan Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (3Million IU)","short_composition2":""},{"id":251890,"name":"Zenadryl Syrup","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Plenteous Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 150 ml Syrup","short_composition1":"Ammonium Chloride (138mg/5ml) ","short_composition2":" Sodium Citrate (57.03mg/5ml) "},{"id":251891,"name":"Zofton-OZ Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251892,"name":"Zoecef O 200mg/200mg Tablet","price":132,"Is_discontinued":"FALSE","manufacturer_name":"Evax Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251893,"name":"Zednac TH 4mg/100mg/325mg Tablet","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Thiocolchicoside (4mg) ","short_composition2":" Aceclofenac (100mg) "},{"id":251894,"name":"Zicef 250mg Injection","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":251895,"name":"Zemonec SP Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Hummed Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251896,"name":"Zonflox B 0.3% Eye Drop","price":55,"Is_discontinued":"FALSE","manufacturer_name":"NV Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 5 ml Eye Drop","short_composition1":"Ofloxacin (0.3% w/v)","short_composition2":""},{"id":251897,"name":"Z-Bank 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Indica Biolife Sciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251898,"name":"Zethro 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251899,"name":"Zithram 500mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Rampton Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251900,"name":"Zolecell D 30mg/40mg Capsule SR","price":129.17,"Is_discontinued":"FALSE","manufacturer_name":"Raksh Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":251901,"name":"Zeesuper 500mg Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Watran Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251902,"name":"Zortec LM Kid 2.5mg/4mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Laxter Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":251903,"name":"Zitlite 20 Capsule","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Dermacure Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Isotretinoin (20mg)","short_composition2":""},{"id":251904,"name":"Zxone Injection","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zenotis Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":251905,"name":"Zitnez 500mg Tablet","price":69.4,"Is_discontinued":"FALSE","manufacturer_name":"Akunez Biotech","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251906,"name":"Zidovex L Plus E 300mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":251907,"name":"Zarate D 30 mg/20 mg Tablet","price":47,"Is_discontinued":"TRUE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251908,"name":"Zyvana 2 Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg)","short_composition2":""},{"id":251909,"name":"Zisdon 2mg Tablet","price":29.7,"Is_discontinued":"FALSE","manufacturer_name":"Ivy Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (2mg)","short_composition2":""},{"id":251910,"name":"Zcin 250mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Willow Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251911,"name":"Zildox 50mg Injection","price":2385,"Is_discontinued":"FALSE","manufacturer_name":"Miracalus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Oxaliplatin (50mg)","short_composition2":""},{"id":251912,"name":"Zuroxy Syrup","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Roxithromycin (50mg/5ml)","short_composition2":""},{"id":251913,"name":"Zanthocin 250mg Tablet","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Jasco Labs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251914,"name":"Zithromin 200mg Tablet DT","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 3 tablet dt","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":251915,"name":"Zeloxa 200mg Tablet","price":56.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251916,"name":"Zamacet 500 mg/50 mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Pegasus Farmaco India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol/Acetaminophen (500mg) ","short_composition2":" Tramadol (50mg)"},{"id":251917,"name":"Zenlong P 8 mg/500 mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Khandelwal Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg) ","short_composition2":" Paracetamol (500mg)"},{"id":251918,"name":"Zubact 1000mg/200mg Injection","price":184.76,"Is_discontinued":"FALSE","manufacturer_name":"Natco Pharma Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":251919,"name":"Zerinorm 5mg Syrup","price":12.5,"Is_discontinued":"FALSE","manufacturer_name":"Ciron Drugs & Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Metoclopramide (5mg)","short_composition2":""},{"id":251920,"name":"Zin 1000mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Radicura Pharma pvt ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (1000mg)","short_composition2":""},{"id":251921,"name":"Zencus B Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Zencus Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (2mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":251922,"name":"Zilo P Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Diphenhydramine (25mg) "},{"id":251923,"name":"Zenali 500mg Tablet","price":400,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251924,"name":"Zolome DP 10mg/10mg Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Shalman Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (10mg)"},{"id":251925,"name":"Zypdase 50mg/10mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":251926,"name":"Zediflox 200mg Tablet","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251927,"name":"Zyfer 20mg Injection","price":255,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Iron Sucrose (20mg)","short_composition2":""},{"id":251928,"name":"Zithrolen 250mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Alencure Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":251929,"name":"Zubrilin Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Osiante Biotech","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":251930,"name":"Zither Injection","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Arteether (150mg)","short_composition2":""},{"id":251931,"name":"Zpas 80mg Tablet","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (80mg)","short_composition2":""},{"id":251932,"name":"Zidpan-IV Injection","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":251933,"name":"Zifcef-O Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":251934,"name":"Ziftor 50mg Dry Syrup","price":45.7,"Is_discontinued":"FALSE","manufacturer_name":"Prector Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":251935,"name":"Zitham 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Sevam Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251936,"name":"Zacnix 200mg Tablet DT","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251937,"name":"Zinpa Cold Tablet","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Cetirizine (5mg) "},{"id":251938,"name":"Zetagel 1000mg Oral Suspension","price":159.6,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Suspension","short_composition1":"Sucralfate (1000mg)","short_composition2":""},{"id":251939,"name":"Zancon 200 Tablet","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Morecare Pharmatec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (200mg)","short_composition2":""},{"id":251940,"name":"Zim LB Dry Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Nitro Organics","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251941,"name":"Zim LB 100mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Nitro Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":251942,"name":"Zanulone Tablet","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Prednisolone (10mg)","short_composition2":""},{"id":251943,"name":"Zeropres 0.5mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Godase Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":251944,"name":"Zulta 375mg Tablet","price":410,"Is_discontinued":"FALSE","manufacturer_name":"Frank Medilink","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sultamicillin tosilate (375mg)","short_composition2":""},{"id":251945,"name":"Zonecard-SB 1.5 Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":251946,"name":"Zidif 1000mg Injection","price":238.5,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":251947,"name":"Zenifexo Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Fexofenadine (30mg)","short_composition2":""},{"id":251948,"name":"Zazoderm Cream","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Uko Pharmatech Pvt Ltd","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Clobetasol (0.05% w/v) ","short_composition2":" Miconazole (2% w/v) "},{"id":251949,"name":"Zyconazol 200 Capsule","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":251950,"name":"Zoffy MR 250mg/50mg/325mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":251951,"name":"Zeelox OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zensar Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":251952,"name":"Zoflin 200mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Daffohils Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251953,"name":"Zicolin 500 Tablet","price":420,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citicoline (500mg)","short_composition2":""},{"id":251954,"name":"Zoceclo P Syrup","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":251955,"name":"Zondal 400mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"Aan Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":251956,"name":"Zithomed 500 Tablet","price":118,"Is_discontinued":"FALSE","manufacturer_name":"Medroots Biopharma","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251957,"name":"Zithrolac 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Manlac Pharma","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251958,"name":"Zedphylline 100mg Tablet","price":49.99,"Is_discontinued":"FALSE","manufacturer_name":"Zed Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":251959,"name":"Zilcet 5mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Blismed Pharmaceuticals Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":251960,"name":"Zinagon 5mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Semiotic Pharmaceutical Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":251961,"name":"Zycid D 10mg/20mg Capsule","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Sois Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":251962,"name":"Zirvas 10mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":251963,"name":"Zemhart 60mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Leeford Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diltiazem (60mg)","short_composition2":""},{"id":251964,"name":"Zextine-Forte Tablet CR","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Holy Evolution Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet ir","short_composition1":"Paroxetine (25mg) ","short_composition2":" Clonazepam (0.5mg)"},{"id":251965,"name":"Zoxlet M 5mg/10mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":251966,"name":"Zenofenac-SP Tablet","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Zenobic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":251967,"name":"Zodinac P 50mg/325mg Tablet","price":37.4,"Is_discontinued":"FALSE","manufacturer_name":"M2H Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":251968,"name":"Zaxtro 150mg Tablet","price":249,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Faropenem (150mg)","short_composition2":""},{"id":251969,"name":"Zikem CF Tablet","price":218.25,"Is_discontinued":"FALSE","manufacturer_name":"Shrinivas Gujarat Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":251970,"name":"Zadorabdsr Capsule","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Canvarzys Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":251971,"name":"Zotan 25mg Tablet","price":23.62,"Is_discontinued":"FALSE","manufacturer_name":"Zoticus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (25mg)","short_composition2":""},{"id":251972,"name":"Zygem 200mg Injection","price":1750,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Gemcitabine (200mg)","short_composition2":""},{"id":251973,"name":"Zerelin 5mg Injection","price":2200,"Is_discontinued":"TRUE","manufacturer_name":"Glenmark Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Buserelin (5mg)","short_composition2":""},{"id":251974,"name":"Zimquine 200mg Tablet","price":120.53,"Is_discontinued":"FALSE","manufacturer_name":"Dycine Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Quetiapine (200mg)","short_composition2":""},{"id":251975,"name":"Zoxicam 20mg Injection","price":17.4,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Piroxicam (20mg)","short_composition2":""},{"id":251976,"name":"Zoxaphen K Tablet","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Biological","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":251977,"name":"Zoflick 200 Tablet","price":57.33,"Is_discontinued":"FALSE","manufacturer_name":"Maverick Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":251978,"name":"Zcin 500mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Willow Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":251979,"name":"Zo-Clav 200mg/28.5mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":251980,"name":"Zofixi 100mg Tablet","price":86.7,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":251981,"name":"Zodic 25mg Injection","price":4.6,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (25mg/1ml)","short_composition2":""},{"id":251982,"name":"Zeemol 250mg Suspension","price":32.9,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":251983,"name":"Zonemox 250mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Medizone","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":251984,"name":"Zide-T 1000mg/125mg Injection","price":318,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":251985,"name":"Zeridox CV Oral Suspension","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Zering Smith Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (100mg/5ml) ","short_composition2":" Clavulanic Acid (62.5mg/5ml)"},{"id":251986,"name":"Zopimin S 2mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Psycormedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Eszopiclone (2mg)","short_composition2":""},{"id":251987,"name":"Zopimin S 1mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Psycormedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Eszopiclone (1mg)","short_composition2":""},{"id":251988,"name":"Zonbact O 200mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Eugenics Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":251989,"name":"Zidy 250mg Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zencure Organics","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":251990,"name":"Ziflon 100mg Oral Suspension","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Pragmatics Labs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":251991,"name":"Zenmax Plus Suspension","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Growmax Medicare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Ivermectin (3mg) ","short_composition2":" Albendazole (200mg)"},{"id":251992,"name":"Zeptin 200mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Kentreck Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gatifloxacin (200mg)","short_composition2":""},{"id":251993,"name":"Zuspaz 20mg/500mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Penam Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (20mg) ","short_composition2":" Paracetamol (500mg)"},{"id":251994,"name":"Zeptin 400mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Kentreck Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gatifloxacin (400mg)","short_composition2":""},{"id":251995,"name":"Zoxy Ez 10mg/10mg/2.5mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Oriel Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Doxylamine (10mg) ","short_composition2":" Vitamin B6 (Pyridoxine) (10mg) "},{"id":251996,"name":"Zutris 100mg Oral Suspension","price":32.65,"Is_discontinued":"FALSE","manufacturer_name":"Soinsvie Pharmacia Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":251997,"name":"Zevacid Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zenstar Life Sciences","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg)"},{"id":251998,"name":"Zednac P Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml)"},{"id":251999,"name":"Zenoclav 500mg/125mg Tablet","price":119.42,"Is_discontinued":"FALSE","manufacturer_name":"Zenobio Life Science","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252000,"name":"Zithro 500mg Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"Care Organics Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252001,"name":"Zivocet-AL 5mg/60mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Mepfarma India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Ambroxol (60mg)"},{"id":252002,"name":"Zikti 250mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Pax Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252003,"name":"Zopod-CV 200mg/125mg Tablet","price":310,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252004,"name":"Zekool Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 170 ml Suspension","short_composition1":"Magaldrate (400mg/5ml) ","short_composition2":" Simethicone (20mg/5ml)"},{"id":252005,"name":"Zexcof X Syrup","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (2mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":252006,"name":"Zenipant D 10mg/40mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252007,"name":"Zenfate O Oral Suspension","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Suspension","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":252008,"name":"Zopap 4.5 Injection","price":426.7,"Is_discontinued":"FALSE","manufacturer_name":"Metlar Formulations","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":252009,"name":"Zacnix-O Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252010,"name":"Zarmet-GMP2 Tablet SR","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg) "},{"id":252011,"name":"Zicort 30mg Tablet","price":371,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":252012,"name":"Zythin 500mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Gracia Life Science India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252013,"name":"Zeothro IV 500mg Injection","price":214,"Is_discontinued":"FALSE","manufacturer_name":"Qgensun Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252014,"name":"Zecron TM 500mg/250mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Adiza Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tranexamic Acid (500mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":252015,"name":"Zystroin 10 Softgel Capsule","price":122,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Isotretinoin (10mg)","short_composition2":""},{"id":252016,"name":"Zeo-CV Oral Suspension","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252017,"name":"Zythro 200mg Oral Suspension","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Medsyn Lab Biotech","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252018,"name":"Zolirab D 30mg/20mg Capsule SR","price":73.5,"Is_discontinued":"FALSE","manufacturer_name":"Mas Life Science","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252019,"name":"Z One S 1000mg/500mg Injection","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252020,"name":"Zolib M Forte 2mg/1000mg Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (1000mg)"},{"id":252021,"name":"Zosec 20mg Capsule","price":41.87,"Is_discontinued":"FALSE","manufacturer_name":"Emcure Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252022,"name":"Zairab D 30mg/20mg Capsule SR","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Medswap Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252023,"name":"Zolopep D 30 mg/20 mg Tablet","price":77.13,"Is_discontinued":"TRUE","manufacturer_name":"Indoco Remedies Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252024,"name":"Zenotere 80mg Injection","price":5400,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Docetaxel (80mg)","short_composition2":""},{"id":252025,"name":"Zilonem 500 mg/500 mg Injection","price":1050,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Imipenem (500mg) ","short_composition2":" Cilastatin (500mg)"},{"id":252026,"name":"Zegecid 20mg Oral Suspension","price":5.72,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 6 gm Oral Suspension","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252027,"name":"Zekacin 250mg Injection","price":10.93,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":252028,"name":"Zydiclo 25mg Injection","price":8.55,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (25mg)","short_composition2":""},{"id":252029,"name":"Zofacin Kid 100mg Tablet DT","price":40.01,"Is_discontinued":"FALSE","manufacturer_name":"Shine Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252030,"name":"Zovair 160mg Rheocap","price":260,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"packet of 14 rheocap","short_composition1":"Formoterol (160mcg) ","short_composition2":" Tiotropium (NA)"},{"id":252031,"name":"Zoxil CV 875 mg/125 mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (875mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252032,"name":"Zovar-P Injection","price":234,"Is_discontinued":"FALSE","manufacturer_name":"Varenyam Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"packet of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":252033,"name":"Zolpanz 40mg Tablet","price":57.04,"Is_discontinued":"FALSE","manufacturer_name":"RPG Life Sciences Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252034,"name":"Zeen PR Syrup","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Winmac Laboratories Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Piracetam (500mg/5ml)","short_composition2":""},{"id":252035,"name":"Zerobac TZ 200mg/600mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Symbiosis Lab","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252036,"name":"Zulfy-OR Oral Suspension","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml) "},{"id":252037,"name":"Zebep DSR 30mg/20mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Jayson Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252038,"name":"Zinirab DSR 30mg/20mg Capsule","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zinnia Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252039,"name":"Zinmox 250mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":252040,"name":"Zycet M Kid 2.5mg/4mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":252041,"name":"Zim 100mg Tablet DT","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Caddes Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252042,"name":"Zypreg 75mg Tablet","price":131,"Is_discontinued":"FALSE","manufacturer_name":"Zynext Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pregabalin (75mg)","short_composition2":""},{"id":252043,"name":"Zeofit-OZ Tablet","price":251,"Is_discontinued":"FALSE","manufacturer_name":"Zeochem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252044,"name":"Zemlo A 5mg/50mg Tablet","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Brooks Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Atenolol (50mg)"},{"id":252045,"name":"Zolidac 5mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":252046,"name":"Zemal 75mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Alpha-Beta Arteether (75mg/ml)","short_composition2":""},{"id":252047,"name":"Zekool Suspension","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 450 ml Suspension","short_composition1":"Magaldrate (400mg/5ml) ","short_composition2":" Simethicone (20mg/5ml)"},{"id":252048,"name":"Zazid 1000mg Injection","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252049,"name":"Zicarb 100mg Injection","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Neon Laboratories Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Dacarbazine (100mg)","short_composition2":""},{"id":252050,"name":"Zedom OM 10mg/20mg Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zedchem Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":252051,"name":"Ziclofenac P 50mg/325mg Tablet","price":41.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252052,"name":"Zpl Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Esomeprazole (40mg)","short_composition2":""},{"id":252053,"name":"Zioden TZ 1000mg/125mg Injection","price":375,"Is_discontinued":"FALSE","manufacturer_name":"Welgenic Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252054,"name":"Zadumol 300 Tablet","price":13.5,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol (300mg)","short_composition2":""},{"id":252055,"name":"Zubik 500mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Stenhill Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252056,"name":"Zonesol 40mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Esomeprazole (40mg)","short_composition2":""},{"id":252057,"name":"Zethro 100mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":252058,"name":"Zesedic SP 100mg/325mg/15mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zeal Biotech Pvt td","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252059,"name":"Zomipra D 10mg/20mg Capsule","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":252060,"name":"Zeelone 4mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Synex Global Services Llp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":252061,"name":"Zeoderm 150 Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252062,"name":"Zacmox 125mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (125mg)","short_composition2":""},{"id":252063,"name":"Zinfen SP 100mg/325mg/15mg Tablet","price":87.4,"Is_discontinued":"FALSE","manufacturer_name":"Panzin Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252064,"name":"Zalsin 500 Tablet","price":71.33,"Is_discontinued":"FALSE","manufacturer_name":"Prector Lifesciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252065,"name":"Zavikpod 50mg Dry Syrup","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252066,"name":"Zeroxime 500mg Tablet DT","price":439,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":252067,"name":"Zithnovo 200 Oral Suspension Strawberry","price":51.91,"Is_discontinued":"FALSE","manufacturer_name":"NovoLilly Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252068,"name":"Ziftor-LB Tablet DT","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Prector Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252069,"name":"Zulip 1000mg Tablet SR","price":35.4,"Is_discontinued":"FALSE","manufacturer_name":"Azurite Bio Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (1000mg)","short_composition2":""},{"id":252070,"name":"Zolanso 15mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Denk Indier Llp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lansoprazole (15mg)","short_composition2":""},{"id":252071,"name":"Zeero T 100mg/4mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Earl Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":252072,"name":"Zeoceft S 1000mg/500mg Injection","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252073,"name":"Zithran 250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Watran Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252074,"name":"Zondan 8mg Tablet","price":115.2,"Is_discontinued":"FALSE","manufacturer_name":"Glaxo SmithKline Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Ondansetron (8mg)","short_composition2":""},{"id":252075,"name":"Zynagel 400mg Tablet","price":204.46,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sevelamer (400mg)","short_composition2":""},{"id":252076,"name":"Zonaxid 100mg/5ml Suspension","price":212.42,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Nitazoxanide (100mg/5ml)","short_composition2":""},{"id":252077,"name":"Zemakool Tablet","price":69.52,"Is_discontinued":"FALSE","manufacturer_name":"Alembic Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Mesalazine (400mg)","short_composition2":""},{"id":252078,"name":"Zorglim M 2mg/500mg Tablet","price":69.52,"Is_discontinued":"FALSE","manufacturer_name":"Instanz Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":252079,"name":"Zobert 250 mg/250 mg Injection","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Viilbery Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (250mg) ","short_composition2":" Sulbactam (250mg)"},{"id":252080,"name":"Zumin Capsule CR","price":65,"Is_discontinued":"TRUE","manufacturer_name":"Raptakos Brett & Co Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule cr","short_composition1":"Mebendazole (NA)","short_composition2":""},{"id":252081,"name":"Zafil 50mg Dry Syrup","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252082,"name":"Zapdase 100 mg/15 mg Tablet","price":55.5,"Is_discontinued":"FALSE","manufacturer_name":"Norwest Pharmaceuticals Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Serratiopeptidase (15mg)"},{"id":252083,"name":"Zotin 20mg Capsule","price":31.5,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Fluoxetine (20mg)","short_composition2":""},{"id":252084,"name":"Zeemine 1.5mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Psycormedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rivastigmine (1.5mg)","short_composition2":""},{"id":252085,"name":"Zexia 200mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Sanbury Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252086,"name":"Zipron OZ 500mg/500mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Pifer Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252087,"name":"Zanoquin 200mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Radico Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252088,"name":"Zeroflu Syrup","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Atlantic Pharma Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (1mg) ","short_composition2":" Paracetamol (500mg) "},{"id":252089,"name":"Zemidep 75mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Lia Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Imipramine (75mg)","short_composition2":""},{"id":252090,"name":"Zoxa DP 250mg/50mg/500mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Oyster Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":252091,"name":"Zoal-SR 12.5 Tablet","price":121,"Is_discontinued":"FALSE","manufacturer_name":"Mediez Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Zolpidem (12.5mg)","short_composition2":""},{"id":252092,"name":"Zeriheal DP 50mg/325mg Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252093,"name":"Zingaro Suspension","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Adcco Limited","type":"allopathy","pack_size_label":"bottle of 170 ml Suspension","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (50mg)"},{"id":252094,"name":"Zombistin 3MIU Injection","price":2825,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (3Million IU)","short_composition2":""},{"id":252095,"name":"Zeloxa-OZ 200mg/500mg Tablet","price":87.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252096,"name":"Zithromin 200mg Dry Syrup","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Dry Syrup","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252097,"name":"Zimdax 500mg Tablet DT","price":41.7,"Is_discontinued":"FALSE","manufacturer_name":"USV Ltd","type":"allopathy","pack_size_label":"strip of 6 tablet dt","short_composition1":"Nitazoxanide (500mg)","short_composition2":""},{"id":252098,"name":"Zerof 100mg Suspension","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":252099,"name":"Zetax 1000mg Injection","price":59.6,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252100,"name":"Zefoxim 250 Tablet","price":249.5,"Is_discontinued":"FALSE","manufacturer_name":"Integral Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252101,"name":"Zeftil AZ 200mg/250mg Tablet","price":252.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252102,"name":"Zetivas 10mg/10mg Tablet","price":96.7,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Ezetimibe (10mg)"},{"id":252103,"name":"Zitropid 200mg Oral Suspension","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Rapidchem Healthcare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252104,"name":"Zisan 100mg Oral Drops","price":24.4,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Drops","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":252105,"name":"Zypine 20mg Tablet MD","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (20mg)","short_composition2":""},{"id":252106,"name":"Zenirab D 10mg/20mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252107,"name":"Zione O 20mg/6.25mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Unichem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (20mg) ","short_composition2":" Chlorthalidone (6.25mg)"},{"id":252108,"name":"Zoryl MP LD 1mg/500mg/7.5mg Tablet","price":58.97,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg) "},{"id":252109,"name":"Zaxone TBZ 1.125gm Injection","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252110,"name":"Zyfix 100mg Tablet DT","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252111,"name":"Zione DS O 40mg/12.5mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Unichem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (40mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":252112,"name":"Zatropod 200mg Tablet DT","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252113,"name":"Zaflu 150mg Tablet","price":13.1,"Is_discontinued":"FALSE","manufacturer_name":"Mediarka Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252114,"name":"Zolyn Dusting Powder","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Lynderma Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 100 gm Dusting Powder","short_composition1":"Clotrimazole (1% w/w)","short_composition2":""},{"id":252115,"name":"Zithiniv 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Niya Biotech","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252116,"name":"Zartin 20mg Tablet","price":107,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":252117,"name":"Ziprotil 200mg Tablet DT","price":192,"Is_discontinued":"FALSE","manufacturer_name":"Calen Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252118,"name":"Zeacid-D Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Advance Revive","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252119,"name":"Zefxone S 1000mg/500mg Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Gurgrace Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252120,"name":"Zeodoxim Kid 50mg Dry Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252121,"name":"Zitocold 5mg/325mg/5mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Alleviate Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252122,"name":"Zuvinzax 500 Injection","price":193.75,"Is_discontinued":"FALSE","manufacturer_name":"Osiante Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252123,"name":"Zeotrin Forte Tablet","price":54.75,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ambroxol (60mg) ","short_composition2":" Levocetirizine (2.5mg) "},{"id":252124,"name":"Zelcof A Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg/5ml) ","short_composition2":" Levosalbutamol (1mg/5ml) "},{"id":252125,"name":"Zofi LB 200mg Tablet","price":142,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252126,"name":"Zoltic 5mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Volus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":252127,"name":"Zupox 100mg Dry Syrup","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252128,"name":"Zoltab 40mg Tablet","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (40mg)","short_composition2":""},{"id":252129,"name":"Zoxyflam 25mg Injection","price":4.75,"Is_discontinued":"FALSE","manufacturer_name":"Akme Biotec","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (25mg)","short_composition2":""},{"id":252130,"name":"Zidfen P 50mg/500mg Tablet","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252131,"name":"Zegcef 250mg Injection","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":252132,"name":"Zancon 150 Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Morecare Pharmatec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252133,"name":"Z Rosu FB 160mg/10mg Tablet","price":155.5,"Is_discontinued":"FALSE","manufacturer_name":"Azurite Bio Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fenofibrate (160mg) ","short_composition2":" Rosuvastatin (10mg)"},{"id":252134,"name":"Zithran 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Watran Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252135,"name":"Zamhav-MD 5 Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Heveren Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clobazam (5mg)","short_composition2":""},{"id":252136,"name":"Zaseep 0.50mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Seepi Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.50mg)","short_composition2":""},{"id":252137,"name":"Zytrax LB 200mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Vytrax Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252138,"name":"Zimtroy 200mg Tablet","price":100.94,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252139,"name":"Zeekacin 500mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252140,"name":"Zolipax 1.5mg Tablet SR","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Reliance Formulation Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Alprazolam (1.5mg)","short_composition2":""},{"id":252141,"name":"Zexate 500mg INJECTION","price":601,"Is_discontinued":"TRUE","manufacturer_name":"Fresenius Kabi India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Methotrexate (500mg)","short_composition2":""},{"id":252142,"name":"Zema 0.25mg Tablet","price":20.16,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":252143,"name":"Zonet 500mg Injection","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Linnet Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252144,"name":"Ziloxcin OZ 200mg/500mg Tablet","price":73,"Is_discontinued":"FALSE","manufacturer_name":"B.J.Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252145,"name":"Zilion SL 10mg Tablet","price":77.6,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":252146,"name":"Zoxil 250mg Suspension","price":22.32,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Cefadroxil (250mg)","short_composition2":""},{"id":252147,"name":"Zedorab D 10mg/20mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252148,"name":"Zentrom 1gm Injection","price":455,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Artesunate (1gm)","short_composition2":""},{"id":252149,"name":"Zeftis 200mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252150,"name":"Zonbact OF 200mg/200mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Eugenics Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252151,"name":"Zexodol SP 100mg/325mg/15mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Zexen Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252152,"name":"Zortec 5mg Tablet","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Laxter Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":252153,"name":"Zuef O 50mg Dry Syrup","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252154,"name":"Zetax 500mg Injection","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252155,"name":"Zantor 20mg Tablet","price":100,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":252156,"name":"Zinac 75mg Injection","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Uni-Pex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252157,"name":"Zenipod 50mg Dry Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252158,"name":"Zorbten 20mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Goddres Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Teneligliptin (20mg)","short_composition2":""},{"id":252159,"name":"Zepamax 2mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Invision Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":252160,"name":"Zonex AQ 75mg Injection","price":16.5,"Is_discontinued":"FALSE","manufacturer_name":"Divine Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252161,"name":"Zynagel 800mg Tablet","price":358,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sevelamer (800mg)","short_composition2":""},{"id":252162,"name":"Zilcin 500mg Tablet","price":42.39,"Is_discontinued":"FALSE","manufacturer_name":"Dr Kumars Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":252163,"name":"Zymopenem 1000mg Injection","price":1390,"Is_discontinued":"FALSE","manufacturer_name":"Akesiss Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":252164,"name":"Ziloreb LV 75mg/20mg Capsule SR","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252165,"name":"Zilcard 20 Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Cilnidipine (20mg)","short_composition2":""},{"id":252166,"name":"Zeopant D 10mg/40mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252167,"name":"Zavicin 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252168,"name":"Zoney Oral Gel Sugar Free","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Progressive Life Care","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Gel","short_composition1":"Aluminium Hydroxide (250mg) ","short_composition2":" Magnesium (250mg) "},{"id":252169,"name":"Zimcillin DC Plus 250mg/250mg Capsule","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg) "},{"id":252170,"name":"Zelox OZ Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252171,"name":"Zinilet AB 10mg/5mg/200mg Tablet","price":181,"Is_discontinued":"FALSE","manufacturer_name":"Saturn Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Montelukast (10mg) ","short_composition2":" Levocetirizine (5mg) "},{"id":252172,"name":"Zonus SB 1000mg/500mg Injection","price":124.26,"Is_discontinued":"FALSE","manufacturer_name":"Ablus Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252173,"name":"Zeelox 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zensar Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252174,"name":"Zynogen DX Syrup","price":30.8,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Phenylpropanolamine (12.5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":252175,"name":"Zaxim 100mg Tablet","price":119.7,"Is_discontinued":"FALSE","manufacturer_name":"Beckcem Drug International Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252176,"name":"Zol 30mg Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Medix Laboratories","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Lansoprazole (30mg)","short_composition2":""},{"id":252177,"name":"Zimfe 200mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":252178,"name":"Zoxlet 5mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":252179,"name":"Zeopen Eco 4000mg/500mg Injection","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Intsia Pharma Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":252180,"name":"Zolib M Forte 1mg/1000mg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (1000mg)"},{"id":252181,"name":"Zufifix 200 Tablet DT","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Xenovia Health Care Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252182,"name":"Zas-Tin 4.5MIU Injection","price":6549,"Is_discontinued":"FALSE","manufacturer_name":"Suzan Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Colistimethate Sodium (4.5Million IU)","short_composition2":""},{"id":252183,"name":"Zepred 80mg Injection","price":76,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylprednisolone (80mg)","short_composition2":""},{"id":252184,"name":"Zyltan 25 Tablet","price":24.76,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (25mg)","short_composition2":""},{"id":252185,"name":"Zygenta 40mg Injection","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Gentamicin (40mg)","short_composition2":""},{"id":252186,"name":"Zetistat 10 mg/10 mg Tablet","price":104.7,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Ezetimibe (10mg)"},{"id":252187,"name":"Zepodox 50mg Syrup","price":52.5,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252188,"name":"Zithropon 250mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Nippon Seiyaku Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252189,"name":"Zimnic 50mg Tablet DT","price":40.3,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252190,"name":"Zephrol Kid 50 mg/1.25 mg/15 mg Syrup","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Guaifenesin (50mg) ","short_composition2":" Terbutaline (1.25mg) "},{"id":252191,"name":"Zupaxel 260mg Injection","price":7142.85,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Paclitaxel (260mg)","short_composition2":""},{"id":252192,"name":"Zupemed 100mg Injection","price":960,"Is_discontinued":"FALSE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pemetrexed (100mg)","short_composition2":""},{"id":252193,"name":"ZELIS-AM 5MG/5MG TABLET","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 20 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Lisinopril (5mg)"},{"id":252194,"name":"Zozopolo-H 50mg/12.5mg Tablet","price":49.9,"Is_discontinued":"FALSE","manufacturer_name":"Sanify Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":252195,"name":"Zofixi-AZ 200mg/500mg Tablet","price":235,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (500mg)"},{"id":252196,"name":"Zox NP 100mg/500mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Retec Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252197,"name":"Zinsulide 100mg Tablet","price":12.9,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":252198,"name":"Zobenda 400mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"Zorex Pharma Pvt Ltd.","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252199,"name":"Zypcort 12mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (12mg)","short_composition2":""},{"id":252200,"name":"Zovenac 25mg Injection","price":11.18,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"ampoule of 3 ml Injection","short_composition1":"Diclofenac (25mg)","short_composition2":""},{"id":252201,"name":"Zegzen 20mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":252202,"name":"Ziftaz 250 Injection","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":252203,"name":"Zhort 6mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Bioethics Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252204,"name":"Zithvax 250 Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Vaxova Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252205,"name":"Zexone TZ 250mg/31.25mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":252206,"name":"Ziflon 50mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Pragmatics Labs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":252207,"name":"Zanobid 100mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":252208,"name":"Zardcef-T 1.125gm Injection","price":131,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252209,"name":"Zoflex 100mg Tablet","price":18.5,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg)","short_composition2":""},{"id":252210,"name":"Zimnex 50mg Dry Syrup","price":42.21,"Is_discontinued":"FALSE","manufacturer_name":"Ultratech Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252211,"name":"Ziblonac MR 100mg/325mg/250mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Arkle Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252212,"name":"Zobit 100mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Jpee Drugs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":252213,"name":"Zypkast LC Kid Syrup","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":252214,"name":"Zeenacef AZ 200mg/250mg Tablet","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252215,"name":"Zefedoxime 200mg Tablet DT","price":215,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252216,"name":"Zofmox 500mg Capsule","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":252217,"name":"Zilav M Oral Suspension","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":252218,"name":"Zacome 1500mcg Injection","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Medifaith Biotech","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":252219,"name":"Zithpe 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252220,"name":"Zydox AZ 200mg/250mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252221,"name":"Zodilac 3.35gm Oral Solution","price":175,"Is_discontinued":"TRUE","manufacturer_name":"Eris Lifesciences Ltd","type":"allopathy","pack_size_label":"bottle of 200 ml Oral Solution","short_composition1":"Lactulose (3.35gm)","short_composition2":""},{"id":252222,"name":"Zonbactam 2000mg/1000mg Injection","price":1194,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefepime (2000mg) ","short_composition2":" Sulbactam (1000mg)"},{"id":252223,"name":"Zadumol 250mg Oral Suspension","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":252224,"name":"Zanof OZ 200 mg/500 mg Tablet","price":66.96,"Is_discontinued":"FALSE","manufacturer_name":"Pegasus Farmaco India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252225,"name":"Zocra 4000mg/500mg Injection","price":461.7,"Is_discontinued":"FALSE","manufacturer_name":"Baxton Pharmacia","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":252226,"name":"Zyfix O 200mg/200mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252227,"name":"Zisan CF Dry Syrup","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Azithromycin (100mg/5ml)"},{"id":252228,"name":"Zenpod 50mg Dry Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252229,"name":"Ziltax 80 Tablet","price":202.5,"Is_discontinued":"TRUE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":252230,"name":"Zegzen L 75mg/20mg Tablet","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252231,"name":"Zipred 16mg Tablet","price":300,"Is_discontinued":"FALSE","manufacturer_name":"Shinto Organics (P) Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":252232,"name":"Zixum O 200mg/200mg Tablet","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Roseate Medicare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252233,"name":"Zexcof-AM Syrup","price":69.5,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":252234,"name":"Zidimet 1000mg Injection","price":251.35,"Is_discontinued":"FALSE","manufacturer_name":"Metlar Formulations","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252235,"name":"Zeotrin-M Syrup","price":79.4,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":252236,"name":"Zeropres 0.25mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Godase Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":252237,"name":"Zoteg XP 1000mg/125mg Injection","price":426,"Is_discontinued":"FALSE","manufacturer_name":"Suncure Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252238,"name":"Zythin 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Gracia Life Science India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252239,"name":"Zithor 250 Tablet","price":70.69,"Is_discontinued":"FALSE","manufacturer_name":"Medset Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252240,"name":"Zithociz 250 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Kaansla Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252241,"name":"Zestrab-D Tablet","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252242,"name":"ZI Fast 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Burgeon Health Series Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252243,"name":"Zan-Penem 500mg Injection","price":549,"Is_discontinued":"FALSE","manufacturer_name":"Suzan Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (500mg)","short_composition2":""},{"id":252244,"name":"Zithnu 500mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252245,"name":"Zencin 250mg Injection","price":152,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":252246,"name":"Zithmed 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Medbionic Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252247,"name":"Ziyavommd 4mg Tablet","price":49.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":252248,"name":"Zithro 500mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Trillest Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252249,"name":"Zoxtin CV 500mg/125mg Tablet","price":319,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252250,"name":"Zovair 320mg Rheocap","price":316.16,"Is_discontinued":"TRUE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"packet of 14 rheocap","short_composition1":"Ciclesonide (NA) ","short_composition2":" Formoterol (NA) "},{"id":252251,"name":"Zetalo 40mg Tablet","price":105,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citalopram (40mg)","short_composition2":""},{"id":252252,"name":"Zolorel 0.5mg Tablet","price":46.05,"Is_discontinued":"FALSE","manufacturer_name":"Group Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":252253,"name":"Zyplanin 200mg Injection","price":756,"Is_discontinued":"FALSE","manufacturer_name":"Zyphar's Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Teicoplanin (200mg)","short_composition2":""},{"id":252254,"name":"Zithcure 250mg Tablet","price":70.37,"Is_discontinued":"FALSE","manufacturer_name":"Dr Cure Pharmaceuticals India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252255,"name":"Zymocef 750mg Injection","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Venus Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (750mg)","short_composition2":""},{"id":252256,"name":"Z Clox Kid Tablet","price":22.2,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ampicillin (NA) ","short_composition2":" Cloxacillin (NA)"},{"id":252257,"name":"Zolc 6mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Evans Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252258,"name":"Zatcort 6mg Tablet","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252259,"name":"Zofan OZ 200mg/500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Akpash Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252260,"name":"Zeroslim 120mg Capsule","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Johnlee Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Orlistat (120mg)","short_composition2":""},{"id":252261,"name":"Zonebug 1000mg/500mg Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Medburg Medical Products Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252262,"name":"Zelox Kid 50mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Croford Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (50mg)","short_composition2":""},{"id":252263,"name":"Zoflacort 6mg Tablet","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Vavisto Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252264,"name":"Zocil 800mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Wonder Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (800mg)","short_composition2":""},{"id":252265,"name":"Zenof CT 200mg/600mg Tablet","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252266,"name":"Zoran OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252267,"name":"Zeflo 400mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Indo-Reh Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":252268,"name":"ZYX 50mg Tablet DT","price":55,"Is_discontinued":"FALSE","manufacturer_name":"HRD Supra Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252269,"name":"Zyxime Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Zephyr Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (120Million spores)"},{"id":252270,"name":"Zithrolin 150mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Cablin Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Roxithromycin (150mg)","short_composition2":""},{"id":252271,"name":"Zenimol Forte 250mg Oral Suspension","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Zencus Pharma","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":252272,"name":"Zecabolin 50mg Injection","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":252273,"name":"Zeltum SB 1500mg/750mg Injection","price":375,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg) ","short_composition2":" Sulbactam (750mg)"},{"id":252274,"name":"Zenmax Suspension","price":15.5,"Is_discontinued":"FALSE","manufacturer_name":"Growmax Medicare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":252275,"name":"Zerof 200mg Infusion","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252276,"name":"Zika 500mg Injection","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252277,"name":"Zikit-S 1000mg/500mg Injection","price":111,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252278,"name":"Zidime 50mg Tablet DT","price":67.66,"Is_discontinued":"FALSE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252279,"name":"Zamicin 250mg Tablet","price":64.3,"Is_discontinued":"FALSE","manufacturer_name":"Abiz Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252280,"name":"Zymmune 100mg/ml Injection","price":6170,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 50 ml Injection","short_composition1":"Ciclosporin (100mg/ml)","short_composition2":""},{"id":252281,"name":"Zenither AB 150mg Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":252282,"name":"Zicef SB 1000mg/500mg Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252283,"name":"Zithrowin 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Surewin Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252284,"name":"Zeura 1mg Tablet","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lorazepam (1mg)","short_composition2":""},{"id":252285,"name":"Zetvin Cold Tablet","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252286,"name":"Zupivac PF 5 Injection","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Flagship Biotech International","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Bupivacaine (5mg)","short_composition2":""},{"id":252287,"name":"Zekvert MD 20mg/40mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Glydus Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cinnarizine (20mg) ","short_composition2":" Dimenhydrinate (40mg)"},{"id":252288,"name":"Zeox 100mg Tablet DT","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252289,"name":"Zeldom 20mg Capsule","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Medsyn Lab Biotech","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252290,"name":"Ziftor 100 DT Tablet","price":94,"Is_discontinued":"FALSE","manufacturer_name":"Prector Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252291,"name":"Zalinz 100mg Dry Syrup","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Kiama Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Linezolid (100mg)","short_composition2":""},{"id":252292,"name":"Zeofem Injection","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252293,"name":"Zhylo CV Dry Syrup","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Remandish Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":252294,"name":"Zeoformin MS 40mg/50mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Metoprolol Succinate (50mg)"},{"id":252295,"name":"Zart 500mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Rezicure Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252296,"name":"Zopump IT 20mg/150mg Capsule SR","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Medrix Labs Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Rabeprazole (20mg) ","short_composition2":" Itopride (150mg)"},{"id":252297,"name":"Ziomi 20mg Tablet","price":49.9,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252298,"name":"Zentrox Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zenkins Pharmaceutical Pvt.Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252299,"name":"Zoetryp DS 180mg/96mg/200mg Tablet","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (180mg) ","short_composition2":" Trypsin (96mg) "},{"id":252300,"name":"Ziotil 50 Dry Syrup Mango","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252301,"name":"Zithronic 500mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Mednic Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252302,"name":"Zingmet-G1 Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Inolife Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (500mg)"},{"id":252303,"name":"Ziocort 40mg Injection","price":84.65,"Is_discontinued":"FALSE","manufacturer_name":"Vinson pharma","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Triamcinolone (40mg)","short_composition2":""},{"id":252304,"name":"Zithidel 100mg Oral Suspension","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Delroy Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252305,"name":"Zaxcef O 200mg/200mg Tablet","price":157,"Is_discontinued":"FALSE","manufacturer_name":"Tridev Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252306,"name":"Zytrin 1mg Tablet","price":92.2,"Is_discontinued":"FALSE","manufacturer_name":"Stadmed Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Terazosin (1mg)","short_composition2":""},{"id":252307,"name":"Zicet 10mg Tablet","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":252308,"name":"Zepid 3mg Tablet","price":25.37,"Is_discontinued":"FALSE","manufacturer_name":"Psychotropics India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (3mg)","short_composition2":""},{"id":252309,"name":"Zerocary Oral Solution","price":42,"Is_discontinued":"TRUE","manufacturer_name":"J B Chemicals and Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Oral Solution","short_composition1":"Triclosan (0.3%)","short_composition2":""},{"id":252310,"name":"Zomar 600mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (600mg)","short_composition2":""},{"id":252311,"name":"Zoxil CV 125 mg/25 mg Injection","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (125mg) ","short_composition2":" Clavulanic Acid (25mg)"},{"id":252312,"name":"Zeefix CV 100mg/62.5mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":252313,"name":"Zomox CL 250 mg/125 mg Tablet","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252314,"name":"Zolcent 10mg Tablet","price":67.5,"Is_discontinued":"FALSE","manufacturer_name":"Crescent Therapeutics Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":252315,"name":"Zarbil 80mg Tablet","price":204.76,"Is_discontinued":"FALSE","manufacturer_name":"Sinsan Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":252316,"name":"Zeford 2mg Tablet","price":36.53,"Is_discontinued":"FALSE","manufacturer_name":"Oxford Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":252317,"name":"Zupemed 500mg Injection","price":4246,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pemetrexed (500mg)","short_composition2":""},{"id":252318,"name":"Zygenta 80mg Injection","price":7.72,"Is_discontinued":"TRUE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Gentamicin (80mg)","short_composition2":""},{"id":252319,"name":"Zeclor 250mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chloramphenicol (250mg)","short_composition2":""},{"id":252320,"name":"Zentrix 1000mg Injection","price":54.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252321,"name":"Zimfix 50mg Tablet DT","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Wintech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252322,"name":"Zentra 100mg Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":252323,"name":"Zedec 50mg Injection","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":252324,"name":"Zopod 100mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252325,"name":"Zipflam 50mg/10mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":252326,"name":"Zexflam T 100mg/4mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":252327,"name":"Zumazi 500 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg) ","short_composition2":" Lactic acid bacillus (60Million spores)"},{"id":252328,"name":"Zomcid B Syrup","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"bottle of 170 ml Syrup","short_composition1":"Magaldrate (540mg) ","short_composition2":" Simethicone (50mg) "},{"id":252329,"name":"Zaduclav 375 Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252330,"name":"Zulid MR 200mg/2mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Sierra Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (200mg) ","short_composition2":" Tizanidine (2mg)"},{"id":252331,"name":"Zeworm 400mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Beckcem Drug International Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252332,"name":"Zixi 100mg Tablet","price":162,"Is_discontinued":"FALSE","manufacturer_name":"Cadex Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252333,"name":"Zerox-SM 1000mg/500mg Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Pharmacon Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252334,"name":"Zelide-P 100mg/500mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252335,"name":"Zolover 20mg Injection","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Evershine Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":252336,"name":"Ziftum 500mg Tablet","price":399,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":252337,"name":"Zaxone-SB 750mg Injection","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":252338,"name":"Zaparin 60mg Injection","price":475,"Is_discontinued":"FALSE","manufacturer_name":"Invision Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 0.6 ml Injection","short_composition1":"Enoxaparin (60mg)","short_composition2":""},{"id":252339,"name":"Zunaheal D 30mg/20mg Capsule SR","price":106,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252340,"name":"Zilotra 200mg Capsule","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":252341,"name":"Zertigo 8mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Sunaxa Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (8mg)","short_composition2":""},{"id":252342,"name":"Zoxiclav Dry Syrup","price":62.5,"Is_discontinued":"FALSE","manufacturer_name":"Venistro Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":252343,"name":"Zithee 500 Tablet","price":67.5,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252344,"name":"Zumheal 90mg/48mg/100mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (90mg) ","short_composition2":" Trypsin (48mg) "},{"id":252345,"name":"Zupress XL 50mg Tablet","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Zunison Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet xl","short_composition1":"Metoprolol Succinate (50mg)","short_composition2":""},{"id":252346,"name":"Zuricet M 5mg/10mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":252347,"name":"Zirath 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Hamswell Lifecare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252348,"name":"Zifcas 200mg Tablet","price":132,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252349,"name":"Zedon 2mg Injection","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":252350,"name":"Ziokof TM Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 200 ml Syrup","short_composition1":"Bromhexine (2mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":252351,"name":"Zeodoxim CV 200mg/125mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252352,"name":"Zxime 50 Oral Suspension","price":47.5,"Is_discontinued":"FALSE","manufacturer_name":"Sunfine Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":252353,"name":"Zebox 80mg Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (80mg)","short_composition2":""},{"id":252354,"name":"Zosupin 75mg Tablet","price":113,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dosulepin (75mg)","short_composition2":""},{"id":252355,"name":"Zednac 75mg Injection","price":21,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252356,"name":"Zepler M 150mg/1500mcg Tablet","price":218,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Epalrestat (150mg) ","short_composition2":" Methylcobalamin (1500mcg)"},{"id":252357,"name":"Ziplan DS 1.5mg/2mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Haloperidol (1.5mg) ","short_composition2":" Trihexyphenidyl (2mg)"},{"id":252358,"name":"Zithril 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Insead Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252359,"name":"Zaspo D 30mg/40mg Capsule SR","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252360,"name":"Zokacin 250mg Injection","price":11,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":252361,"name":"Zithrolac 200mg Oral Suspension","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Manlac Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252362,"name":"Zeloc 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Cogniwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252363,"name":"Zeloc 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Cogniwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252364,"name":"Zutris 200mg Oral Suspension","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Soinsvie Pharmacia Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252365,"name":"Zefocef O 200mg/200mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Dawson Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252366,"name":"Zylomef P 500mg/325mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Mefenamic Acid (500mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252367,"name":"Zestocef LB 200mg Tablet","price":143,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252368,"name":"Zilev 500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":252369,"name":"Zelpar Plus Syrup","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Mefenamic Acid (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":252370,"name":"Zelmox D Capsule","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg) "},{"id":252371,"name":"Zathcin 500mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Garwyn Remedies","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252372,"name":"Zidfen MR 250mg/50mg/500mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":252373,"name":"Zolith 250mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lithium carbonate (250mg)","short_composition2":""},{"id":252374,"name":"Zymofix 90mg/48mg/100mg Tablet","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Simpex Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (90mg) ","short_composition2":" Trypsin (48mg) "},{"id":252375,"name":"Zoxinace Plus 100mg/325mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252376,"name":"Zytrax O 200mg/200mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Vytrax Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252377,"name":"Zucipro 500mg Tablet","price":58.85,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":252378,"name":"Zimtaz Injection","price":80.95,"Is_discontinued":"FALSE","manufacturer_name":"Hetero Drugs Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":252379,"name":"Zigaf 250mg Tablet","price":68.59,"Is_discontinued":"FALSE","manufacturer_name":"Signova Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252380,"name":"Zimfix Dry Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Wintech Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":252381,"name":"Zithromin 250mg Tablet","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252382,"name":"Zycopin 5mg Tablet","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Sykocure Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (5mg)","short_composition2":""},{"id":252383,"name":"ZYTHAM 400MG TABLET","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ethambutol (400mg)","short_composition2":""},{"id":252384,"name":"Zocin TZ 200 mg/600 mg Tablet","price":70.4,"Is_discontinued":"FALSE","manufacturer_name":"Winsome Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252385,"name":"Zevid TZ 200 mg/600 mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252386,"name":"Zolorel 1mg Tablet","price":872.76,"Is_discontinued":"FALSE","manufacturer_name":"Group Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":252387,"name":"Zondel 2mg/5ml Syrup","price":34.82,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg/5ml)","short_composition2":""},{"id":252388,"name":"Zyclav Kid 200 mg/28.5 mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Divine Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252389,"name":"Zylocef 250mg Injection","price":27.67,"Is_discontinued":"FALSE","manufacturer_name":"Alde Medi Impex Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":252390,"name":"Zypeak M Tablet SR","price":75.42,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg) ","short_composition2":" Voglibose (0.3mg)"},{"id":252391,"name":"Zemat 200mg Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zeemat Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252392,"name":"Zoran OZ Syrup","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":252393,"name":"Zestoclav CV Dry Syrup","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Aerozest Life Science","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":252394,"name":"Zipmectin 12mg Tablet","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Curezip Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ivermectin (12mg)","short_composition2":""},{"id":252395,"name":"Zeridox 100mg Oral Suspension","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zering Smith Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (100mg/5ml)","short_composition2":""},{"id":252396,"name":"Zetax-AZ Tablet","price":188.4,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252397,"name":"Zetax O 100mg Tablet DT","price":87.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252398,"name":"Zolamed 0.25mg Tablet","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Medirin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (0.25mg)","short_composition2":""},{"id":252399,"name":"Zemocef 250mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252400,"name":"Zisper 3mg Tablet MD","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Risperidone (3mg)","short_composition2":""},{"id":252401,"name":"Zanfu 250mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252402,"name":"Zanpick L 75mg/40mg Capsule SR","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252403,"name":"Zylovas F 10mg/160mg Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Zylig Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Fenofibrate (160mg)"},{"id":252404,"name":"Zatrocet 5mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":252405,"name":"Zopump 20mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Medrix Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":252406,"name":"Zustback 60 Injection","price":575,"Is_discontinued":"FALSE","manufacturer_name":"Biophar Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"prefilled syringe of 0.6 ml Injection","short_composition1":"Enoxaparin (60mg)","short_composition2":""},{"id":252407,"name":"Zuricof DX Syrup","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Phenylephrine (5mg) ","short_composition2":" Chlorpheniramine Maleate (2mg) "},{"id":252408,"name":"Zilopan 40mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252409,"name":"Zeucep 200mg Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252410,"name":"Zeo-CV 375 Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252411,"name":"Zeoxa 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252412,"name":"Zetacin 500mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Axico Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252413,"name":"Zithronic 100mg Oral Suspension","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Mednic Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252414,"name":"Zelset MD 4 Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":252415,"name":"Zelcof Junior Syrup","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg/5ml) ","short_composition2":" Phenylephrine (5mg/5ml)"},{"id":252416,"name":"Zeltis D 50mg/10mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":252417,"name":"Ziofen RZ 200mg/20mg Capsule","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Aceclofenac (200mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252418,"name":"Zargesic-SP Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252419,"name":"Zartin 10mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":252420,"name":"Zitovik 250 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Creogenic Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252421,"name":"Zovicold Syrup","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (0.5mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":252422,"name":"Zithstat 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Astakind Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252423,"name":"Zoxinace P 100mg/325mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252424,"name":"Zumix CV 200mg/125mg Tablet","price":176,"Is_discontinued":"FALSE","manufacturer_name":"Aletron Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252425,"name":"Zydryl Suspension","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"bottle of 100 ml Suspension","short_composition1":"Citric Acid (57.03mg) ","short_composition2":" Diphenhydramine (14.08mg) "},{"id":252426,"name":"ZENPRED 500 MG INJECTION","price":639.84,"Is_discontinued":"TRUE","manufacturer_name":"Unimark Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Prednisolone (500mg)","short_composition2":""},{"id":252427,"name":"Zucipro 250mg Tablet","price":30.36,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (250mg)","short_composition2":""},{"id":252428,"name":"Zestocef 200mg Tablet","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Agrawal Drugs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252429,"name":"Zemox CL 1000 mg/200 mg Injection","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":252430,"name":"Zoxil CV 500 mg/100 mg Injection","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (100mg)"},{"id":252431,"name":"Zwei 0.3mg Tablet MD","price":72.5,"Is_discontinued":"FALSE","manufacturer_name":"Gold Line","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Voglibose (0.3mg)","short_composition2":""},{"id":252432,"name":"Z OX Tablet","price":45.87,"Is_discontinued":"FALSE","manufacturer_name":"Ecstasy Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ritodrine (NA)","short_composition2":""},{"id":252433,"name":"ZIZOM 200MG/5ML ORAL LIQUID","price":26.92,"Is_discontinued":"FALSE","manufacturer_name":"Sysmed Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Liquid","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252434,"name":"Zymotrip DP Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252435,"name":"Zeftil O 50mg Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252436,"name":"Zunox Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":252437,"name":"Zgthro 100mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252438,"name":"Zolydep 0.5mg Tablet","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Reliance Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":252439,"name":"Zemal Dry Syrup","price":156,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Artemether (40mg) ","short_composition2":" Lumefantrine (240mg)"},{"id":252440,"name":"Zenrox Oral Suspension","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Genetics & Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Roxithromycin (50mg)","short_composition2":""},{"id":252441,"name":"Zutex 1gm Injection","price":52.3,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1gm)","short_composition2":""},{"id":252442,"name":"Zolitec 30mg Tablet","price":39.5,"Is_discontinued":"FALSE","manufacturer_name":"Egis Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lansoprazole (30mg)","short_composition2":""},{"id":252443,"name":"Zincopan-D SR 30mg/40mg Capsule","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252444,"name":"Zsb 500mg/500mg Injection","price":199,"Is_discontinued":"FALSE","manufacturer_name":"Alvid-Indo Corporation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252445,"name":"Zoem 0.25mg Tablet","price":10,"Is_discontinued":"FALSE","manufacturer_name":"Ester Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":252446,"name":"Zeecin 250mg Tablet","price":129,"Is_discontinued":"FALSE","manufacturer_name":"True Care Biomedix","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252447,"name":"Zenali 250mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Zenlabs Ethica Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252448,"name":"Zutrim 35mg Tablet SR","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Trimetazidine (35mg)","short_composition2":""},{"id":252449,"name":"Zolpisys 200mg/87mg Tablet CR","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Human Biolife India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Sodium Valproate (200mg) ","short_composition2":" Valproic Acid (87mg)"},{"id":252450,"name":"Zumy 100mg/2mg Tablet","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Tizanidine (2mg)"},{"id":252451,"name":"Zovenac 1.16% Gel","price":68,"Is_discontinued":"FALSE","manufacturer_name":"East West Pharma","type":"allopathy","pack_size_label":"tube of 30 gm Gel","short_composition1":"Diclofenac (1.16% w/w)","short_composition2":""},{"id":252452,"name":"Zimesure 1000mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Gentech Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252453,"name":"Zevodil 250mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Alwin Wilcare Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (250mg)","short_composition2":""},{"id":252454,"name":"Zova EZ 10mg/10mg Tablet","price":59.9,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Ezetimibe (10mg)"},{"id":252455,"name":"Zhencort 6 Tablet","price":81.5,"Is_discontinued":"FALSE","manufacturer_name":"Zhen Heal Craft Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252456,"name":"Zyrimin-Gold Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Rudiment Life Science Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Niacinamide (100mg) "},{"id":252457,"name":"Zimipar 250mg Injection","price":63.4,"Is_discontinued":"FALSE","manufacturer_name":"Intra Life","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":252458,"name":"Zione T 40mg/6.25mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Chlorthalidone (6.25mg)"},{"id":252459,"name":"Zakcin 500mg Injection","price":92,"Is_discontinued":"FALSE","manufacturer_name":"DSV Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252460,"name":"Zerosaid SP 100mg/325mg/15mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Motif Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252461,"name":"Zofen 90mg/48mg/100mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Eltis Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (90mg) ","short_composition2":" Trypsin (48mg) "},{"id":252462,"name":"Zetax O CV Syrup","price":59.7,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252463,"name":"Zupox 100mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252464,"name":"Zomcort 30mg Tablet","price":350,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":252465,"name":"Zooclav 500mg/125mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":252466,"name":"Zoflex 500mg Tablet","price":65.4,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":252467,"name":"Zuluflox OZ Syrup","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Ronam Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":252468,"name":"Zione L 50mg/6.25mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Unisearch Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Hydrochlorothiazide (6.25mg)"},{"id":252469,"name":"Zomav 50mg Tablet","price":8.2,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (50mg)","short_composition2":""},{"id":252470,"name":"Zulfy 200mg Tablet","price":51.4,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252471,"name":"Zozopolo 50mg Tablet","price":39.9,"Is_discontinued":"FALSE","manufacturer_name":"Sanify Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg)","short_composition2":""},{"id":252472,"name":"Zetaglim M Forte 2mg/1000mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Elinor Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (1000mg)"},{"id":252473,"name":"Zatim 1000mg Injection","price":297,"Is_discontinued":"FALSE","manufacturer_name":"Intecare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252474,"name":"Zodic 75mg Injection","price":15.7,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Diclofenac (75mg/1ml)","short_composition2":""},{"id":252475,"name":"Ziyoazi 100mg Syrup","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":252476,"name":"Zubik-S 1.5 Injection","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Stenhill Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252477,"name":"Zubitrex 500mg Injection","price":44,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252478,"name":"Zencylin CV 500mg/125mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252479,"name":"Zistron 300mg Soft Gelatin Capsule","price":441,"Is_discontinued":"FALSE","manufacturer_name":"Vanshita Lifecare","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Progesterone (300mg)","short_composition2":""},{"id":252480,"name":"Zeromac Gel","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Gilpod Healthcare","type":"allopathy","pack_size_label":"tube of 30 gm Gel","short_composition1":"Diclofenac diethylamine (1.16% w/w) ","short_composition2":" Linseed Oil (10% w/w) "},{"id":252481,"name":"Zolfab D 10mg/20mg Capsule","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Aenor Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":252482,"name":"Zeopant LS 75mg/40mg Capsule SR","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252483,"name":"Zoldec 25mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Pray Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":252484,"name":"Zetri 500mg Injection","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252485,"name":"Zoerab D 30mg/20mg Capsule SR","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252486,"name":"Zumal 150mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":252487,"name":"Zoteg SB 1000mg/500mg Injection","price":458,"Is_discontinued":"FALSE","manufacturer_name":"Suncure Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252488,"name":"Zucox 120mg Tablet","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (120mg)","short_composition2":""},{"id":252489,"name":"Zovinem 500mg Injection","price":820,"Is_discontinued":"FALSE","manufacturer_name":"Zovilon Healthcare Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (500mg)","short_composition2":""},{"id":252490,"name":"Zeekacin 250mg Injection","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":252491,"name":"Zitcon 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252492,"name":"Zorg CV 500mg/125mg Tablet","price":113,"Is_discontinued":"FALSE","manufacturer_name":"Maxton Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252493,"name":"Zolirab L 75mg/20mg Capsule SR","price":156,"Is_discontinued":"FALSE","manufacturer_name":"Mas Life Science","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252494,"name":"Zeoxa DX 200mg/500mg Tablet","price":316,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Dicloxacillin (500mg)"},{"id":252495,"name":"Zythscot 200mg Oral Suspension","price":103,"Is_discontinued":"FALSE","manufacturer_name":"Adenscot Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252496,"name":"Zixime 100mg Tablet DT","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252497,"name":"Zimcin 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252498,"name":"Ziscoril-DMR Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zephon Life Sciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":252499,"name":"Zelpin 40mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252500,"name":"Zelox-L 750 Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (750mg)","short_composition2":""},{"id":252501,"name":"Zestocef CV 200mg/125mg Tablet","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252502,"name":"Zedomox CV Dry Syrup","price":58.74,"Is_discontinued":"FALSE","manufacturer_name":"Kaymed Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252503,"name":"Zixime LB Dry Syrup","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252504,"name":"Zolylet 2.5mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Letrozole (2.5mg)","short_composition2":""},{"id":252505,"name":"Zoxpinam 1000mg Injection","price":1850,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":252506,"name":"Zovicold Plus Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Chlorpheniramine Maleate (2mg) ","short_composition2":" Paracetamol (250mg) "},{"id":252507,"name":"Zoftax O 50mg Dry Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252508,"name":"Zorelax 0.5mg Tablet","price":21.11,"Is_discontinued":"FALSE","manufacturer_name":"Iatros Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":252509,"name":"Zamadol 50mg Injection","price":10.33,"Is_discontinued":"FALSE","manufacturer_name":"Macleods Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Tramadol (50mg)","short_composition2":""},{"id":252510,"name":"Zestocef O 200mg/200mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Agrawal Drugs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252511,"name":"Zenotin 200 mg/600 mg Tablet","price":54.5,"Is_discontinued":"TRUE","manufacturer_name":"Mankind Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252512,"name":"Zulmectin 3mg/200mg Drop","price":35,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"packet of 10 ml Drop","short_composition1":"Ivermectin (3mg) ","short_composition2":" Albendazole (200mg)"},{"id":252513,"name":"Zocip TZ 500mg/600mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Wintech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252514,"name":"Zedan 50mg Suspension","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Chemo Biological","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Roxithromycin (50mg/5ml)","short_composition2":""},{"id":252515,"name":"Zodialon 0.25mg Tablet MD","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Integra Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Clonazepam (0.25mg)","short_composition2":""},{"id":252516,"name":"Zedanid 1gm Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Nidus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1gm)","short_composition2":""},{"id":252517,"name":"Zyrof 3K Injection","price":1116,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rofecoxib (3k)","short_composition2":""},{"id":252518,"name":"Zentrix-S 250mg/125mg Injection","price":40.7,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":252519,"name":"Zebenda 400mg Tablet","price":7.8,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252520,"name":"Zithromin-XL 100mg Dry Syrup","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252521,"name":"Zytum CV 500mg/125mg Tablet","price":330,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252522,"name":"Zovikos Dry Suspension","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Apikos Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":252523,"name":"Zoplon 15mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Haryana Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (15mg)","short_composition2":""},{"id":252524,"name":"Zenopip 4gm/0.5gm Injection","price":480,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Piperacillin (4gm) ","short_composition2":" Tazobactum (0.5gm)"},{"id":252525,"name":"Zopral 0.50mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Osho Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.50mg)","short_composition2":""},{"id":252526,"name":"Zeeclox 250mg/250mg Capsule","price":69,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":252527,"name":"Zydox 100mg Tablet","price":122,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252528,"name":"Zeftil-O 50 DT Tablet","price":74.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252529,"name":"Zofi 100mg Tablet","price":86.7,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252530,"name":"Zortaz 2% Cream","price":249,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"tube of 30 gm Cream","short_composition1":"Sertaconazole (2% w/w)","short_composition2":""},{"id":252531,"name":"Zoxycam 40mg Injection","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Kioxy Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piroxicam (40mg)","short_composition2":""},{"id":252532,"name":"Zilcard 5 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Astranova Biotech","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Cilnidipine (5mg)","short_composition2":""},{"id":252533,"name":"Zoffy P 50mg/325mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252534,"name":"Zuath DS Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Positif Life sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252535,"name":"Zomcid 40mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Omeprazole (40mg)","short_composition2":""},{"id":252536,"name":"Zithrodin 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Meri-Odin Life sciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252537,"name":"Zeucor 20 Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 tablets","short_composition1":"Rosuvastatin (20mg)","short_composition2":""},{"id":252538,"name":"Zarazone SB 500mg/500mg Injection","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252539,"name":"Zitholid 500 Tablet","price":67.15,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252540,"name":"Zylocas 100mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Casca Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (100mg)","short_composition2":""},{"id":252541,"name":"Zoxdil-AZ Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252542,"name":"Ziftum 250mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252543,"name":"Zithsan 200mg Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Tuttsan Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252544,"name":"Zegrid D 30mg/20mg Capsule SR","price":94.8,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252545,"name":"Zoridol 5mg Tablet","price":26.4,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 24 tablets","short_composition1":"Haloperidol (5mg)","short_composition2":""},{"id":252546,"name":"Zeecin 100mg Tablet DT","price":62.5,"Is_discontinued":"FALSE","manufacturer_name":"True Care Biomedix","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252547,"name":"Zeelox OD 400mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zensar Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":252548,"name":"Zort 5mg/2mg Tablet","price":16.8,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 24 tablets","short_composition1":"Trifluoperazine (5mg) ","short_composition2":" Trihexyphenidyl (2mg)"},{"id":252549,"name":"Zonkind 1gm/500mg Injection","price":465,"Is_discontinued":"FALSE","manufacturer_name":"Swiss Parenterals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1gm) ","short_composition2":" Sulbactam (500mg)"},{"id":252550,"name":"Zatroclav Dry Syrup","price":57.9,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252551,"name":"Z Pod AZ 200mg/250mg Tablet","price":299,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252552,"name":"Zumcet M Oral Suspension","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":252553,"name":"Zetacef 100 DT Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Servocare Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252554,"name":"Zieterb 250mg Tablet","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Ziel Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 7 tablets","short_composition1":"Terbinafine (250mg)","short_composition2":""},{"id":252555,"name":"Zenisulide P 100mg/325mg Tablet","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252556,"name":"Zeftil CV 100mg/62.5mg Tablet","price":175.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":252557,"name":"Zifrocin Oral Suspension","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252558,"name":"Zyfix CV Dry Syrup","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":252559,"name":"Zeltel H 80mg/12.5mg Tablet","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (80mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":252560,"name":"Zoepan D 30mg/40mg Capsule SR","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252561,"name":"Zithril 250 Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Insead Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252562,"name":"Zyno 1000mg/500mg Injection","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Sarvit Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252563,"name":"Zunocef O 200mg/200mg Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Zuno Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252564,"name":"Zioxim 200mg Tablet DT","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252565,"name":"Zesnil 50mg Capsule","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Consern Pharma Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Milnacipran (50mg)","short_composition2":""},{"id":252566,"name":"Zalome 20mg Capsule","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Scocia Labs","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252567,"name":"Zolpan Injection","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Stride Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252568,"name":"Zoxton-S 375 Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Ampira Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":252569,"name":"Zedrac Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Superlative Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252570,"name":"Ziptron S 1000mg/500mg Injection","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252571,"name":"Zoxobal 1500mcg/75mg Tablet SR","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":252572,"name":"Zithram 250mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Rampton Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252573,"name":"Zoxtin 250mg Tablet","price":158,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252574,"name":"Zyvastin 20mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zybax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":252575,"name":"Zipcin 500mg Tablet","price":60.6,"Is_discontinued":"FALSE","manufacturer_name":"Gufic Bioscience Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":252576,"name":"Zetfor 850mg Tablet","price":12.5,"Is_discontinued":"TRUE","manufacturer_name":"Raptakos Brett & Co Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (850mg)","short_composition2":""},{"id":252577,"name":"Zenotic Kit 20mg/2ml Injection","price":7.96,"Is_discontinued":"FALSE","manufacturer_name":"Shreya Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Gentamicin (20mg/2ml)","short_composition2":""},{"id":252578,"name":"Zetri 250mg Injection","price":19.37,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":252579,"name":"Zoxil CV 250 mg/125 mg Tablet DT","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252580,"name":"Ziox 200mg/5ml Suspension","price":36.06,"Is_discontinued":"FALSE","manufacturer_name":"Centaur Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252581,"name":"Zecarb 450mg Tablet SR","price":17.23,"Is_discontinued":"FALSE","manufacturer_name":"Zeus Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Lithium carbonate (450mg)","short_composition2":""},{"id":252582,"name":"Zithro 100mg/5ml Syrup","price":28.75,"Is_discontinued":"FALSE","manufacturer_name":"Ritz Pharma","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":252583,"name":"Zenoxim 125mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Indchemie Health Specialities Pvt Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Cefuroxime (125mg)","short_composition2":""},{"id":252584,"name":"Zencef Plus 1gm/0.5gm Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Helax Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1gm) ","short_composition2":" Sulbactam (0.5gm)"},{"id":252585,"name":"Zaxoff Oral Suspension","price":39.9,"Is_discontinued":"FALSE","manufacturer_name":"Sanify Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml)","short_composition2":""},{"id":252586,"name":"Zephics 200mg Tablet","price":118,"Is_discontinued":"FALSE","manufacturer_name":"Zircon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252587,"name":"Zanlodi LP 5mg/5mg Tablet","price":26.25,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Lisinopril (5mg)"},{"id":252588,"name":"Znpro D 30mg/20mg Capsule SR","price":85.65,"Is_discontinued":"FALSE","manufacturer_name":"Delvin Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252589,"name":"Zeben 200mg Suspension","price":15.69,"Is_discontinued":"FALSE","manufacturer_name":"Libra Drugs India","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":252590,"name":"Zoxin S 250 mg/125 mg Injection","price":48.36,"Is_discontinued":"FALSE","manufacturer_name":"Litaka Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":252591,"name":"Zaprocid 20mg Capsule","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Triton Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252592,"name":"Zinsto Cream","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Imed Healthcare","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Fluocinolone acetonide (0.01% w/w) ","short_composition2":" Miconazole (2% w/w)"},{"id":252593,"name":"Zoplon 5mg Tablet","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Haryana Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (5mg)","short_composition2":""},{"id":252594,"name":"Zoxavid Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Vivid Labs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":252595,"name":"Zoplon 10mg Tablet","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Haryana Formulations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olanzapine (10mg)","short_composition2":""},{"id":252596,"name":"Zolark 0.25mg Tablet","price":8,"Is_discontinued":"FALSE","manufacturer_name":"Konark Biochem","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":252597,"name":"Zoem 0.5mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Ester Formulations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":252598,"name":"Zofan 200mg Tablet","price":52.5,"Is_discontinued":"FALSE","manufacturer_name":"Akpash Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252599,"name":"Zablox 200mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Ecure Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252600,"name":"Zebenda-IV Suspension","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Ivermectin (3mg) ","short_composition2":" Albendazole (200mg)"},{"id":252601,"name":"Zithromin 500mg Injection","price":208.75,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252602,"name":"Zoflo 50mg Syrup","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ofloxacin (50mg/5ml)","short_composition2":""},{"id":252603,"name":"Zygolox 200mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Zygal Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252604,"name":"Zolol SR 40mg Capsule","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Propranolol (40mg)","short_composition2":""},{"id":252605,"name":"Zoyrab-AC Capsule SR","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Aceclofenac (200mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252606,"name":"Zoran 100mg Syrup","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ofloxacin (100mg/5ml)","short_composition2":""},{"id":252607,"name":"Zexithro Tablet","price":185.4,"Is_discontinued":"FALSE","manufacturer_name":"Jaqson Healthcare Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252608,"name":"Zorflu 150mg Tablet","price":12.4,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252609,"name":"Zadirab D 30mg/20mg Capsule SR","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Zadine Rumbs Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252610,"name":"Zylobid P 100mg/325mg Tablet","price":39.4,"Is_discontinued":"FALSE","manufacturer_name":"Mandevis Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252611,"name":"Zanfu 500mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":252612,"name":"Zetnum 200mg Tablet","price":121.5,"Is_discontinued":"FALSE","manufacturer_name":"Plenum Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flavoxate (200mg)","short_composition2":""},{"id":252613,"name":"Zedlor 5 Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Slash Lifevision","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Desloratadine (5mg)","short_composition2":""},{"id":252614,"name":"Zixif 100mg Dry Syrup","price":67.87,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (100mg/5ml)","short_composition2":""},{"id":252615,"name":"Zazid TZ 1000mg/125mg Injection","price":395,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252616,"name":"Zavigest 200mg Soft Gelatin Capsule","price":255,"Is_discontinued":"FALSE","manufacturer_name":"Spranza Vita Pharmaceutical LLP","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Progesterone (Natural Micronized) (200mg)","short_composition2":""},{"id":252617,"name":"Zacdase 10mg Tablet","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Instant Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":252618,"name":"Zyfix 200 LB Tablet DT Strawberry","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Univentis Medicare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252619,"name":"Zolover D 30mg/20mg Capsule SR","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Evershine Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252620,"name":"Zonkind 500mg/500mg Injection","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Swiss Parenterals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252621,"name":"Zesnac SP 100mg/325mg/15mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252622,"name":"Zistron 200mg Soft Gelatin Capsule","price":264,"Is_discontinued":"FALSE","manufacturer_name":"Vanshita Lifecare","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Progesterone (200mg)","short_composition2":""},{"id":252623,"name":"Zeoroxim 500mg Tablet","price":540,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":252624,"name":"Zethro 200mg Oral Suspension","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252625,"name":"Zaneth-P Capsule","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Adiza Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":252626,"name":"Zemonec-P Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Hummed Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252627,"name":"Zinlevo 500 Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Medofy Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":252628,"name":"Zofenol TH 100mg/4mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"AllKind Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":252629,"name":"Ziovir 400mg Tablet","price":142,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (400mg)","short_composition2":""},{"id":252630,"name":"Zifcas O Syrup","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Ofloxacin (50mg)"},{"id":252631,"name":"Zivith 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252632,"name":"Zymcef O 200mg/200mg Tablet","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Servo Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252633,"name":"Zidnac MR 100mg/325mg/250mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252634,"name":"Zitmax 250mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Darmaan Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252635,"name":"Ziplan 0.25mg Tablet","price":5.5,"Is_discontinued":"FALSE","manufacturer_name":"Zion Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Haloperidol (0.25mg)","short_composition2":""},{"id":252636,"name":"Zome 20 Capsule","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Desta Lifescience","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252637,"name":"Zifcef 250mg Injection","price":25.93,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":252638,"name":"Zoliris 5mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Curis Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (5mg)","short_composition2":""},{"id":252639,"name":"Zbeta 10 Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Propranolol (10mg)","short_composition2":""},{"id":252640,"name":"Zolaxin-OZ Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Invictus Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252641,"name":"Ziptron 250mg/125mg Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":252642,"name":"Zelclav Dry Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252643,"name":"Zortec 10mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Laxter Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (10mg)","short_composition2":""},{"id":252644,"name":"Zovibact 200mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Innovative Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (200mg)","short_composition2":""},{"id":252645,"name":"Zencin 100mg Injection","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":252646,"name":"Ziwal 500mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Wallace Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252647,"name":"Zoecort 100mg Injection","price":43.45,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Hydrocortisone (100mg)","short_composition2":""},{"id":252648,"name":"Zekocid 40 Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Glydus Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252649,"name":"Zudico 50mg/500mg Tablet","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252650,"name":"Zonecure 1000mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Suncure Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252651,"name":"Zeolexin 500mg Capsule","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Cefalexin (500mg)","short_composition2":""},{"id":252652,"name":"Zoxlet M Kid 2.5mg/4mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":252653,"name":"Zotra OZ Oral Suspension","price":46.68,"Is_discontinued":"FALSE","manufacturer_name":"Acme Pharmaceutical","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (NA) ","short_composition2":" Ornidazole (NA)"},{"id":252654,"name":"Zoloid 0.5mg Tablet","price":19.75,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":252655,"name":"Zotipax 50mg Tablet","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zotepine (50mg)","short_composition2":""},{"id":252656,"name":"Zavatrip BR Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Inizia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Bromelain (90mg) ","short_composition2":" Trypsin (48mg) "},{"id":252657,"name":"Zomibet 2mg Injection","price":12200,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Bortezomib (2mg)","short_composition2":""},{"id":252658,"name":"Zstop Suspension","price":19.5,"Is_discontinued":"FALSE","manufacturer_name":"Maneesh Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Nitazoxanide (100mg/5ml)","short_composition2":""},{"id":252659,"name":"Zotacef S 250 mg/125 mg Injection","price":40.7,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":252660,"name":"Zenoxim XP Kid 250mg/31.25mg Injection","price":41.5,"Is_discontinued":"FALSE","manufacturer_name":"Indchemie Health Specialities Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":252661,"name":"Zyvana 1 Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg)","short_composition2":""},{"id":252662,"name":"Zami 500mg Injection","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252663,"name":"Zuthrox OZ 200mg/500mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252664,"name":"Zolekair 40mg Tablet","price":47.25,"Is_discontinued":"FALSE","manufacturer_name":"PDC Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252665,"name":"Zerox-TZ 1000mg/125mg Injection","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Pharmacon Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252666,"name":"Zorat 300 CR Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Daksh Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet cr","short_composition1":"Sodium Valproate (200mg) ","short_composition2":" Valproic Acid (87mg)"},{"id":252667,"name":"Zypentin 400mg/10mg Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Zepsilon Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (400mg) ","short_composition2":" Nortriptyline (10mg)"},{"id":252668,"name":"Zentir 400mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Welkind Pharma","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252669,"name":"Zocin 100mg/300mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Satya Kalindi Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg) ","short_composition2":" Tinidazole (300mg)"},{"id":252670,"name":"Zitriax 1000mg Injection","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252671,"name":"Zebenda-IV 6mg/400mg Tablet","price":12.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":252672,"name":"Zimostat 20mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Zim Laboratories Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":252673,"name":"Zipdec 25mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Globus Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":252674,"name":"Zitrich 250mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Pharma Drugs & Chemicals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252675,"name":"Zoflex Plus 100mg/500mg Tablet","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252676,"name":"Zirky 50mg/2mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Brooks Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Tizanidine (2mg)"},{"id":252677,"name":"Zydim 1000mg Injection","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Adison Laboratories","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252678,"name":"Zornor 400mg/600mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252679,"name":"Zidim 250mg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Impileo Lifescience","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":252680,"name":"Zarynac P 100mg/325mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Eddy Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252681,"name":"Zenikacin 500 Injection","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252682,"name":"Zenipod CV Dry Syrup","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":252683,"name":"Zeenacef O 200mg/200mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252684,"name":"Zytrix 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Health Care Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252685,"name":"Zimposet 4mg Tablet MD","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Leenate Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":252686,"name":"Zitocuf AT Syrup","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":252687,"name":"Zecold Kid Oral Suspension","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Medivista Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (0.5mg) ","short_composition2":" Paracetamol (125mg) "},{"id":252688,"name":"Zoleban 400mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Decipher Labs Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252689,"name":"Zefocef 200mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Dawson Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252690,"name":"Zotrim DS 800mg/160mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Emil Pharmaceuticals Industries Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sulfamethoxazole (800mg) ","short_composition2":" Trimethoprim (160mg)"},{"id":252691,"name":"Zfflox OZ 200mg/500mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252692,"name":"Zeltel H 40mg/12.5mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (40mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":252693,"name":"Zeonac Plus Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":252694,"name":"Zeodoxim 100mg Tablet DT","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252695,"name":"Zeox LB 200mg Tablet DT","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252696,"name":"Zetacon 100 Capsule","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Bolivian Healthcare","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":252697,"name":"Zofdan MD Tablet","price":52.5,"Is_discontinued":"FALSE","manufacturer_name":"Carenix Bio Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Ondansetron (4mg)","short_composition2":""},{"id":252698,"name":"Zoldec 50 Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Pray Healthcare","type":"allopathy","pack_size_label":"box of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":252699,"name":"Zeoglin MT 2mg/500mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg) ","short_composition2":" Metformin (500mg)"},{"id":252700,"name":"Zotop 40mg Injection","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Otik Biotec","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252701,"name":"Zithnovo 500mg Tablet","price":71.7,"Is_discontinued":"FALSE","manufacturer_name":"NovoLilly Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252702,"name":"Zotop IT 40mg/150mg Capsule SR","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Otik Biotec","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Pantoprazole (40mg) ","short_composition2":" Itopride (150mg)"},{"id":252703,"name":"Zenecet L Syrup","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Sanes Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg/5ml) ","short_composition2":" Montelukast (4mg/5ml)"},{"id":252704,"name":"Zety 1mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etizolam (1mg)","short_composition2":""},{"id":252705,"name":"Zinicef-S Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Voxiva Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252706,"name":"Zacnix-LB 200 Tablet DT","price":144,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252707,"name":"Zozith 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Day Meddy Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252708,"name":"Zomy 500mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252709,"name":"Zoltias MD 1 Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Matias Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Etizolam (1mg)","short_composition2":""},{"id":252710,"name":"Zocare OZ Suspension","price":36.3,"Is_discontinued":"FALSE","manufacturer_name":"Cipla Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252711,"name":"Zizom 500mg Tablet","price":82.56,"Is_discontinued":"FALSE","manufacturer_name":"Sysmed Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252712,"name":"Zeefix CV 50mg/31.25mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":252713,"name":"Zyrotram 100mg Injection","price":23.28,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":252714,"name":"Zoxil CV 1000 mg/200 mg Injection","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":252715,"name":"Zoprox 50mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252716,"name":"Zeopse 5mg Tablet","price":9.5,"Is_discontinued":"FALSE","manufacturer_name":"Aronex Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diazepam (5mg)","short_composition2":""},{"id":252717,"name":"Zola DS Tablet","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Hamax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":252718,"name":"Zantid 300mg Tablet","price":8.33,"Is_discontinued":"FALSE","manufacturer_name":"Jarson Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ranitidine (300mg)","short_composition2":""},{"id":252719,"name":"Zypentin 300mg/10mg Capsule","price":179,"Is_discontinued":"FALSE","manufacturer_name":"Zepsilon Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Gabapentin (300mg) ","short_composition2":" Nortriptyline (10mg)"},{"id":252720,"name":"Zencef 500mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Helax Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252721,"name":"Zyser N 100mg/15mg Tablet","price":58.5,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Serratiopeptidase (15mg)"},{"id":252722,"name":"Zealtus Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Rytus Therapeutics Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Dextromethorphan Hydrobromide (10mg) ","short_composition2":" Triprolidine (1.25mg) "},{"id":252723,"name":"Zax 1000mg Injection","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252724,"name":"Zespaz 20mg/325mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (20mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252725,"name":"Zotipax 25mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Intas Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zotepine (25mg)","short_composition2":""},{"id":252726,"name":"Zythrol 100mg Suspension","price":29.8,"Is_discontinued":"FALSE","manufacturer_name":"Novagen Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252727,"name":"Zinpa 100mg/500mg Tablet DT","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zegna Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252728,"name":"Ziyoliv 5gm Injection","price":295,"Is_discontinued":"FALSE","manufacturer_name":"Medok Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"L-Ornithine L-Aspartate (5gm)","short_composition2":""},{"id":252729,"name":"Zypan D 10mg/40mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252730,"name":"Zypzone SB 1000mg/500mg Injection","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252731,"name":"Zubitrex 250mg Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":252732,"name":"Zylovas 10mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zylig Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg)","short_composition2":""},{"id":252733,"name":"Zekocid 20mg Capsule","price":33.3,"Is_discontinued":"FALSE","manufacturer_name":"Accosts Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252734,"name":"Ziftaz 1000mg Injection","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252735,"name":"Zairox 250mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252736,"name":"Zhort 6mg Oral Suspension","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Bioethics Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252737,"name":"Zognis H 150mg/12.5mg Tablet","price":195.35,"Is_discontinued":"FALSE","manufacturer_name":"Ark Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Irbesartan (150mg) ","short_composition2":" Hydrochlorothiazide (12.5mg)"},{"id":252738,"name":"Zithtron 200mg Oral Suspension","price":48.5,"Is_discontinued":"FALSE","manufacturer_name":"Medimind Drugs and Chemicals","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":252739,"name":"Zithee Plus Dry Syrup","price":121.5,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Azithromycin (100mg/5ml)"},{"id":252740,"name":"Zelox-L 500 Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":252741,"name":"Zelpar N 100mg/325mg Tablet","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252742,"name":"Zel Force 50mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 4 tablets","short_composition1":"Sildenafil (50mg)","short_composition2":""},{"id":252743,"name":"Zexpar SL 1000mg/500mg Injection","price":272,"Is_discontinued":"FALSE","manufacturer_name":"Medivista Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252744,"name":"Zithpe 100mg Oral Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252745,"name":"Zidoxe 50mg Dry Syrup","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252746,"name":"Zolrico 1% Cream","price":188.45,"Is_discontinued":"FALSE","manufacturer_name":"Enrico Pharmaceuticals","type":"allopathy","pack_size_label":"tube of 20 gm Cream","short_composition1":"Luliconazole (1% w/w)","short_composition2":""},{"id":252747,"name":"Zeemol 125mg Suspension","price":21.4,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Paracetamol (125mg)","short_composition2":""},{"id":252748,"name":"Zeswin 40 Injection","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252749,"name":"Zeoceft 500 Injection","price":50.34,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252750,"name":"Zeocin 100mg Injection","price":16.77,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":252751,"name":"Zavicin 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252752,"name":"Zither-L Dry Syrup","price":134,"Is_discontinued":"FALSE","manufacturer_name":"Age Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Artemether (40mg/5ml) ","short_composition2":" Lumefantrine (240mg/5ml)"},{"id":252753,"name":"Zifpidox 200 Tablet DT","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252754,"name":"Zeacid A 200mg/20mg Capsule SR","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Advance Revive","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Aceclofenac (200mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252755,"name":"Zunac 200mg Tablet SR","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":252756,"name":"Zoreo 250 Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Apcon Remedies","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252757,"name":"Zoeether 150mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":252758,"name":"Zonabliss 1000mg/500mg Injection","price":352,"Is_discontinued":"FALSE","manufacturer_name":"Bliss Life Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252759,"name":"Zopromet 25mg Tablet XL","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 15 tablet xl","short_composition1":"Metoprolol Succinate (25mg)","short_composition2":""},{"id":252760,"name":"Zedorik Tablet","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Zesstek Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Febuxostat (40mg)","short_composition2":""},{"id":252761,"name":"Ziymic 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"KPSA2 Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252762,"name":"Zotax 1000mg Injection","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Medreich Lifecare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefotaxime (1000mg)","short_composition2":""},{"id":252763,"name":"Zeetrax SB 1000mg/500mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252764,"name":"Zovifast-MR Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":252765,"name":"Zoxlet M Syrup","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":252766,"name":"Zunix O 200mg/200mg Tablet","price":157,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252767,"name":"Zeoclav Dry Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Qgensun Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252768,"name":"Zoxgee Plus Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Grecian Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252769,"name":"Zoltac D 10mg/40mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Eveson Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252770,"name":"Zepodox S 1000 mg/500 mg Injection","price":84.5,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252771,"name":"Zithromin 100mg Tablet DT","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 3 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252772,"name":"Zenocef 50mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252773,"name":"Zacoflox-OZ 200mg/500mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252774,"name":"Zibutol 800mg Tablet","price":39.6,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ethambutol (800mg)","short_composition2":""},{"id":252775,"name":"Zarithro 500mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252776,"name":"Zifonate 4mg Injection","price":2800,"Is_discontinued":"FALSE","manufacturer_name":"Miracalus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Zoledronic acid (4mg)","short_composition2":""},{"id":252777,"name":"Zeloxa 50mg Suspension","price":41.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Ofloxacin (50mg/5ml)","short_composition2":""},{"id":252778,"name":"Zytax Dry Syrup","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":252779,"name":"Zytram 50mg Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Tramadol (50mg)","short_composition2":""},{"id":252780,"name":"Zax-S 500mg/250mg Injection","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":252781,"name":"Zipris 80mg Capsule","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ziprasidone (80mg)","short_composition2":""},{"id":252782,"name":"Zymik 250mg Injection","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":252783,"name":"Zitrobid 100mg Tablet DT","price":53.8,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252784,"name":"Zitrobid-CF 200mg/250mg Tablet","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252785,"name":"Zipron TZ 500mg/600mg Tablet","price":69.9,"Is_discontinued":"FALSE","manufacturer_name":"Pifer Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252786,"name":"Zivudin 100mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Synmedic Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (100mg)","short_composition2":""},{"id":252787,"name":"Zixi O Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Cadex Laboratories","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252788,"name":"Zipken 200mg Tablet DT","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Duken Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252789,"name":"Zedflox TZ 400mg/600mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Smilax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg) ","short_composition2":" Tinidazole (600mg)"},{"id":252790,"name":"Zithrostat 500mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Sterling lab","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252791,"name":"Zimnex OZ 200mg/500mg Tablet","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Ultratech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252792,"name":"Zyprab L 75mg/20mg Capsule SR","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":252793,"name":"Zin 500mg Tablet","price":41,"Is_discontinued":"FALSE","manufacturer_name":"Radicura Pharma pvt ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (500mg)","short_composition2":""},{"id":252794,"name":"Zin 750mg Tablet","price":59.4,"Is_discontinued":"FALSE","manufacturer_name":"Radicura Pharma pvt ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pyrazinamide (750mg)","short_composition2":""},{"id":252795,"name":"Zeenacef CV 200mg/125mg Tablet","price":385,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252796,"name":"Zolekair-D 10mg/40mg Capsule","price":57,"Is_discontinued":"FALSE","manufacturer_name":"PDC Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252797,"name":"Zicfic OZ 200mg/500mg Tablet","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Stensa Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252798,"name":"Zemozec 250mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Asterisk Laboratories India Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":252799,"name":"Zuptor F 160mg/10mg Tablet","price":162,"Is_discontinued":"FALSE","manufacturer_name":"Benique Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fenofibrate (160mg) ","short_composition2":" Rosuvastatin (10mg)"},{"id":252800,"name":"Zubimox Plus 250mg/250mg Capsule","price":85,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":252801,"name":"Zubimox 500mg Capsule","price":59.8,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":252802,"name":"Zefinac TH 100mg/4mg Tablet","price":182,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":252803,"name":"Zimspor LB 200mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252804,"name":"Zimspor AZ Dry Syrup","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Azithromycin (100mg/5ml)"},{"id":252805,"name":"Zatropod 50mg Dry Syrup","price":64.8,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":252806,"name":"Zatsa TZ 1000mg/125mg Injection","price":349.9,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252807,"name":"Zithro 250mg Tablet","price":131.6,"Is_discontinued":"FALSE","manufacturer_name":"Care Organics Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252808,"name":"Zactoclox 250mg/250mg Capsule","price":59.9,"Is_discontinued":"FALSE","manufacturer_name":"Lifeline Remedies India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":252809,"name":"Zitrac 200 Oral Suspension","price":45.6,"Is_discontinued":"FALSE","manufacturer_name":"Pinarc Life Sciences","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252810,"name":"Zatropan D 30mg/40mg Capsule SR","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252811,"name":"Zonelix S 1000mg/500mg Injection","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Elixir Life Care Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252812,"name":"Zithcot 250 Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Scot Derma Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252813,"name":"Zedpan 40mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252814,"name":"Ziflocin-OZ Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Vanshita Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252815,"name":"Zeodoxim-CV Kid Dry Syrup","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":252816,"name":"Zecona Tablet","price":12.5,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252817,"name":"Zalome D 10mg/20mg Capsule","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Scocia Labs","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":252818,"name":"Zolystyl 10mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Urvija Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":252819,"name":"Zyonem 1gm Injection","price":899,"Is_discontinued":"FALSE","manufacturer_name":"Colard Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":252820,"name":"ZE-Mentin CV Dry Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Amy Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":252821,"name":"Zithosem 500 Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Prosem Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252822,"name":"Ziofen Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":252823,"name":"Ziokof D Syrup","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Phenylephrine (5mg/5ml) ","short_composition2":" Chlorpheniramine Maleate (2mg/5ml) "},{"id":252824,"name":"Zendic-Fast Injection","price":14.7,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252825,"name":"Zidfev 250mg Oral Suspension","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":252826,"name":"Zuvipenem 1Gm Injection","price":990,"Is_discontinued":"FALSE","manufacturer_name":"Osiante Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Imipenem (500mg) ","short_composition2":" Cilastatin (500mg)"},{"id":252827,"name":"Zitus 200mg Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Radius Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252828,"name":"Zanopine 10mg Tablet MD","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (10mg)","short_composition2":""},{"id":252829,"name":"Zemef D 10mg/250mg Tablet","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Global Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":252830,"name":"Zyromet G 3mg/500mg Tablet","price":84.37,"Is_discontinued":"FALSE","manufacturer_name":"Aagam Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (3mg) ","short_composition2":" Metformin (500mg)"},{"id":252831,"name":"Zeopant D 30mg/40mg Capsule SR","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252832,"name":"Zobet 1000mg/125mg Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Pasco Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252833,"name":"Zitcon 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252834,"name":"Zencin 500mg Injection","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252835,"name":"Zomika 100mg Injection","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":252836,"name":"Zap D 30mg/40mg Capsule SR","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Z Plus Remedies","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252837,"name":"Zafidol SP 100mg/325mg/15mg Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Texas Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252838,"name":"Zoltac LS 75mg/40mg Capsule SR","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Eveson Pharma","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252839,"name":"Zeconac MR 100mg/325mg/250mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252840,"name":"Zeoclav 500mg/125mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Qgensun Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252841,"name":"Ziptron 1000mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252842,"name":"Zolecus Itr 200mg Capsule","price":266,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Pharamceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (200mg)","short_composition2":""},{"id":252843,"name":"Zovicold Plus Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ambroxol (60mg) ","short_composition2":" Levocetirizine (2.5mg) "},{"id":252844,"name":"Zithobrex 500 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Mcbrex Lifesciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252845,"name":"Zooclav 250mg/125mg Tablet","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252846,"name":"Zavedos 25mg Capsule","price":6525,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 1 Capsule","short_composition1":"Idarubicin (25mg)","short_composition2":""},{"id":252847,"name":"Zoflo-NZ Syrup","price":46.9,"Is_discontinued":"FALSE","manufacturer_name":"Allenge India","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Nitazoxanide (100mg/5ml) ","short_composition2":" Ofloxacin (50mg/5ml)"},{"id":252848,"name":"Zevo 750mg Tablet","price":46.05,"Is_discontinued":"FALSE","manufacturer_name":"Indi Pharma","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Levofloxacin (750mg)","short_composition2":""},{"id":252849,"name":"Zontum 4000 mg/500 mg Injection","price":450,"Is_discontinued":"FALSE","manufacturer_name":"Medispan Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":252850,"name":"Zilsmart 80 Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Jubilant Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":252851,"name":"Zoylex RD 500mg Injection","price":932.8,"Is_discontinued":"FALSE","manufacturer_name":"Vhb Life Sciences Inc","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Acyclovir (500mg)","short_composition2":""},{"id":252852,"name":"Zorglim 1mg Tablet","price":33.33,"Is_discontinued":"FALSE","manufacturer_name":"Instanz Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg)","short_composition2":""},{"id":252853,"name":"Zoflick 400mg Tablet","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Maverick Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":252854,"name":"Zanox OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Orley Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252855,"name":"Zfero 500mg Tablet","price":740,"Is_discontinued":"FALSE","manufacturer_name":"Oasis Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":252856,"name":"Zipodom 100mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Unipure Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252857,"name":"Zomesar 40mg Tablet","price":159,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (40mg)","short_composition2":""},{"id":252858,"name":"Zalvon 400mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"ST Sharda Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252859,"name":"Zalith 250mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Osseous Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252860,"name":"Zyzone 4mg Injection","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Obzone Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 10 ml Injection","short_composition1":"Dexamethasone (4mg)","short_composition2":""},{"id":252861,"name":"Zithmax 500mg Tablet","price":215,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252862,"name":"Zilide 250mg Tablet","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252863,"name":"Zenpod 100mg Tablet DT","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252864,"name":"Zithromin 100mg Dry Syrup","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Dry Syrup","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":252865,"name":"ZIK 250mg Tablet","price":59.4,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252866,"name":"Zgflox OZ Syrup","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":252867,"name":"Zecral 1000mg Suspension","price":138.5,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 200 ml Suspension","short_composition1":"Sucralfate (1000mg)","short_composition2":""},{"id":252868,"name":"Zytram PD Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Paracetamol (500mg) "},{"id":252869,"name":"Zool-F 20mg/5mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fluoxetine (20mg) ","short_composition2":" Olanzapine (5mg)"},{"id":252870,"name":"Zentor 750mg Tablet","price":100,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (750mg)","short_composition2":""},{"id":252871,"name":"Zarazone SB 1000mg/500mg Injection","price":289,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252872,"name":"Zeof 50mg Oral Suspension","price":28.05,"Is_discontinued":"FALSE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":252873,"name":"Zaparin 40mg Injection","price":385,"Is_discontinued":"FALSE","manufacturer_name":"Invision Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 0.4 ml Injection","short_composition1":"Enoxaparin (40mg)","short_composition2":""},{"id":252874,"name":"Zocortdy 6mg Tablet","price":93,"Is_discontinued":"FALSE","manufacturer_name":"Gadin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":252875,"name":"Zumet A 5mg/50mg Tablet XL","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Kyna Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet xl","short_composition1":"Amlodipine (5mg) ","short_composition2":" Metoprolol Succinate (50mg)"},{"id":252876,"name":"Zuvicin 50mg Injection","price":1298,"Is_discontinued":"FALSE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Epirubicin (50mg)","short_composition2":""},{"id":252877,"name":"Z Mox FA 250mg Tablet","price":74.66,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":252878,"name":"Zorglim MV Tablet","price":98.5,"Is_discontinued":"FALSE","manufacturer_name":"Instanz Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (NA) ","short_composition2":" Metformin (NA) "},{"id":252879,"name":"Zancip 500mg Tablet","price":64.18,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":252880,"name":"Zactam 2000mg/250mg Injection","price":256,"Is_discontinued":"FALSE","manufacturer_name":"Septalyst Lifesciences Pvt.Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (2000mg) ","short_composition2":" Tazobactum (250mg)"},{"id":252881,"name":"Zenmark 0.3% Eye Drop","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Eye Drop","short_composition1":"Ofloxacin (0.3% w/v)","short_composition2":""},{"id":252882,"name":"Zavon S 1000mg/500mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Romas Remedies","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252883,"name":"Zyfix OZ 200mg/500mg Tablet","price":172,"Is_discontinued":"FALSE","manufacturer_name":"Aelida Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252884,"name":"Zorgan-Plus Oral Suspension","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Monark Biocare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (125mg) ","short_composition2":" Promethazine (5mg)"},{"id":252885,"name":"Zecil SB 750mg/375mg Injection","price":171,"Is_discontinued":"FALSE","manufacturer_name":"Zenn Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (750mg) ","short_composition2":" Sulbactam (375mg)"},{"id":252886,"name":"Zoecort 200mg Injection","price":66.99,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Hydrocortisone (200mg)","short_composition2":""},{"id":252887,"name":"Z Mox CV 500mg/125mg Tablet","price":78.57,"Is_discontinued":"FALSE","manufacturer_name":"Zylone Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252888,"name":"Zbeta 20mg Tablet","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Propranolol (20mg)","short_composition2":""},{"id":252889,"name":"Zolviflam Aqua 75mg Injection","price":19,"Is_discontinued":"FALSE","manufacturer_name":"MayGriss Healthcare Pvt. Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252890,"name":"Zevacef 50mg Dry Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":252891,"name":"Zcerin Pab 50mg/750mg/250mg Tablet","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Rowlinges Life Science","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diacerein (50mg) ","short_composition2":" Glucosamine Sulfate Potassium Chloride (750mg) "},{"id":252892,"name":"Zixum 50mg Dry Syrup","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Roseate Medicare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":252893,"name":"Zeox OZ 250mg/500mg Tablet","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (250mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252894,"name":"Zidfen D 50mg/10mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":252895,"name":"Zxone-SB Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Zenotis Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":252896,"name":"Zimocin 100 Tablet DT","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Abia Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":252897,"name":"Zelpod 50mg Dry Syrup","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252898,"name":"Zithcott 250 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Estocott Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252899,"name":"Zeozol 400mg Tablet","price":7.8,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":252900,"name":"Zoeclav 500mg/125mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252901,"name":"Zoeclo SP 100mg/325mg/15mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252902,"name":"Zerosaid P 100mg/325mg Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Motif Health Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":252903,"name":"Zenkid 200mg Oral Suspension","price":16.5,"Is_discontinued":"FALSE","manufacturer_name":"Mint Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":252904,"name":"Zeesuper 250mg Tablet","price":109,"Is_discontinued":"FALSE","manufacturer_name":"Watran Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252905,"name":"Zeotorva FB 10mg/160mg Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Fenofibrate (160mg)"},{"id":252906,"name":"Zilpod 100mg Tablet DT","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Estro Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":252907,"name":"Zosic 200mg Tablet","price":21,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (200mg)","short_composition2":""},{"id":252908,"name":"Zomipra 20mg Capsule","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":252909,"name":"Zogrell A 150mg/75mg Tablet","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Vhb Life Sciences Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aspirin (150mg) ","short_composition2":" Clopidogrel (75mg)"},{"id":252910,"name":"Zoxepar 650mg Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Paracetamol (650mg)","short_composition2":""},{"id":252911,"name":"Zostacid D 30mg/40mg Capsule SR","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Cynthus Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252912,"name":"Zunix 100mg Dry Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252913,"name":"Zoepan D 30mg/40mg Capsule SR","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":252914,"name":"Zoltac IV 40mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Eveson Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252915,"name":"Zydexa Plus 4mg Injection","price":29,"Is_discontinued":"FALSE","manufacturer_name":"German Remedies","type":"allopathy","pack_size_label":"vial of 20 ml Injection","short_composition1":"Dexamethasone (4mg)","short_composition2":""},{"id":252916,"name":"Zallpam 0.5mg Tablet","price":9.8,"Is_discontinued":"FALSE","manufacturer_name":"A. Menarini India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":252917,"name":"Ziticolin 500mg Tablet","price":363.46,"Is_discontinued":"FALSE","manufacturer_name":"Satven And Mer","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Citicoline (500mg)","short_composition2":""},{"id":252918,"name":"Zithropon 200mg/5ml Syrup","price":59.82,"Is_discontinued":"FALSE","manufacturer_name":"Nippon Seiyaku Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252919,"name":"ZEOF 400 MG TABLET","price":64.65,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":252920,"name":"Zosec Pro 10 mg/20 mg Capsule","price":46.07,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":252921,"name":"Z Mox L L 500mg Capsule","price":32.47,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":252922,"name":"Zanopirol Tablet","price":22.22,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (NA)","short_composition2":""},{"id":252923,"name":"Zyworm Suspension","price":7.48,"Is_discontinued":"FALSE","manufacturer_name":"PCI Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Duloxetine (NA)","short_composition2":""},{"id":252924,"name":"Zykinase 0.75MIU Injection","price":2178.32,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Streptokinase (750000IU)","short_composition2":""},{"id":252925,"name":"ZYTHAM 600MG TABLET","price":25.05,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ethambutol (600mg)","short_composition2":""},{"id":252926,"name":"Zenfuro 750mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Cefuroxime (750mg)","short_composition2":""},{"id":252927,"name":"Zydec 25mg Injection","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":252928,"name":"Zidomax 300mg Tablet","price":153,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":252929,"name":"Zadcox Plus 450mg/300mg Capsule","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Smilax Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Rifampicin (450mg) ","short_composition2":" Isoniazid (300mg)"},{"id":252930,"name":"Zeemox CV 250mg/125mg Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252931,"name":"Zeeroid 4mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Sonixa Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":252932,"name":"Zicor 250mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Jabs Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252933,"name":"Zolmak 150mg Tablet","price":11.5,"Is_discontinued":"FALSE","manufacturer_name":"Trimak Lifesciences","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252934,"name":"Zimspor 50mg Dry Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":252935,"name":"Zeecold 0.1% Nasal Drops","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Wings Biotech Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Nasal Drops","short_composition1":"Xylometazoline (0.1% w/v)","short_composition2":""},{"id":252936,"name":"Zacoflox 200mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252937,"name":"Zamovib 5 Tablet","price":50.08,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clobazam (5mg)","short_composition2":""},{"id":252938,"name":"Zeriheal Plus 50mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Trypsin Chymotrypsin (50000AU)"},{"id":252939,"name":"Zeenacef 200mg Tablet DT","price":225,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":252940,"name":"Zeraz 250mg Tablet","price":61.5,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":252941,"name":"Zubitrex 1000mg Injection","price":64,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252942,"name":"Zubicef AZ 200mg/250mg Tablet","price":165,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":252943,"name":"Zifpod O 200mg/200mg Tablet","price":218,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":252944,"name":"Zexone 250mg Injection","price":25.94,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":252945,"name":"Zymotryp-DP Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252946,"name":"Zaxone 500mg Injection","price":47.35,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252947,"name":"Zoprog 100mg Capsule","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Progesterone (Natural Micronized) (100mg)","short_composition2":""},{"id":252948,"name":"Zithroliv 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Oraliv Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252949,"name":"Zestocef Forte 100mg Syrup","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":252950,"name":"Zfflox 50mg Oral Suspension","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml)","short_composition2":""},{"id":252951,"name":"Zylomef P Oral Suspension","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":252952,"name":"Zelpod CV 200mg/125mg Tablet","price":282,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252953,"name":"Zarclav 500mg/125mg Tablet","price":203,"Is_discontinued":"FALSE","manufacturer_name":"Zargan Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252954,"name":"Zythin 200mg Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Gracia Life Science India Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg/5ml)","short_composition2":""},{"id":252955,"name":"Zinepom 15mg/20mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Taksa LIfe Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (15mg) ","short_composition2":" Cinnarizine (20mg)"},{"id":252956,"name":"Zifcef 500mg Injection","price":47.38,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252957,"name":"Zestspas 10mg/250mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":252958,"name":"Ziotric 1000 Injection","price":56.6,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252959,"name":"Zifcas DX 200mg/500mg Tablet","price":214,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Dicloxacillin (500mg)"},{"id":252960,"name":"Zexaflox 200mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Axico Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":252961,"name":"Zocofine 150mg Tablet","price":15.17,"Is_discontinued":"FALSE","manufacturer_name":"Altova Healthcare","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":252962,"name":"Zadro 125mg Redimix Suspension","price":17.1,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Redimix Suspension","short_composition1":"Cefadroxil (125mg/5ml)","short_composition2":""},{"id":252963,"name":"Zenifexo 120mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Fexofenadine (120mg)","short_composition2":""},{"id":252964,"name":"Zitopod Dry Syrup","price":64.8,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg/5ml)","short_composition2":""},{"id":252965,"name":"Zimspor OL 200mg/200mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":252966,"name":"Zoxlin CV 500mg/125mg Tablet","price":109.5,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252967,"name":"Zonefor 250mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (250mg)","short_composition2":""},{"id":252968,"name":"Zanmet P 15mg/500mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Organon (India) Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pioglitazone (15mg) ","short_composition2":" Metformin (500mg)"},{"id":252969,"name":"Zorospar 200mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zorex Pharma Pvt Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sparfloxacin (200mg)","short_composition2":""},{"id":252970,"name":"Zemat OZ 200mg/500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zeemat Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252971,"name":"Zerivid OZ 200mg/500mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zovaitalia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252972,"name":"Zid Vac 1000mg Injection","price":288,"Is_discontinued":"FALSE","manufacturer_name":"Cian Health Care Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252973,"name":"Zfol PD Tablet","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Greenray Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Doxylamine (10mg) ","short_composition2":" Vitamin B6 (Pyridoxine) (10mg) "},{"id":252974,"name":"Zicfi OZ 200mg/500mg Tablet","price":197,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":252975,"name":"Zentran 100mg Capsule","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Zenkins Pharmaceutical Pvt.Ltd.","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":252976,"name":"Zkacin 500 Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"ADZO Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252977,"name":"Zingcef 1000mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Swakam Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":252978,"name":"Zokacin 500mg Injection","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":252979,"name":"Zovifast AQ 75mg Injection","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":252980,"name":"Zithotrax 500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Vytrax Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":252981,"name":"Zolecus Itr 100mg Capsule","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Pharamceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":252982,"name":"Zovifast SP 50mg/325mg/10mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":252983,"name":"Zoxinace-P Oral Suspension","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":252984,"name":"Zeoclav 250mg/125mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Qgensun Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":252985,"name":"Zeslin 600 Tablet","price":359,"Is_discontinued":"FALSE","manufacturer_name":"Zesstek Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":252986,"name":"Zitmik 250mg Injection","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Biomax Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":252987,"name":"Zucaf 200mg Tablet","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Sanjeevani Bio-Tech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":252988,"name":"Zinret M Syrup","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":252989,"name":"Z One 500mg Injection","price":49.4,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":252990,"name":"Zepodox S 250 mg/125 mg Injection","price":73.33,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":252991,"name":"Zilatax 80mg Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Ajanta Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azilsartan medoxomil (80mg)","short_composition2":""},{"id":252992,"name":"Zolnex -IV Injection","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Nex Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":252993,"name":"Zatsa 1000mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":252994,"name":"Zutex-S 1gm/0.5gm Injection","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1gm) ","short_composition2":" Sulbactam (0.5gm)"},{"id":252995,"name":"Z Pod 50mg Tablet DT","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":252996,"name":"Zozopolo-A 50mg/5mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Sanify Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Losartan (50mg) ","short_composition2":" Amlodipine (5mg)"},{"id":252997,"name":"Zidataz 1000mg/125mg Injection","price":545,"Is_discontinued":"FALSE","manufacturer_name":"Supermax Laboratories","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":252998,"name":"Zuesec-P 100mg/500mg Tablet","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":252999,"name":"Zimy 100mg Tablet","price":31.2,"Is_discontinued":"FALSE","manufacturer_name":"UPS Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253000,"name":"Z Clo 25mg Tablet","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Welfo Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clozapine (25mg)","short_composition2":""},{"id":253001,"name":"Zofon OZ Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"JVD Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":253002,"name":"Zitriax 250mg Injection","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253003,"name":"Zinsupac Tablet","price":39.9,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253004,"name":"Zeftis 100mg Tablet DT","price":69,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253005,"name":"Zypan O 40mg/4mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg) ","short_composition2":" Ondansetron (4mg)"},{"id":253006,"name":"Zeflurin Plus 40mg/10mg Tablet","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Propranolol (40mg) ","short_composition2":" Flunarizine (10mg)"},{"id":253007,"name":"Zidim 1000mg Injection","price":229,"Is_discontinued":"FALSE","manufacturer_name":"Impileo Lifescience","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253008,"name":"Zenidox 50mg Dry Syrup","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253009,"name":"Zovimax D 250mg/250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Kritikos Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":253010,"name":"Zilopan 40mg Injection","price":45.2,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253011,"name":"Zonbact O 100mg Tablet DT","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Eugenics Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253012,"name":"Zoprog 300 Soft Gelatin Capsule","price":425,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Progesterone (300mg)","short_composition2":""},{"id":253013,"name":"Zenworm 200mg Oral Suspension","price":16.8,"Is_discontinued":"FALSE","manufacturer_name":"Ikon Remedies Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg/5ml)","short_composition2":""},{"id":253014,"name":"Zep Kid 100mg Tablet","price":8.79,"Is_discontinued":"FALSE","manufacturer_name":"Lifecare Innovations Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Carbamazepine (100mg)","short_composition2":""},{"id":253015,"name":"Zobose 0.3mg Tablet","price":88.9,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Voglibose (0.3mg)","short_composition2":""},{"id":253016,"name":"Zorceft 500mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253017,"name":"Zubicef Oral Suspension","price":105,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253018,"name":"Zubitrex TM 250mg/31.25mg Injection","price":68,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":253019,"name":"Zolpiwom 10mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Wonder Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":253020,"name":"Zumitra 100mg Capsule","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":253021,"name":"Zetax-OZ Tablet","price":185.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253022,"name":"Zocdex-DP Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (4mg/5ml) ","short_composition2":" Dextromethorphan Hydrobromide (5mg/5ml) "},{"id":253023,"name":"Zocpan 40mg Injection","price":46.8,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253024,"name":"Zesinac P 37.5mg/325mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Mandevis Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tramadol (37.5mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253025,"name":"Zithee Plus 200mg/250mg Tablet","price":186.5,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":253026,"name":"Zoyamol-P Tablet","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253027,"name":"Zenikast 2.5mg/4mg Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":253028,"name":"Zumoceft S 1000mg/500mg Injection","price":109,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253029,"name":"Zeomox CV Dry Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253030,"name":"Zonet S 250mg/125mg Injection","price":39.5,"Is_discontinued":"FALSE","manufacturer_name":"Linnet Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253031,"name":"Zentrom 250mg Injection","price":142,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Artesunate (250mg)","short_composition2":""},{"id":253032,"name":"Zitaran 1gm Injection","price":305,"Is_discontinued":"FALSE","manufacturer_name":"Quest Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (1gm)","short_composition2":""},{"id":253033,"name":"Zatrolone 50mg Injection","price":158,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253034,"name":"Zoleban 200mg Oral Suspension","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Decipher Labs Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253035,"name":"Zoney O 4mg/20mg Capsule","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Progressive Life Care","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Ondansetron (4mg) ","short_composition2":" Omeprazole (20mg)"},{"id":253036,"name":"Zestocef 50mg Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253037,"name":"Ziopenem 1000mg Injection","price":1590,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253038,"name":"Zoncet 5mg Tablet","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":253039,"name":"Ziotric-S 1.5 Injection","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253040,"name":"Zifcef 1000mg Tablet DT","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (1000mg)","short_composition2":""},{"id":253041,"name":"Zelcef TZ 1000mg/125mg Injection","price":151,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253042,"name":"Zorirab 20 Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zorris Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253043,"name":"Ziovir 800mg Tablet","price":265,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Acyclovir (800mg)","short_composition2":""},{"id":253044,"name":"Zifcas LB 200mg Tablet","price":144,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":253045,"name":"Zegcef S 1000mg/500mg Injection","price":103,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253046,"name":"Zoltac D 30mg/40mg Capsule SR","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Eveson Pharma","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253047,"name":"Zidshot 250mg Injection","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Werke Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253048,"name":"Zotax 500mg Injection","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Medreich Lifecare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefotaxime (500mg)","short_composition2":""},{"id":253049,"name":"Zixican 100mg Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Cansas Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253050,"name":"Ziamin Plus Injection","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylcobalamin (1000mcg) ","short_composition2":" Vitamin B6 (Pyridoxine) (100mg) "},{"id":253051,"name":"Zaxcef LB 200mg Tablet DT","price":143,"Is_discontinued":"FALSE","manufacturer_name":"Tridev Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":253052,"name":"Zoxtin 500mg Tablet","price":285,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":253053,"name":"Zoxepar 125mg Oral Suspension","price":21.5,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (125mg)","short_composition2":""},{"id":253054,"name":"Zolecus OD 10mg/20mg Capsule","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Sunrise Pharamceuticals","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":253055,"name":"Zithroheel 500mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Bio Heal Remedies","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253056,"name":"Zonclav Dry Syrup","price":61,"Is_discontinued":"FALSE","manufacturer_name":"SAG Health Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253057,"name":"Zolotis 1000mg/500mg Injection","price":297,"Is_discontinued":"FALSE","manufacturer_name":"Ecstasy Healthcare Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253058,"name":"Zoxil CV 200mg/28.5mg Suspension","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253059,"name":"Zumin DRCM Capsule CR","price":65,"Is_discontinued":"TRUE","manufacturer_name":"Raptakos Brett & Co Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule cr","short_composition1":"Mebendazole (NA)","short_composition2":""},{"id":253060,"name":"Zunata 60mg Injection","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Troikaa Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253061,"name":"Zallpam 0.25mg Tablet","price":6.45,"Is_discontinued":"FALSE","manufacturer_name":"A. Menarini India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":253062,"name":"Zithropon 100mg/5ml Syrup","price":24.13,"Is_discontinued":"FALSE","manufacturer_name":"Nippon Seiyaku Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Syrup","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":253063,"name":"Zyvana M Forte 1mg/1000mg Tablet SR","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Converge Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (1000mg)"},{"id":253064,"name":"Zacin-XF 200mg/200mg Tablet","price":142.86,"Is_discontinued":"FALSE","manufacturer_name":"Maxamus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253065,"name":"Zithronid 250mg Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Nidus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253066,"name":"Zofixi-CL 200mg/125mg Tablet","price":174,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253067,"name":"Zutex-T 1000mg/125mg Injection","price":148,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253068,"name":"Zucet-N 100mg/5mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Levocetirizine (5mg)"},{"id":253069,"name":"Zudol 50mg Injection","price":26.4,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":253070,"name":"Zovetac 750mcg/75mg Tablet","price":447,"Is_discontinued":"FALSE","manufacturer_name":"Deccan Healthcare","type":"allopathy","pack_size_label":"strip of 30 tablets","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":253071,"name":"Zamoxy 500mg Capsule","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":253072,"name":"Zevacef 50mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253073,"name":"Zipflam-SP Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253074,"name":"Zoquin 250mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (250mg)","short_composition2":""},{"id":253075,"name":"Zolydep 0.25mg Tablet","price":10.08,"Is_discontinued":"FALSE","manufacturer_name":"Reliance Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":253076,"name":"Zufly-OZ Syrup","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":253077,"name":"Zubactum 4gm/500mg Injection","price":690,"Is_discontinued":"FALSE","manufacturer_name":"Atlanta Biotec","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4gm) ","short_composition2":" Tazobactum (500mg)"},{"id":253078,"name":"Zospar 0.3% Eye Drop","price":27.35,"Is_discontinued":"FALSE","manufacturer_name":"FDC Ltd","type":"allopathy","pack_size_label":"packet of 5 ml Eye Drop","short_composition1":"Sparfloxacin (0.3% w/v)","short_composition2":""},{"id":253079,"name":"Zax-S 250mg/125mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253080,"name":"Zuthrox 200mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253081,"name":"Zeemox CV 500mg/125mg Tablet","price":138,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253082,"name":"Zovisert 100 Tablet","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Sertraline (100mg)","short_composition2":""},{"id":253083,"name":"Zoypod Syrup","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253084,"name":"Zicon Suspension","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Antiseptic Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253085,"name":"Zwitclox 250mg/250mg Capsule","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Brussels Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":253086,"name":"Zpename 1000mg Injection","price":1400,"Is_discontinued":"FALSE","manufacturer_name":"Medigen Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253087,"name":"Zysafe 200mg Tablet","price":158,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253088,"name":"Zantof Suspension","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":253089,"name":"Zarith 250mg Tablet","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clarithromycin (250mg)","short_composition2":""},{"id":253090,"name":"Zefedoxime CV Dry Syrup","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253091,"name":"Zyprab D 30mg/20mg Capsule SR","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253092,"name":"Zypdox 100mg Dry Syrup","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253093,"name":"Zypsafe 10mg/10mg/5mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Doxylamine (10mg) ","short_composition2":" Vitamin B6 (Pyridoxine) (10mg) "},{"id":253094,"name":"Zotopod 100mg Tablet DT","price":118.5,"Is_discontinued":"FALSE","manufacturer_name":"Accilex Nutricorp","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253095,"name":"Zofther 150mg Injection","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":253096,"name":"Zonvin S 250mg/125mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253097,"name":"Zimix TZ 1000mg/125mg Injection","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253098,"name":"Zifpod-AZ Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":253099,"name":"Zolover L 75mg/20mg Capsule SR","price":128,"Is_discontinued":"FALSE","manufacturer_name":"Evershine Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253100,"name":"Zerlonate 50mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253101,"name":"Zumace T 100mg/4mg Tablet","price":164,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253102,"name":"Zidco 1500 Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":253103,"name":"Zidtrax S 250mg/125mg Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253104,"name":"Zithrowin 250 Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Surewin Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253105,"name":"Ziplocort 6 Tablet","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Myriad Hues Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253106,"name":"Zoliris 10mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Curis Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":253107,"name":"Zacnol OZ 200mg/500mg Tablet","price":113.2,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253108,"name":"Zegcef 1000mg Injection","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253109,"name":"Zobra 0.3% Eye Drop","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"bottle of 5 ml Eye Drop","short_composition1":"Tobramycin (0.3% w/v)","short_composition2":""},{"id":253110,"name":"Zefserch 500mg Tablet","price":479,"Is_discontinued":"FALSE","manufacturer_name":"Medilewis Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":253111,"name":"Zitle 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Ellederma Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253112,"name":"Zimspor OZ Dry Syrup","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":253113,"name":"Zefocef-OZ Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253114,"name":"Zithobac 500 Tablet","price":67.5,"Is_discontinued":"FALSE","manufacturer_name":"Fealth Life Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253115,"name":"Zadunate 80mg/480mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Artemether (80mg) ","short_composition2":" Lumefantrine (480mg)"},{"id":253116,"name":"Zmik 500mg Injection","price":66.45,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":253117,"name":"Zimifine 250mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253118,"name":"Zeonac TH 100mg/4mg Tablet","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253119,"name":"Zeldom D 10mg/20mg Capsule","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Medsyn Lab Biotech","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":253120,"name":"Zxime-OF Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Sunfine Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253121,"name":"Zatrolone 25mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253122,"name":"Zatropan D 10mg/40mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253123,"name":"Zylin OD 150mg Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pregabalin (150mg)","short_composition2":""},{"id":253124,"name":"Zonum 1000mg/500mg Injection","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Care Organics Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253125,"name":"Zefacast 500mg Tablet","price":492,"Is_discontinued":"FALSE","manufacturer_name":"Tridev Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":253126,"name":"Zunix OZ 200mg/500mg Tablet","price":169,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253127,"name":"Zomy LB 250mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg) ","short_composition2":" Lactic acid bacillus (60Million spores)"},{"id":253128,"name":"Zaminam 1000mg Injection","price":1912,"Is_discontinued":"FALSE","manufacturer_name":"Torres Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253129,"name":"Zythro 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Medsyn Lab Biotech","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253130,"name":"Zithrokk 500mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Rokkwinn Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253131,"name":"Zolstil 10mg Tablet","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Werke Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":253132,"name":"Zestrain Plus 100mg/325mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253133,"name":"Zeomycin Cream","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"tube of 10 gm Cream","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Neomycin (0.5% w/w) "},{"id":253134,"name":"Zithvon 250mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Alvonics Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253135,"name":"Zydexa Plus 4mg Injection","price":39,"Is_discontinued":"FALSE","manufacturer_name":"German Remedies","type":"allopathy","pack_size_label":"vial of 30 ml Injection","short_composition1":"Dexamethasone (4mg)","short_composition2":""},{"id":253136,"name":"Zoeflame SP 100mg/325mg/15mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Evax Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253137,"name":"Zanclav 250mg/125mg Tablet","price":172.5,"Is_discontinued":"FALSE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253138,"name":"Zekonac P Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Glydus Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253139,"name":"Ziomi DX 10mg/10mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"strip of 20 tablets","short_composition1":"Omeprazole (10mg) ","short_composition2":" Dicyclomine (10mg)"},{"id":253140,"name":"Zytamol 250 Oral Suspension","price":39.65,"Is_discontinued":"FALSE","manufacturer_name":"Rebanta Health Care (P) Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":253141,"name":"Zolsed 4000 mg/500 mg Injection","price":640.62,"Is_discontinued":"FALSE","manufacturer_name":"Bharat Serums & Vaccines Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253142,"name":"Zimnic 50mg Redimix Suspension","price":52.38,"Is_discontinued":"TRUE","manufacturer_name":"Abbott","type":"allopathy","pack_size_label":"bottle of 30 ml Redimix Suspension","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253143,"name":"Zitis 100mg/5ml Suspension","price":28.18,"Is_discontinued":"FALSE","manufacturer_name":"Scortis Lab Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 15 ml Suspension","short_composition1":"Azithromycin (100mg/5ml)","short_composition2":""},{"id":253144,"name":"Zypine MD 15mg Tablet","price":60.06,"Is_discontinued":"FALSE","manufacturer_name":"Torrent Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (15mg)","short_composition2":""},{"id":253145,"name":"ZEOF 100 MG TABLET DT","price":21.2,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":253146,"name":"Zoftax O 200mg Tablet DT","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253147,"name":"Zygati 400mg Tablet","price":27.5,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Gatifloxacin (400mg)","short_composition2":""},{"id":253148,"name":"Zemed 2mg Tablet","price":47.7,"Is_discontinued":"FALSE","manufacturer_name":"Osmed Formulations","type":"allopathy","pack_size_label":"strip of 12 tablets","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":253149,"name":"Zydim 250mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Adison Laboratories","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253150,"name":"Zacnase 50mg/10mg Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Instant Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253151,"name":"Zeropip Injection","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Axter Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253152,"name":"Zopep 20mg Capsule","price":29.1,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":253153,"name":"Zetclav Dry Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253154,"name":"Zefedoxime O 200mg/200mg Tablet","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253155,"name":"Zicfi 500mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253156,"name":"Zardcef 500 Injection","price":45.8,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253157,"name":"Zamovib 10 Tablet","price":87.99,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clobazam (10mg)","short_composition2":""},{"id":253158,"name":"Zvacet 5mg/10mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Anamiva Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":253159,"name":"Zovamide MR 100mg/2mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zovaitalia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Tizanidine (2mg)"},{"id":253160,"name":"Zoxus 50mg/500mg Tablet","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Lexus Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":253161,"name":"Zaduther 150mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (75mg/ml)","short_composition2":""},{"id":253162,"name":"Zolgates 400mg Tablet","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Gates India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Albendazole (400mg)","short_composition2":""},{"id":253163,"name":"Zicfic OF 200mg/200mg Tablet","price":133,"Is_discontinued":"FALSE","manufacturer_name":"Stensa Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253164,"name":"Zicfi 250 Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253165,"name":"Zygolox OZ 200mg/500mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Zygal Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253166,"name":"Zago OZ 200mg/500mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Penlon India Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253167,"name":"Zacur 125mg Dry Syrup","price":129.9,"Is_discontinued":"FALSE","manufacturer_name":"Aamorb Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefuroxime (125mg/5ml)","short_composition2":""},{"id":253168,"name":"Zepatrac 2mg Tablet","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lorazepam (2mg)","short_composition2":""},{"id":253169,"name":"Zax-T 1000mg/125mg Injection","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253170,"name":"Zeflaza 30mg Tablet","price":250,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (30mg)","short_composition2":""},{"id":253171,"name":"Zoflin-OZ 200mg/500mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Daffohils Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253172,"name":"Zeset 2mg Syrup","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg/5ml)","short_composition2":""},{"id":253173,"name":"Zithromin 100mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253174,"name":"Zinus-LA Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Cronus Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (30mg) ","short_composition2":" Paracetamol (500mg) "},{"id":253175,"name":"Zutex-S 250mg/125mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253176,"name":"Zendic 25mg Injection","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (25mg)","short_composition2":""},{"id":253177,"name":"Zeorab 20mg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Morgen Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253178,"name":"Zeflon 200mg Tablet","price":56.8,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253179,"name":"Zess 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Trikut Humanities Bio Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253180,"name":"Zavon-T Injection","price":189,"Is_discontinued":"FALSE","manufacturer_name":"Romas Remedies","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253181,"name":"Zifpod 100 Tablet","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253182,"name":"Zumet 25mg Tablet XL","price":39,"Is_discontinued":"FALSE","manufacturer_name":"Kyna Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet xl","short_composition1":"Metoprolol Succinate (25mg)","short_composition2":""},{"id":253183,"name":"Zubiflox 500mg Tablet","price":65.4,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":253184,"name":"Zotwel M 80mg/250mg Tablet","price":74.55,"Is_discontinued":"FALSE","manufacturer_name":"Avail Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":253185,"name":"Zarobac 500mg/500mg Injection","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"packet of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253186,"name":"Zenidime 1000mg Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253187,"name":"Zetacef-CV Oral Suspension","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Servocare Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg/5ml) ","short_composition2":" Clavulanic Acid (31.25mg/5ml)"},{"id":253188,"name":"Zitopod 100 DT Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253189,"name":"Zubrilin-LS Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Osiante Biotech","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg/5ml) ","short_composition2":" Levosalbutamol (1mg/5ml) "},{"id":253190,"name":"Zatrocob 1500mcg Injection","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":253191,"name":"Zhenmol-DP Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zhen Heal Craft Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253192,"name":"Zonefor TZ 1000mg/125mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253193,"name":"Ziopip 4.5 Injection","price":461.7,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253194,"name":"Ziotric 250mg Injection","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253195,"name":"Zioxim 50mg Dry Syrup","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253196,"name":"Zifcas O 200mg/200mg Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253197,"name":"Zeacid IT 20mg/150mg Capsule SR","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Advance Revive","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Rabeprazole (20mg) ","short_composition2":" Itopride (150mg)"},{"id":253198,"name":"Zunocef 200mg Tablet DT","price":127,"Is_discontinued":"FALSE","manufacturer_name":"Zuno Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253199,"name":"Zescof-AM Syrup","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253200,"name":"Zithrodox 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Amy Lifesciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253201,"name":"Zadipa-S Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Cerovene Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253202,"name":"Zetopan 40 Injection","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Morstella Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253203,"name":"Ziprotil CV 200mg/125mg Tablet","price":283,"Is_discontinued":"FALSE","manufacturer_name":"Calen Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253204,"name":"Zetasic Tablet","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Bolivian Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253205,"name":"Zeotez 4000mg/500mg Injection","price":490.56,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253206,"name":"Zeox OF Plus 200mg/200mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":253207,"name":"Zerinom 1G Injection","price":1902,"Is_discontinued":"FALSE","manufacturer_name":"Agex Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253208,"name":"Zithub 500 Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Trubeca Lifesciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253209,"name":"Zeconac P 100mg/325mg Tablet","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253210,"name":"Zeconac TH 100mg/4mg Tablet","price":168,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253211,"name":"Zetanerv 1500mcg Injection","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Tridev Pharmaceutical","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":253212,"name":"Zoxotrox S 250mg/125mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253213,"name":"Zoxotrox 500mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253214,"name":"Zithotrax 250mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Vytrax Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253215,"name":"Zithronour 100 Oral Suspension","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Nourier Lab","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253216,"name":"Zithomed 250 Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Medroots Biopharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253217,"name":"Zoxlon 50mg Injection","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253218,"name":"Zoepan 40mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253219,"name":"Zaspo D 10mg/40mg Tablet","price":97,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253220,"name":"Zeelone 16mg Tablet","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Synex Global Services Llp","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":253221,"name":"Zeoglin M Forte 1mg/1000mg Tablet","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (1mg) ","short_composition2":" Metformin (1000mg)"},{"id":253222,"name":"Z One T 250mg/31.25mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":253223,"name":"Zidcare 250 Injection","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Atlantis Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253224,"name":"Zeximed O 200mg/200mg Tablet","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Emdok Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253225,"name":"Zavikpod 100mg Tablet DT","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253226,"name":"Zycin 250mg Tablet","price":118.45,"Is_discontinued":"FALSE","manufacturer_name":"Cadila Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253227,"name":"Zoepan 40mg Injection","price":48.79,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253228,"name":"Ziotil-CV 100 Dry Syrup","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":253229,"name":"Zithfab 500mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Aenor Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253230,"name":"Zoxilin CV Dry Syrup","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Gatlen Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":253231,"name":"Zomark 0.25mg Tablet","price":9.51,"Is_discontinued":"FALSE","manufacturer_name":"Unimarck Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":253232,"name":"Zamic 1000mg Injection","price":2333.33,"Is_discontinued":"TRUE","manufacturer_name":"Indoco Remedies Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253233,"name":"Zorok 1000 mg/1000 mg Injection","price":138.1,"Is_discontinued":"FALSE","manufacturer_name":"Astrum Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (1000mg)"},{"id":253234,"name":"Zenol 40mg Injection","price":47.67,"Is_discontinued":"FALSE","manufacturer_name":"Zenith Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253235,"name":"Zentim Kid 500 mg/62.5 mg Injection","price":80.95,"Is_discontinued":"FALSE","manufacturer_name":"Delcure Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Tazobactum (62.5mg)"},{"id":253236,"name":"Zopercin 2000 mg/250 mg Injection","price":196,"Is_discontinued":"FALSE","manufacturer_name":"Orchid Chemicals & Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (2000mg) ","short_composition2":" Tazobactum (250mg)"},{"id":253237,"name":"Zefpod 100mg Tablet DT","price":121.15,"Is_discontinued":"FALSE","manufacturer_name":"Bal Pharma Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253238,"name":"Zema 0.5mg Tablet","price":19.84,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":253239,"name":"ZUPAXEL 30 MG INJECTION","price":1620,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Paclitaxel (30mg)","short_composition2":""},{"id":253240,"name":"Zazen-GP 300mg/500mcg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Auzalus Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (500mcg)"},{"id":253241,"name":"Zuvanext A 20 mg Tablet","price":94,"Is_discontinued":"FALSE","manufacturer_name":"Regalia Pharmaceuticals (I) Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rosuvastatin (20mg) ","short_composition2":" Aspirin (75mg)"},{"id":253242,"name":"Zesunate 60mg Injection","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253243,"name":"Zencef Plus 250mg/125mg Injection","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Helax Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253244,"name":"Zactane 40mg Tablet","price":9.15,"Is_discontinued":"FALSE","manufacturer_name":"Pfizer Ltd","type":"allopathy","pack_size_label":"strip of 14 tablets","short_composition1":"Famotidine (40mg)","short_composition2":""},{"id":253245,"name":"Zidec 25mg Injection","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253246,"name":"Zoac 400mg/600mg Tablet","price":61.25,"Is_discontinued":"FALSE","manufacturer_name":"Stadmed Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Norfloxacin (400mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253247,"name":"Zgpod 200mg Tablet","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253248,"name":"Zithromin-XL 200mg Dry Syrup","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":253249,"name":"Zacur 1500mg Injection","price":299,"Is_discontinued":"FALSE","manufacturer_name":"Aamorb Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":253250,"name":"Zopidin Forte Lotion","price":102,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Lotion","short_composition1":"Povidone Iodine (10% w/v)","short_composition2":""},{"id":253251,"name":"Zolekair I 40mg/150mg Capsule","price":156,"Is_discontinued":"FALSE","manufacturer_name":"PDC Healthcare","type":"allopathy","pack_size_label":"strip of 15 capsules","short_composition1":"Pantoprazole (40mg) ","short_composition2":" Itopride (150mg)"},{"id":253252,"name":"Zarithro 250mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253253,"name":"Zolorab D 30 mg/20 mg Capsule","price":55.55,"Is_discontinued":"TRUE","manufacturer_name":"Indoco Remedies Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253254,"name":"Zobison 4000mg/500mg Injection","price":729,"Is_discontinued":"FALSE","manufacturer_name":"Bison Biotec Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253255,"name":"Zon 3mg Tablet","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Elikem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Risperidone (3mg)","short_composition2":""},{"id":253256,"name":"Zepamax 1mg Tablet","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Invision Medi Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (1mg)","short_composition2":""},{"id":253257,"name":"Zakrab 20mg Capsule","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Luziac Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253258,"name":"Zeridox CV Oral Suspension","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Zering Smith Lifesciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg/5ml) ","short_composition2":" Clavulanic Acid (31.25mg/5ml)"},{"id":253259,"name":"Zatsa 125mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (125mg)","short_composition2":""},{"id":253260,"name":"Zatsa S 1000mg/500mg Injection","price":450,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253261,"name":"Zatrofix 100mg Tablet DT","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253262,"name":"Zantof LB 400mg Tablet","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":253263,"name":"Zcef S 500mg/500mg Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Uniword Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253264,"name":"Zoxistat 500mg/250mg Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Numera Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Tranexamic Acid (500mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":253265,"name":"Zefinac 100mg/325mg Tablet","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253266,"name":"Zuricet M Kid 2.5mg/4mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":253267,"name":"Zexone SB 250mg/125mg Injection","price":42.5,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253268,"name":"Zonbact O 50mg Dry Syrup","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Eugenics Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":253269,"name":"Zeuazi 500mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zeuson Medicines Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253270,"name":"Zioden TZ 250mg/31.25mg Injection","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Welgenic Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":253271,"name":"Zotaflam 100mg/325mg Tablet","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253272,"name":"Zeltuss T Syrup","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253273,"name":"Zithrodox 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Amy Lifesciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253274,"name":"Zelakot M 16mg Tablet","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":253275,"name":"Zelakot M 4mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Hacks & Slacks Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (4mg)","short_composition2":""},{"id":253276,"name":"Zapp 1000 Injection","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253277,"name":"Zidrab 20 Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253278,"name":"Zexime 100mg Tablet DT","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253279,"name":"Zidrox 250mg Tablet","price":255,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":253280,"name":"Zidnem D 80mg/250mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":253281,"name":"Zebi-LSR Capsule","price":161,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253282,"name":"Zioderm Ointment","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Clobetasol (0.05% w/w) ","short_composition2":" Neomycin (0.5% w/w) "},{"id":253283,"name":"Zeura 2mg Tablet","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Fawn Incorporation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lorazepam (2mg)","short_composition2":""},{"id":253284,"name":"Zoxton 1gm Injection","price":56.67,"Is_discontinued":"FALSE","manufacturer_name":"Ampira Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253285,"name":"Zinicef 1000mg Injection","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Voxiva Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253286,"name":"Zeoceft S 250mg/125mg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253287,"name":"Zolotin Oral Suspension","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Kestrel Lifesciences","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Ivermectin (1.5mg) ","short_composition2":" Albendazole (200mg)"},{"id":253288,"name":"Zetalone 50mg Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Axico Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253289,"name":"Zedicort 6mg Tablet","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Bioxtreme Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253290,"name":"Zolnem 100mg Dry Syrup","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Nemi Pharmaceuticles","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Linezolid (100mg)","short_composition2":""},{"id":253291,"name":"Zanroxim AZ 200mg/250mg Tablet","price":166.5,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":253292,"name":"Zanroxim OZ 200mg/500mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253293,"name":"Zidobect 1000mg Injection","price":249.45,"Is_discontinued":"FALSE","manufacturer_name":"In Med Therapeutics","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253294,"name":"Zupox 50mg Dry Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253295,"name":"Ziclofenac MR 250mg/50mg/325mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":253296,"name":"Zenimox-CV Injection","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":253297,"name":"Zonvin S 1000mg/500mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253298,"name":"Zocflox 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253299,"name":"Ziopen 1000mg Injection","price":1780,"Is_discontinued":"FALSE","manufacturer_name":"Vinson pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253300,"name":"Zazogesic 100mg/325mg Tablet","price":42,"Is_discontinued":"FALSE","manufacturer_name":"Uko Pharmatech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253301,"name":"Ziocil 500mg/500mg Injection","price":1470,"Is_discontinued":"FALSE","manufacturer_name":"Vinson pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Imipenem (500mg) ","short_composition2":" Cilastatin (500mg)"},{"id":253302,"name":"Zeltum LZ 500mg/600mg Tablet","price":900,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg) ","short_composition2":" Linezolid (600mg)"},{"id":253303,"name":"Zadunate Dry Injection","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253304,"name":"Zubik S 250mg/125mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Stenhill Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253305,"name":"Zitnez 250mg Tablet","price":67.35,"Is_discontinued":"FALSE","manufacturer_name":"Akunez Biotech","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253306,"name":"Zypreg M 750mcg/75mg Capsule","price":158,"Is_discontinued":"FALSE","manufacturer_name":"Zynext Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":253307,"name":"Zedma C Suspension","price":34,"Is_discontinued":"FALSE","manufacturer_name":"Zedchem Pharma","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Paracetamol (250mg/5ml) ","short_composition2":" Phenylpropanolamine (12.5mg/5ml) "},{"id":253308,"name":"Zepither Forte 80mg/480mg Tablet","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Cian Health Care Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Artemether (80mg) ","short_composition2":" Lumefantrine (480mg)"},{"id":253309,"name":"Zabee 20mg Injection","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Medok Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253310,"name":"Zexime 50mg Tablet DT","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253311,"name":"Zolben 200mg Oral Suspension","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Dynamic Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253312,"name":"Zondal Suspension","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Aan Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253313,"name":"Zoynim 100mg Tablet","price":26,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg)","short_composition2":""},{"id":253314,"name":"Zocxafen Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Raffles Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253315,"name":"Zoezone S 1000mg/500mg Injection","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253316,"name":"Zexosis M Cream","price":73,"Is_discontinued":"FALSE","manufacturer_name":"KAINOSIS PHARMACEUTICALS","type":"allopathy","pack_size_label":"tube of 15 gm Cream","short_composition1":"Hydroquinone (2% w/w) ","short_composition2":" Mometasone (0.1% w/w) "},{"id":253317,"name":"Zingcef S 1000mg/500mg Injection","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Swakam Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253318,"name":"Zetanerv 2500mcg Injection","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Tridev Pharmaceutical","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (2500mcg)","short_composition2":""},{"id":253319,"name":"Zorbten MF 1000 Tablet ER","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Goddres Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet er","short_composition1":"Metformin (1000mg) ","short_composition2":" Teneligliptin (20mg)"},{"id":253320,"name":"Zolib M Forte 4mg/1000mg Tablet","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Glimepiride (4mg) ","short_composition2":" Metformin (1000mg)"},{"id":253321,"name":"Zipcin 250mg Tablet","price":17.6,"Is_discontinued":"FALSE","manufacturer_name":"Gufic Bioscience Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (250mg)","short_composition2":""},{"id":253322,"name":"Zinfen P 100mg/325mg Tablet","price":53.4,"Is_discontinued":"FALSE","manufacturer_name":"Panzin Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253323,"name":"Zonin 500mg Tablet","price":116,"Is_discontinued":"FALSE","manufacturer_name":"Helios Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 5 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253324,"name":"Zomika 500mg Injection","price":61.9,"Is_discontinued":"FALSE","manufacturer_name":"Zota Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":253325,"name":"Zinret M 5mg/10mg Tablet","price":106,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":253326,"name":"Zoxnate 60mg Injection","price":205,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253327,"name":"Zanlodi AT 5mg/50mg Tablet","price":36.35,"Is_discontinued":"TRUE","manufacturer_name":"Zaneka Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Atenolol (50mg)"},{"id":253328,"name":"Zoftax O 50mg Tablet DT","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253329,"name":"Zolopep 20mg Tablet","price":46.1,"Is_discontinued":"TRUE","manufacturer_name":"Indoco Remedies Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253330,"name":"Ziticolin Injection","price":176.92,"Is_discontinued":"FALSE","manufacturer_name":"Satven And Mer","type":"allopathy","pack_size_label":"vial of 4 ml Injection","short_composition1":"Citicoline (NA)","short_composition2":""},{"id":253331,"name":"Zezone-S 500mg/500mg Injection","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253332,"name":"Zoquin-CT 500mg/600mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Genetics & Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253333,"name":"Zasiklo P 100mg/325mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zircon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253334,"name":"Zika 100mg Injection","price":15,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253335,"name":"Zoxmag 10mg/1mg Tablet","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Sapinox Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlordiazepoxide (10mg) ","short_composition2":" Trifluoperazine (1mg)"},{"id":253336,"name":"Zox APT Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"APT Cure Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (500mg) ","short_composition2":" Diclofenac (50mg) "},{"id":253337,"name":"Zinsulide D Tablet","price":19.8,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (10mg) ","short_composition2":" Nimesulide (100mg)"},{"id":253338,"name":"Zidfo 1000mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Skars Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253339,"name":"Zovamide Suspension","price":29.5,"Is_discontinued":"FALSE","manufacturer_name":"Zovaitalia Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Nimesulide (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":253340,"name":"Zefedoxime 100mg Tablet DT","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253341,"name":"Zoxus 500mg/500mg Injection","price":215,"Is_discontinued":"FALSE","manufacturer_name":"Amista Labs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253342,"name":"Zicfi SL 250mg/125mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253343,"name":"Zefedoxime CV 200mg/125mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Edison Organics Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253344,"name":"Zedosim 200mg Tablet","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Sidmed Remedies","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253345,"name":"Zantof LB 100mg Tablet DT","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Ofloxacin (100mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":253346,"name":"Zantof OZ Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":253347,"name":"Zidnex 250mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253348,"name":"Zydum 1000mg Injection","price":365,"Is_discontinued":"FALSE","manufacturer_name":"Biomedica International","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253349,"name":"Zexorab D 30mg/20mg Capsule SR","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Zexen Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253350,"name":"Zysafe 100mg Tablet","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253351,"name":"Zifpod 50mg Dry Syrup","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253352,"name":"Zeenac 25mg Injection","price":7,"Is_discontinued":"FALSE","manufacturer_name":"Ultramark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (25mg)","short_composition2":""},{"id":253353,"name":"Zimix 1000mg Injection","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253354,"name":"Zazid 250mg Injection","price":68.4,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253355,"name":"Zatid T 1000mg/125mg Injection","price":365,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253356,"name":"Zonefor 1000mg Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg)","short_composition2":""},{"id":253357,"name":"Zonfac 1000mg/500mg Injection","price":255.5,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253358,"name":"Zerof 400mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (400mg)","short_composition2":""},{"id":253359,"name":"Zentrix-S 1000mg/500mg Injection","price":139.99,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253360,"name":"Zenfuro 1500mg Injection","price":294,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Cefuroxime (1500mg)","short_composition2":""},{"id":253361,"name":"Zopymed 4gm/0.5gm Injection","price":580,"Is_discontinued":"FALSE","manufacturer_name":"Medial Pharma Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Piperacillin (4gm) ","short_composition2":" Tazobactum (0.5gm)"},{"id":253362,"name":"Zatim-T 1000mg/125mg Injection","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Intecare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253363,"name":"Zeemox 250mg Capsule","price":43.7,"Is_discontinued":"FALSE","manufacturer_name":"Ce-Chem Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253364,"name":"Zopap-N 100mg/10mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253365,"name":"Zikit 500mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253366,"name":"Zatrofix CV 200mg/125mg Tablet","price":162,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253367,"name":"Zatrocef 500mg Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253368,"name":"Zakcin 250mg Injection","price":54.6,"Is_discontinued":"FALSE","manufacturer_name":"DSV Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253369,"name":"Zoftax O CV 200mg/125mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253370,"name":"Zofton OZ Oral Suspension","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":253371,"name":"Zofix CL 200mg/125mg Tablet","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253372,"name":"Zooclav 1000mg/200mg Injection","price":131,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":253373,"name":"Zestocef O 200mg/200mg Tablet","price":154,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253374,"name":"Ziblonac P Oral Suspension","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Arkle Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":253375,"name":"Zeemox 250mg Capsule","price":27.6,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253376,"name":"Zeemox 500mg Capsule","price":60,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":253377,"name":"Z Indox 100mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Dagon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Doxycycline (100mg)","short_composition2":""},{"id":253378,"name":"Zypnem SB 1000mg/500mg Injection","price":2490,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253379,"name":"Zetaxim 500mg Injection","price":33.75,"Is_discontinued":"FALSE","manufacturer_name":"Wockhardt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefotaxime (500mg)","short_composition2":""},{"id":253380,"name":"Zunocef CV 200mg/125mg Tablet","price":242,"Is_discontinued":"FALSE","manufacturer_name":"Zuno Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253381,"name":"Ziodic DS 50mg/10mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253382,"name":"Zivopreg M 1500mcg/75mg Tablet SR","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Salveo Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Methylcobalamin (1500mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":253383,"name":"Zicpalm 100 Capsule","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Rekin Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":253384,"name":"Zeecof X Syrup","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Cogniwell Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg) ","short_composition2":" Guaifenesin (50mg) "},{"id":253385,"name":"Zithrex 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Medons India","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253386,"name":"Zeox CV Dry Syrup","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Clavulanic Acid (31.25mg/5ml)"},{"id":253387,"name":"Zekonac SP 100mg/325mg/15mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Glydus Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253388,"name":"Zithfab 250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Aenor Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253389,"name":"Zxyde 200mg Tablet","price":198,"Is_discontinued":"FALSE","manufacturer_name":"Avyukt Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amisulpride (200mg)","short_composition2":""},{"id":253390,"name":"Zeopenem 500mg Injection","price":899,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (500mg)","short_composition2":""},{"id":253391,"name":"Zeocin 250 Injection","price":31.48,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253392,"name":"Zaspo 40mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253393,"name":"Zeopenem 125mg Injection","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (125mg)","short_composition2":""},{"id":253394,"name":"Zuef O 50mg Tablet DT","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253395,"name":"Zeximed 200mg Tablet DT","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Emdok Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253396,"name":"Zeximed 100mg Dry Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Emdok Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253397,"name":"Zoepan D 10mg/40mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Domperidone (10mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253398,"name":"Zithroline 500mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Shrinivas Gujarat Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253399,"name":"Zithropon Kid 100mg Tablet","price":35.4,"Is_discontinued":"FALSE","manufacturer_name":"Nippon Seiyaku Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253400,"name":"Zefira 50mg Dry Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"AGIO Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253401,"name":"Zega 50mg Suspension","price":15.43,"Is_discontinued":"FALSE","manufacturer_name":"Sun Pharmaceutical Industries Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Nimesulide (50mg)","short_composition2":""},{"id":253402,"name":"Zygter Cream","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Encore Pharmaceuticals Inc.","type":"allopathy","pack_size_label":"tube of 10 gm Cream","short_composition1":"Terbinafine (1% w/w)","short_composition2":""},{"id":253403,"name":"Zabetac 20mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Pegasus Farmaco India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253404,"name":"Zoff OZ Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Minova Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Ornidazole (125mg)"},{"id":253405,"name":"Zonet 250mg Injection","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Linnet Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253406,"name":"Zolial 0.25mg/20mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Argos Healthcare (P) Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Propranolol (20mg)"},{"id":253407,"name":"Zithro 100mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Ritz Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253408,"name":"Zocip TZ 500mg/600mg Tablet","price":67.9,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253409,"name":"Zvtho 400mg Tablet","price":55.8,"Is_discontinued":"FALSE","manufacturer_name":"Arrowin Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Theophylline (400mg)","short_composition2":""},{"id":253410,"name":"Zeeclox 125mg/125mg Tablet DT","price":29,"Is_discontinued":"FALSE","manufacturer_name":"CE-Biotec Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Amoxycillin (125mg) ","short_composition2":" Dicloxacillin (125mg)"},{"id":253411,"name":"Zocillin 4000mg/500mg Injection","price":396,"Is_discontinued":"FALSE","manufacturer_name":"Hanburys Health Care Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253412,"name":"Zcef 250mg Injection","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Smilax Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253413,"name":"Zofcin TZ 200mg/500mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Banson Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (500mg)"},{"id":253414,"name":"Zentrom 500mg Injection","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Artesunate (500mg)","short_composition2":""},{"id":253415,"name":"Zistin 24mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (24mg)","short_composition2":""},{"id":253416,"name":"Zumik 100mg Injection","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253417,"name":"Zontuf SB 1000mg/500mg Injection","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Kendall Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253418,"name":"Zgcip 250mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (250mg)","short_composition2":""},{"id":253419,"name":"Zikti Kid 100mg Tablet","price":74,"Is_discontinued":"FALSE","manufacturer_name":"Pax Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253420,"name":"Zaxef 200mg Tablet","price":360,"Is_discontinued":"FALSE","manufacturer_name":"Zephyr Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253421,"name":"Zolpiapt 10mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"APT Cure Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":253422,"name":"Zygogest 200mg Capsule","price":200,"Is_discontinued":"FALSE","manufacturer_name":"Halcyon Drugs","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Progesterone (200mg)","short_composition2":""},{"id":253423,"name":"Zoxigard Syrup","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253424,"name":"Zamoxy 250mg Tablet DT","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253425,"name":"Zardcef-S 750 Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":253426,"name":"Zomox CL 1000mg/200mg Injection","price":158.65,"Is_discontinued":"FALSE","manufacturer_name":"Zota Health care Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":253427,"name":"Zoceclo T 100mg/4mg Tablet","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253428,"name":"Zicfi 1000mg Injection","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253429,"name":"Zicfi TZ 1000mg/125mg Injection","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253430,"name":"Zimix SL 1000mg/500mg Injection","price":112,"Is_discontinued":"FALSE","manufacturer_name":"Biocorp Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253431,"name":"Zovimax CV Dry Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Kritikos Care","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253432,"name":"Zovimax CV 250mg/125mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Kritikos Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253433,"name":"Zhenrab 20 Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zhen Heal Craft Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253434,"name":"Zubitrex TM 1000mg/125mg Injection","price":118,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253435,"name":"Zubithro 250mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253436,"name":"Zeof 0.3% Eye Drop","price":20,"Is_discontinued":"TRUE","manufacturer_name":"Zuventus Healthcare Ltd","type":"allopathy","pack_size_label":"bottle of 5 ml Eye Drop","short_composition1":"Ofloxacin (0.3% w/v)","short_composition2":""},{"id":253437,"name":"Zidcin 250mg Tablet","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253438,"name":"Zidfate O Syrup","price":108,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Sucralfate (1000mg) ","short_composition2":" Oxetacaine (20mg)"},{"id":253439,"name":"Zexime OZ 200mg/500mg Tablet","price":173,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253440,"name":"Zidrab 20mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253441,"name":"Ziplonate L 80mg/480mg Tablet","price":141,"Is_discontinued":"FALSE","manufacturer_name":"Milard Life Sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Artemether (80mg) ","short_composition2":" Lumefantrine (480mg)"},{"id":253442,"name":"Zicef 1000mg Injection","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253443,"name":"Zelmont Dry Syrup","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Levocetirizine (2.5mg) ","short_composition2":" Montelukast (4mg)"},{"id":253444,"name":"Zelpod CV Dry Syrup","price":139,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg) ","short_composition2":" Clavulanic Acid (62.5mg)"},{"id":253445,"name":"Zifpidox 50mg Dry Syrup","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253446,"name":"Zynoff 10mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Emocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flunarizine (10mg)","short_composition2":""},{"id":253447,"name":"Zomcet 2mg Injection","price":12.8,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":253448,"name":"Zioxim 100mg Tablet DT","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253449,"name":"Ziofen MR 100mg/325mg/250mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253450,"name":"Zegclav 1000mg/200mg Injection","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":253451,"name":"Zegclav Dry Syrup","price":54.1,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":253452,"name":"Zixum AZ 200mg/250mg Tablet","price":158.8,"Is_discontinued":"FALSE","manufacturer_name":"Roseate Medicare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":253453,"name":"Zitoket 200mg Tablet","price":155,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ketoconazole (200mg)","short_composition2":""},{"id":253454,"name":"Zomcid 20mg Capsule","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":253455,"name":"Zumcet 5mg Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg)","short_composition2":""},{"id":253456,"name":"Zidobect TZ 1000mg/125mg Injection","price":344.7,"Is_discontinued":"FALSE","manufacturer_name":"In Med Therapeutics","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253457,"name":"Zerther 150mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Tanzer Lifecare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":253458,"name":"Zpiptezo 4000mg/500mg Injection","price":465,"Is_discontinued":"FALSE","manufacturer_name":"Uko Pharmatech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253459,"name":"Zogest 500mg Injection","price":192,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Hydroxyprogesterone (500mg)","short_composition2":""},{"id":253460,"name":"Zoxlin CV LB 500mg/125mg Tablet","price":255,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg) "},{"id":253461,"name":"Zumpan 40mg Injection","price":45.24,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253462,"name":"Zumcof BM Syrup","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (2mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253463,"name":"Zonfac 500mg/500mg Injection","price":165.5,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253464,"name":"Zoec 5mg Tablet","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg)","short_composition2":""},{"id":253465,"name":"Zilcet DP 5mg/500mg/5mg Tablet","price":37,"Is_discontinued":"FALSE","manufacturer_name":"Blismed Pharmaceuticals Pvt. Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (5mg) ","short_composition2":" Paracetamol (500mg) "},{"id":253466,"name":"Zoeflav 200mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flavoxate (200mg)","short_composition2":""},{"id":253467,"name":"Zerinom 125mg Injection","price":284,"Is_discontinued":"FALSE","manufacturer_name":"Agex Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (125mg)","short_composition2":""},{"id":253468,"name":"Zemith 2500 Injection","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Anista Healthcare","type":"allopathy","pack_size_label":"box of 2 ml Injection","short_composition1":"Methylcobalamin (2500mcg)","short_composition2":""},{"id":253469,"name":"Zithnovo 250 Tablet","price":71.09,"Is_discontinued":"FALSE","manufacturer_name":"NovoLilly Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253470,"name":"Zerokuff-EX Syrup","price":83.9,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253471,"name":"Zidoxe 100 Dry Syrup","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253472,"name":"Zoxobal 2500mcg Injection","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (2500mcg)","short_composition2":""},{"id":253473,"name":"Zenmero 1000mg Injection","price":1900,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253474,"name":"Zoepan 40mg Tablet","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253475,"name":"Zoxlon 25mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253476,"name":"Zidshot TZ 1000mg/125mg Injection","price":358.4,"Is_discontinued":"FALSE","manufacturer_name":"Werke Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253477,"name":"Zoxotrox S 1000mg/500mg Injection","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253478,"name":"Zoxlid 600mg Tablet","price":332,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":253479,"name":"Zithrocas 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Medicasa Pharmaceutical","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253480,"name":"Zitoric T 60mg/4mg Tablet","price":196,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (60mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253481,"name":"Zoepan L 75mg/40mg Capsule SR","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253482,"name":"Zatid 1000mg Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253483,"name":"Zithidel 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Delroy Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253484,"name":"Zoftaron 2mg Injection","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":253485,"name":"Zanfoate Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Miracalus Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253486,"name":"ZYTHAM 200MG TABLET","price":9.42,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Healthcare Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ethambutol (200mg)","short_composition2":""},{"id":253487,"name":"Zami 250mg Injection","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Stellar Bio-Labs","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253488,"name":"Zedodec 25mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253489,"name":"Zofixi-LB Dry Suspension","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg) ","short_composition2":" Lactobacillus (30Million cells)"},{"id":253490,"name":"Zopap-D 50mg/10mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253491,"name":"Zonet S 500mg/250mg Injection","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Linnet Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":253492,"name":"Zulfy-O Plus Tablet","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ornidazole (500mg) ","short_composition2":" Ofloxacin (200mg) "},{"id":253493,"name":"Zutran 500mg Injection","price":69.7,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Tranexamic Acid (500mg/1ml)","short_composition2":""},{"id":253494,"name":"Zoranate 60mg Injection","price":175,"Is_discontinued":"FALSE","manufacturer_name":"Ventus Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253495,"name":"Zolarest 0.25mg Tablet","price":9.9,"Is_discontinued":"FALSE","manufacturer_name":"Acto Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":253496,"name":"Zap Suspension","price":17.75,"Is_discontinued":"FALSE","manufacturer_name":"Norwest Pharmaceuticals Inc","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Nimesulide (NA)","short_composition2":""},{"id":253497,"name":"Zebep 20mg Tablet","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Jayson Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253498,"name":"Zulvas 20mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (20mg)","short_composition2":""},{"id":253499,"name":"Zefim-CV Suspension","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Medihealth Lifesciences Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253500,"name":"Zardcef-S 375 Injection","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253501,"name":"Zodec 25mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253502,"name":"Zamoxyl Dry Syrup","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Shalina Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Dry Syrup","short_composition1":"Amoxycillin (500mg)","short_composition2":""},{"id":253503,"name":"Zidman 1000mg Injection","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Shalman Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253504,"name":"Zwitermox Kid 125mg Tablet","price":16.5,"Is_discontinued":"FALSE","manufacturer_name":"Brussels Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (125mg)","short_composition2":""},{"id":253505,"name":"Zicfix LB 200mg Tablet","price":145,"Is_discontinued":"FALSE","manufacturer_name":"Stensa Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (2.5Billion Spores)"},{"id":253506,"name":"Zeloxa 200mg Infusion","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253507,"name":"Zatsa 250mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253508,"name":"Zgflox 100mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (100mg)","short_composition2":""},{"id":253509,"name":"Zegrid L 75mg/20mg Capsule","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253510,"name":"Zefinac SP 100mg/325mg/10mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253511,"name":"Zeflon OZ 200mg/500mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Egzeon Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253512,"name":"Zess 500mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Trikut Humanities Bio Science Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253513,"name":"Zione DS T 80mg/12.5mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Unichem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Telmisartan (80mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":253514,"name":"Zubitrex TM 500mg/62.25mg Injection","price":98,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Tazobactum (62.25mg)"},{"id":253515,"name":"Zidden 250mg Injection","price":107,"Is_discontinued":"FALSE","manufacturer_name":"BMW Pharmaco India Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253516,"name":"Zeltum 750mg Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (750mg)","short_composition2":""},{"id":253517,"name":"Zanpick D 30mg/40mg Capsule SR","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253518,"name":"Zidif T 1000mg/125mg Injection","price":322.4,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253519,"name":"Zoyamol 8mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Wellmark Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg)","short_composition2":""},{"id":253520,"name":"Zavipara SN 100mg/325mg/10mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Spranza Vita Pharmaceutical LLP","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253521,"name":"Zitomox-DX Capsule","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Cloxacillin (250mg) "},{"id":253522,"name":"Ziditroop-TZ Injection","price":298,"Is_discontinued":"FALSE","manufacturer_name":"Osiante Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253523,"name":"Zotopod DT 50 Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Accilex Nutricorp","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253524,"name":"Zatrofix AZ 200mg/250mg Tablet","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg)"},{"id":253525,"name":"Zitafer 100mg Injection","price":230,"Is_discontinued":"FALSE","manufacturer_name":"Nilrise Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Iron Sucrose (100mg)","short_composition2":""},{"id":253526,"name":"Zelpod 100mg Tablet DT","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253527,"name":"Zifcas 50mg Dry Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253528,"name":"Zifcas AZ 200mg/250mg Tablet","price":241,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":253529,"name":"Zenikacin 100mg Injection","price":17.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253530,"name":"Zadudol 100mg Tablet SR","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":253531,"name":"Zioper S 1000mg/500mg Injection","price":325,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253532,"name":"Zhylo 50mg Dry Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Remandish Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253533,"name":"Zynoff 5mg Tablet","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Emocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Flunarizine (5mg)","short_composition2":""},{"id":253534,"name":"Zeoceft 1000 Injection","price":60.2,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253535,"name":"Zencifer XT 20mg Injection","price":232,"Is_discontinued":"FALSE","manufacturer_name":"Bioxtreme Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Iron Sucrose (20mg)","short_composition2":""},{"id":253536,"name":"Zyno 500mg/500mg Injection","price":239,"Is_discontinued":"FALSE","manufacturer_name":"Sarvit Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253537,"name":"Zoezone TZ 1000mg/125mg Injection","price":212.6,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253538,"name":"Ziwal 250mg Tablet","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Wallace Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253539,"name":"Zithway 250mg Tablet","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Waylone Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253540,"name":"Zolpidox 2 Tablet DT","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Doxis Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Clonazepam (2mg)","short_composition2":""},{"id":253541,"name":"Zapcid Mps Oral Suspension Saunf Sugar Free","price":69,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 170 ml Oral Suspension","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg)"},{"id":253542,"name":"Zixime AZ Dry Syrup","price":109,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml) ","short_composition2":" Azithromycin (100mg/5ml)"},{"id":253543,"name":"Zonvin 500mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253544,"name":"Zaclev M 5mg/10mg Tablet","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Spectra Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levocetirizine (5mg) ","short_composition2":" Montelukast (10mg)"},{"id":253545,"name":"Zidnac T 100mg/4mg Tablet","price":164,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253546,"name":"Zidcort 6mg Syrup","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253547,"name":"Zelpin IT 40mg/150mg Capsule SR","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Pantoprazole (40mg) ","short_composition2":" Itopride (150mg)"},{"id":253548,"name":"Zegdol 100mg Injection","price":23,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":253549,"name":"Zolberg 100mg Tablet","price":275,"Is_discontinued":"FALSE","manufacturer_name":"Eos Pharmaceuticals India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":253550,"name":"Zolib M 3mg/1000mg Tablet","price":180,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 15 tablets","short_composition1":"Glimepiride (3mg) ","short_composition2":" Metformin (1000mg)"},{"id":253551,"name":"Zilpod 200mg Tablet","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Estro Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253552,"name":"Zivex 10mg Tablet","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Euro Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydroxyzine (10mg)","short_composition2":""},{"id":253553,"name":"Zepodoz 200mg Tablet DT","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Z Plus Remedies","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253554,"name":"Zithronour 200 Oral Suspension","price":114.55,"Is_discontinued":"FALSE","manufacturer_name":"Nourier Lab","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":253555,"name":"Zaspo 40mg Injection","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Aspo Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253556,"name":"Zoxicef 50mg Dry Syrup","price":37.3,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253557,"name":"Zomy LB 500mg Tablet","price":61,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg) ","short_composition2":" Lactic acid bacillus (60Million spores)"},{"id":253558,"name":"Zeconac P Oral Suspension","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (125mg)"},{"id":253559,"name":"Zeothro 500mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Qgensun Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253560,"name":"Zunix AZ LB 200mg/250mg Tablet","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Azithromycin (250mg) "},{"id":253561,"name":"Zioazi 500mg Tablet","price":67.5,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253562,"name":"Zoxobal 1500mcg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":253563,"name":"Zgabaz 300mg/500mcg Tablet","price":102.6,"Is_discontinued":"FALSE","manufacturer_name":"Zoticus Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (500mcg)"},{"id":253564,"name":"Zorglim 2mg Tablet","price":66.66,"Is_discontinued":"FALSE","manufacturer_name":"Instanz Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Glimepiride (2mg)","short_composition2":""},{"id":253565,"name":"Zanib 100 mg/500 mg Tablet","price":30.6,"Is_discontinued":"FALSE","manufacturer_name":"Ceras Pharmaceutical","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Paracetamol (500mg)"},{"id":253566,"name":"Zyquin 400mg Infusion","price":123.1,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"bottle of 200 ml Infusion","short_composition1":"Gatifloxacin (400mg)","short_composition2":""},{"id":253567,"name":"Zyrifa Capsule","price":44.57,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Isoniazid (NA) ","short_composition2":" Rifampicin (NA) "},{"id":253568,"name":"Zeroworm 200mg Suspension","price":21.25,"Is_discontinued":"FALSE","manufacturer_name":"Talent Healthcare","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253569,"name":"Zallpam 1mg Tablet","price":124.7,"Is_discontinued":"FALSE","manufacturer_name":"A. Menarini India Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (1mg)","short_composition2":""},{"id":253570,"name":"Zenebend 200mg Suspension","price":16.37,"Is_discontinued":"FALSE","manufacturer_name":"Alkem Laboratories Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253571,"name":"Zuvas E 10mg/10mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Atorvastatin (10mg) ","short_composition2":" Ezetimibe (10mg)"},{"id":253572,"name":"Zopymed 2gm/0.25gm Injection","price":334,"Is_discontinued":"FALSE","manufacturer_name":"Medial Pharma Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Piperacillin (2gm) ","short_composition2":" Tazobactum (0.25gm)"},{"id":253573,"name":"Zoxigard 200mg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253574,"name":"Zedrab 75mg/20mg Capsule SR","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Zepsilon Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Levosulpiride (75mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253575,"name":"Zutex 250mg Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253576,"name":"Zabimox 250mg Capsule","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253577,"name":"Zabimox-DX 250mg/250mg Capsule","price":59.7,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":253578,"name":"Zifop 250mg Injection","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (250mg)","short_composition2":""},{"id":253579,"name":"Zardcef 1gm Injection","price":56.6,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1gm)","short_composition2":""},{"id":253580,"name":"Zondec 50 Injection","price":145,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"ampoule of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253581,"name":"Zoceclo R 200mg/20mg Capsule","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Aceclofenac (200mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253582,"name":"Zorcob 1000mcg Injection","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Methylcobalamin (1000mcg)","short_composition2":""},{"id":253583,"name":"Ziyof 200mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253584,"name":"Zgthro 500mg Tablet","price":195,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253585,"name":"Zerly Oral Solution","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Radisun Lifesciences","type":"allopathy","pack_size_label":"bottle of 100 ml Oral Solution","short_composition1":"Lactulose (10gm)","short_composition2":""},{"id":253586,"name":"Zoxaid Tablet","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Medihands Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (500mg) ","short_composition2":" Diclofenac (50mg) "},{"id":253587,"name":"Zexime 100mg Tablet","price":142,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253588,"name":"Zepcid 20mg Capsule","price":76,"Is_discontinued":"FALSE","manufacturer_name":"Banson Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":253589,"name":"Zysafe 50mg Tablet DT","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253590,"name":"Zivudin 300mg Tablet","price":430,"Is_discontinued":"FALSE","manufacturer_name":"Synmedic Laboratories","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":253591,"name":"Zencylin CV Dry Syrup","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (400mg) ","short_composition2":" Clavulanic Acid (57mg)"},{"id":253592,"name":"Zylocas 300mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Casca Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Allopurinol (300mg)","short_composition2":""},{"id":253593,"name":"Zypcid Syrup","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 170 ml Syrup","short_composition1":"Magaldrate (400mg) ","short_composition2":" Simethicone (20mg)"},{"id":253594,"name":"Zifpod 100mg Tablet DT","price":87,"Is_discontinued":"TRUE","manufacturer_name":"Astraea Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253595,"name":"Zatroflox 200mg Tablet","price":56.8,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253596,"name":"Zatrocob Plus Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylcobalamin (1000mcg) ","short_composition2":" Vitamin B6 (Pyridoxine) (100mg) "},{"id":253597,"name":"Zacpar 50mg/500mg Tablet","price":31,"Is_discontinued":"FALSE","manufacturer_name":"Multilax Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":253598,"name":"Zymik 100mg Injection","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253599,"name":"Zubitrex S 1000mg/500mg Injection","price":103,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253600,"name":"Zakrab D 30mg/20mg Capsule SR","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Luziac Life Sciences","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253601,"name":"Zolver 200mg Oral Suspension","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Sunwin Healthcare","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253602,"name":"Zitholid 250 Tablet","price":110.99,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253603,"name":"Zidy 1000mg Injection","price":311,"Is_discontinued":"FALSE","manufacturer_name":"Zencure Organics","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253604,"name":"Zhquine 200mg Tablet","price":56.3,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydroxychloroquine (200mg)","short_composition2":""},{"id":253605,"name":"Zylobid PC Tablet","price":64.5,"Is_discontinued":"FALSE","manufacturer_name":"Mandevis Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Caffeine (25mg) ","short_composition2":" Cetirizine (5mg) "},{"id":253606,"name":"Zithobac 250 Tablet","price":59.5,"Is_discontinued":"FALSE","manufacturer_name":"Fealth Life Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253607,"name":"Zolyn 600mg Tablet","price":376.45,"Is_discontinued":"FALSE","manufacturer_name":"Madlyn Biotech","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Linezolid (600mg)","short_composition2":""},{"id":253608,"name":"Zedomox CV 500mg/125mg Tablet","price":159.9,"Is_discontinued":"FALSE","manufacturer_name":"Kaymed Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253609,"name":"Zithtron 250mg Tablet","price":59.45,"Is_discontinued":"FALSE","manufacturer_name":"Medimind Drugs and Chemicals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253610,"name":"Zithcin 250mg Tablet","price":68.65,"Is_discontinued":"FALSE","manufacturer_name":"Medimind Drugs and Chemicals","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253611,"name":"Zedpan D 30mg/40mg Capsule SR","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Alentra Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Pantoprazole (40mg)"},{"id":253612,"name":"Zaduclav 1.2 Injection","price":134,"Is_discontinued":"FALSE","manufacturer_name":"Panm Labs India","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":253613,"name":"Zixime OZ 200mg/500mg Tablet","price":172,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253614,"name":"Zicort 6mg Tablet","price":106,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253615,"name":"Zixime OZ Dry Syrup","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Ofloxacin (50mg/5ml) ","short_composition2":" Ornidazole (125mg/5ml)"},{"id":253616,"name":"Zeoceft 250 Injection","price":27.56,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253617,"name":"Zeozone 500mg/500mg Injection","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253618,"name":"Zitflox 500mg Tablet","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Aenor Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":253619,"name":"Zole D 30mg/20mg Capsule SR","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Raffles Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253620,"name":"Zeximed 100mg Tablet DT","price":92,"Is_discontinued":"FALSE","manufacturer_name":"Emdok Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253621,"name":"Zanopine 20mg Tablet MD","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (20mg)","short_composition2":""},{"id":253622,"name":"Zofdan 2mg Injection","price":12.8,"Is_discontinued":"FALSE","manufacturer_name":"Carenix Bio Pharma Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":253623,"name":"Zemonec-P Oral Suspension","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Hummed Healthcare","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (50mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml)"},{"id":253624,"name":"Zescof-BR Syrup","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Guaifenesin (50mg/5ml) ","short_composition2":" Terbutaline (1.25mg/5ml) "},{"id":253625,"name":"Zticzol 100mg Capsule","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Taksa LIfe Sciences","type":"allopathy","pack_size_label":"strip of 4 capsules","short_composition1":"Itraconazole (100mg)","short_composition2":""},{"id":253626,"name":"Zeropres P 0.25mg/20mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Godase Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg) ","short_composition2":" Propranolol (20mg)"},{"id":253627,"name":"Zoxotrox 1000mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253628,"name":"Ziamin 1500mcg Injection","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Methylcobalamin (1500mcg)","short_composition2":""},{"id":253629,"name":"Zoeron 200mg Soft Gelatin Capsule","price":272,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 soft gelatin capsules","short_composition1":"Progesterone (200mg)","short_composition2":""},{"id":253630,"name":"Zoxotrox TZ 250mg/31.25mg Injection","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":253631,"name":"Zovifast S 50mg/10mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253632,"name":"Zopromet 50mg Tablet XL","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Libramed Pharmaceuticals Private Ltd","type":"allopathy","pack_size_label":"strip of 15 tablet xl","short_composition1":"Metoprolol Succinate (50mg)","short_composition2":""},{"id":253633,"name":"Zozidime 1000mg Injection","price":290,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253634,"name":"Zogcef S 1000mg/500mg Injection","price":297,"Is_discontinued":"FALSE","manufacturer_name":"Swakam Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253635,"name":"Zedem 10mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Ryon Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Zolpidem (10mg)","short_composition2":""},{"id":253636,"name":"Zacnix 50 Dry Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253637,"name":"Zesfer 100mg Injection","price":248,"Is_discontinued":"FALSE","manufacturer_name":"Zestwin Lifesciences","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Iron Sucrose (100mg)","short_composition2":""},{"id":253638,"name":"Zentoril-AX Expectorant","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Bioclix Remedies","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253639,"name":"Z Cef S 1000mg/500mg Injection","price":274,"Is_discontinued":"FALSE","manufacturer_name":"Uniword Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253640,"name":"Zunix 100mg Tablet DT","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253641,"name":"Zithroline 250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Shrinivas Gujarat Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253642,"name":"Zeekacin 100mg Injection","price":24,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253643,"name":"Zosic 150mg Tablet","price":16,"Is_discontinued":"FALSE","manufacturer_name":"TNT Lifesciences","type":"allopathy","pack_size_label":"strip of 1 Tablet","short_composition1":"Fluconazole (150mg)","short_composition2":""},{"id":253644,"name":"Zimspore 100mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Merril Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253645,"name":"Zafidol T 100mg/4mg Tablet","price":209,"Is_discontinued":"FALSE","manufacturer_name":"Texas Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253646,"name":"Zitmik 500mg Injection","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Biomax Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":253647,"name":"Zoxil 125mg Tablet","price":11,"Is_discontinued":"FALSE","manufacturer_name":"Medley Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefadroxil (125mg)","short_composition2":""},{"id":253648,"name":"Zgcip 500mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg)","short_composition2":""},{"id":253649,"name":"Zglivo 250mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (250mg)","short_composition2":""},{"id":253650,"name":"Zglivo Tablet 500mg","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (500mg)","short_composition2":""},{"id":253651,"name":"Zablox OZ 200mg/500mg Tablet","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Ecure Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253652,"name":"Zuvactum 4gm/0.5gm Injection","price":325,"Is_discontinued":"FALSE","manufacturer_name":"LeeMed Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Piperacillin (4gm) ","short_composition2":" Tazobactum (0.5gm)"},{"id":253653,"name":"Ziodic 25mg Injection","price":12,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Genetics & Pharma","type":"allopathy","pack_size_label":"vial of 3 ml Injection","short_composition1":"Diclofenac (25mg/ml)","short_composition2":""},{"id":253654,"name":"Zolapin 2.5mg Tablet MD","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Konark Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet md","short_composition1":"Olanzapine (2.5mg)","short_composition2":""},{"id":253655,"name":"Zoltweet 0.5mg Tablet SR","price":26.6,"Is_discontinued":"FALSE","manufacturer_name":"Tweet India Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Alprazolam (0.5mg)","short_composition2":""},{"id":253656,"name":"Zedec 25mg Injection","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zentis Drugs Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253657,"name":"Zerox 250mg Injection","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Pharmacon Gignos","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253658,"name":"Zorceft 1000mg Injection","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253659,"name":"Zobose 0.2mg Tablet","price":66.9,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Voglibose (0.2mg)","short_composition2":""},{"id":253660,"name":"Zomesar H 12.5mg/20mg Tablet","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydrochlorothiazide (12.5mg) ","short_composition2":" Olmesartan Medoxomil (20mg)"},{"id":253661,"name":"Zifoclav Dry Syrup","price":94,"Is_discontinued":"FALSE","manufacturer_name":"ICI Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253662,"name":"Zantof OZ 200mg/500mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253663,"name":"Zoflex 200mg Tablet SR","price":38.5,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":253664,"name":"Zoxigard 100mg Tablet DT","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Acekinetics Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253665,"name":"Zidnex 1000mg Injection","price":158,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253666,"name":"Zicfi SL 1000mg/500mg Injection","price":122,"Is_discontinued":"FALSE","manufacturer_name":"Biotic Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253667,"name":"Zabee IT 20mg/150mg Tablet","price":150,"Is_discontinued":"FALSE","manufacturer_name":"Medok Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg) ","short_composition2":" Itopride (150mg)"},{"id":253668,"name":"Zapzole 200mg Oral Suspension","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Sonixa Lifecare","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg/5ml)","short_composition2":""},{"id":253669,"name":"Zoxaquin OZ 200mg/500mg Tablet","price":89.8,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253670,"name":"Zopef 500mg/500mg Injection","price":215,"Is_discontinued":"FALSE","manufacturer_name":"Novique Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253671,"name":"Zatid 125mg Injection","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (125mg)","short_composition2":""},{"id":253672,"name":"Zatid 250mg Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Grapple Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253673,"name":"Zumzone S 1000mg/500mg Injection","price":190,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253674,"name":"Zoxlin CV Oral Suspension","price":55.1,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253675,"name":"Zumhis 16mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zumax Biocare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Betahistine (16mg)","short_composition2":""},{"id":253676,"name":"Zitomox CV 1000mg/200mg Injection","price":119.6,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (1000mg) ","short_composition2":" Clavulanic Acid (200mg)"},{"id":253677,"name":"Zitocuf-BR Syrup","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Bromhexine (4mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253678,"name":"Zeloxa-OZ 200mg/500mg Infusion","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Infusion","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253679,"name":"Zikit 250mg Injection","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253680,"name":"Zatrofix 50mg Tablet DT","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253681,"name":"Zofmox 250mg Tablet DT","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"strip of 15 tablet dt","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253682,"name":"Zoftax 500mg Injection","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefotaxime (500mg)","short_composition2":""},{"id":253683,"name":"Zither-AT Injection","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Age Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253684,"name":"Zatpin 4000mg/500mg Injection","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Afive Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253685,"name":"Ziokof A Syrup","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 60 ml Syrup","short_composition1":"Ambroxol (15mg/5ml) ","short_composition2":" Guaifenesin (50mg/5ml) "},{"id":253686,"name":"Zubik 1000mg Injection","price":52.5,"Is_discontinued":"FALSE","manufacturer_name":"Stenhill Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253687,"name":"Zifpidox CV Dry Syrup","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253688,"name":"Zifpidox 100mg Tablet DT","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253689,"name":"Ziprotil OF 200mg/200mg Tablet","price":220,"Is_discontinued":"FALSE","manufacturer_name":"Calen Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253690,"name":"Zacnix 100mg Tablet DT","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253691,"name":"Zithscot 200mg Oral Suspension","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Scotwin Healthcare","type":"allopathy","pack_size_label":"bottle of 15 ml Oral Suspension","short_composition1":"Azithromycin (200mg)","short_composition2":""},{"id":253692,"name":"Zelset 2mg Injection","price":18,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":253693,"name":"Zifcas CV Dry Syrup","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253694,"name":"Zegcef S 500mg/250mg Injection","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":253695,"name":"Zivahale FB Forte 12mcg/200mcg Capsule","price":310,"Is_discontinued":"FALSE","manufacturer_name":"Zivago Pharma Private Limited","type":"allopathy","pack_size_label":"bottle of 30 capsules","short_composition1":"Formoterol (12mcg) ","short_composition2":" Budesonide (200mcg)"},{"id":253696,"name":"Zelcef 1000mg Injection","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253697,"name":"Zacnix CV 200mg/125mg Tablet","price":170,"Is_discontinued":"FALSE","manufacturer_name":"Biorika Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253698,"name":"Zoxepar 250mg Oral Suspension","price":40,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Paracetamol (250mg)","short_composition2":""},{"id":253699,"name":"Zidshot 1000mg Injection","price":228,"Is_discontinued":"FALSE","manufacturer_name":"Werke Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253700,"name":"Zovifast 500mg Injection","price":541,"Is_discontinued":"FALSE","manufacturer_name":"Burgeon Health Series Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Acyclovir (500mg)","short_composition2":""},{"id":253701,"name":"Zitoric 120mg Tablet","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Etoricoxib (120mg)","short_composition2":""},{"id":253702,"name":"Zidtrax 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253703,"name":"Zynzc 100mg Tablet","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Zydus Cadila","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg)","short_composition2":""},{"id":253704,"name":"Zexia 100mg Tablet DT","price":130,"Is_discontinued":"FALSE","manufacturer_name":"Sanbury Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253705,"name":"Zicerot 500mg/500mg Injection","price":2290,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Imipenem (500mg) ","short_composition2":" Cilastatin (500mg)"},{"id":253706,"name":"Zomesar 20mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zoic Lifesciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (20mg)","short_composition2":""},{"id":253707,"name":"Zgflox 50mg Suspension","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg)","short_composition2":""},{"id":253708,"name":"Zgflox 200mg Tablet","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253709,"name":"Zemika 250mg Injection","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253710,"name":"Zicerot 250mg/250mg Injection","price":1254,"Is_discontinued":"FALSE","manufacturer_name":"Taj Pharma India Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Imipenem (250mg) ","short_composition2":" Cilastatin (250mg)"},{"id":253711,"name":"Zulmectin 6mg/400mg Tablet","price":230,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ivermectin (6mg) ","short_composition2":" Albendazole (400mg)"},{"id":253712,"name":"Zoytri 40mg Injection","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zodley Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Suspension for Injection","short_composition1":"Triamcinolone (40mg/1ml)","short_composition2":""},{"id":253713,"name":"Zacur 750mg Injection","price":1790,"Is_discontinued":"FALSE","manufacturer_name":"Aamorb Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (750mg)","short_composition2":""},{"id":253714,"name":"Zenocef-S 250mg/125mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253715,"name":"Zoloxy-P 8mg/325mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Lornoxicam (8mg) ","short_composition2":" Paracetamol (325mg)"},{"id":253716,"name":"Zutex 500mg Injection","price":45.8,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253717,"name":"Zofixi-OF Dry Syrup","price":88,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Ofloxacin (50mg)"},{"id":253718,"name":"Ziodic-K 50mg/500mg Tablet","price":19.95,"Is_discontinued":"FALSE","manufacturer_name":"Biocin Genetics & Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg)"},{"id":253719,"name":"Zencef 250mg Injection","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Helax Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253720,"name":"Zukansi Syrup","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Sipra Remedies","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Chlorpheniramine Maleate (4mg) ","short_composition2":" Dextromethorphan Hydrobromide (10mg) "},{"id":253721,"name":"Ztron 2mg Syrup","price":34.27,"Is_discontinued":"FALSE","manufacturer_name":"Generous Mediwaves Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg/5ml)","short_composition2":""},{"id":253722,"name":"Z Cip 250mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Ziyon Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (250mg)","short_composition2":""},{"id":253723,"name":"Zidnex 500mg Injection","price":100,"Is_discontinued":"FALSE","manufacturer_name":"Nexus India","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (500mg)","short_composition2":""},{"id":253724,"name":"Zipken 100mg Tablet DT","price":86,"Is_discontinued":"FALSE","manufacturer_name":"Duken Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253725,"name":"Zypset 2mg Syrup","price":46,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Ondansetron (2mg/5ml)","short_composition2":""},{"id":253726,"name":"Zypclav DS Dry Syrup","price":119,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (400mg/5ml) ","short_composition2":" Clavulanic Acid (57mg/5ml)"},{"id":253727,"name":"Zerovactum 4000mg/500mg Injection","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Zerdia Healthcare Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253728,"name":"Zolvacin OZ 200mg/500mg Tablet","price":83,"Is_discontinued":"FALSE","manufacturer_name":"Leenate Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253729,"name":"Zeenacef 100mg Tablet","price":119.7,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253730,"name":"Zimnex 100mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Ultratech Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253731,"name":"Zeenacef LV 200mg/250mg Tablet","price":144,"Is_discontinued":"FALSE","manufacturer_name":"Positive Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Levofloxacin (250mg)"},{"id":253732,"name":"Ziprolet CT 500mg/600mg Tablet","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Zenon Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ciprofloxacin (500mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253733,"name":"Zidovex 300mg Capsule","price":259.56,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Zidovudine (300mg)","short_composition2":""},{"id":253734,"name":"Zorelax 0.25mg Tablet","price":14,"Is_discontinued":"FALSE","manufacturer_name":"Iatros Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Alprazolam (0.25mg)","short_composition2":""},{"id":253735,"name":"Z Clox 250 mg Injection","price":10.43,"Is_discontinued":"FALSE","manufacturer_name":"Veritaz Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ampicillin (250mg) ","short_composition2":" Cloxacillin (250mg)"},{"id":253736,"name":"Zepvog 500mg/0.3mg Tablet SR","price":79,"Is_discontinued":"FALSE","manufacturer_name":"Merlion Lifescience Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Metformin (500mg) ","short_composition2":" Voglibose (0.3mg)"},{"id":253737,"name":"Zonbact 250mg/125mg Injection","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Eugenics Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253738,"name":"Zorceft 250mg Injection","price":24.6,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253739,"name":"Zypzone 1000mg Injection","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253740,"name":"Zorceft S 1000mg/500mg Injection","price":111,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253741,"name":"Zorceft T 1000mg/125mg Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253742,"name":"Zoneros 500mg Injection","price":43.92,"Is_discontinued":"FALSE","manufacturer_name":"Crossford Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253743,"name":"Zubicef 100mg Tablet DT","price":65,"Is_discontinued":"FALSE","manufacturer_name":"PRM Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253744,"name":"Zurest D 30mg/20mg Capsule SR","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Zurica International Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253745,"name":"Zatropod 100mg Tablet DT","price":110,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253746,"name":"Zit MP 16mg Tablet","price":125,"Is_discontinued":"FALSE","manufacturer_name":"Zither Pharmaceutical Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Methylprednisolone (16mg)","short_composition2":""},{"id":253747,"name":"Ziclofenac SP 50mg/325mg/15mg Tablet","price":67.5,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253748,"name":"Zestocef 200mg Tablet DT","price":117,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253749,"name":"Zfflox 200mg Tablet","price":53,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253750,"name":"Zidks 1000mg Injection","price":280,"Is_discontinued":"FALSE","manufacturer_name":"Aadi Health Care","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253751,"name":"Zidfen 75mg Injection","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":253752,"name":"Zidfen SP 50mg/500mg/15mg Tablet","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (500mg) "},{"id":253753,"name":"Zidcan 50mg Injection","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253754,"name":"Zapp S 500mg/250mg Injection","price":77,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":253755,"name":"Zecilex 250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zenotis Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefalexin (250mg)","short_composition2":""},{"id":253756,"name":"Zithpe 250mg Tablet","price":63,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253757,"name":"Zofmox-CV Dry Syrup","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Aeston Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":253758,"name":"Zelpod 100mg Dry Syrup","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253759,"name":"Ziotric S 250mg/125mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253760,"name":"Zefserch 250mg Tablet","price":249,"Is_discontinued":"FALSE","manufacturer_name":"Medilewis Biotech","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (250mg)","short_composition2":""},{"id":253761,"name":"Zeonac MR 100mg/325mg/250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253762,"name":"Zefxone 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Gurgrace Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253763,"name":"Zefxone 250mg Injection","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Gurgrace Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253764,"name":"Zeopenem 250mg Injection","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (250mg)","short_composition2":""},{"id":253765,"name":"Zodesic TH 100mg/4mg Tablet","price":164,"Is_discontinued":"FALSE","manufacturer_name":"Felix Health Park","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253766,"name":"Zonus 1000mg Injection","price":60.2,"Is_discontinued":"FALSE","manufacturer_name":"Ablus Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253767,"name":"Ziprotil 100mg Tablet DT","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Calen Biotech","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253768,"name":"Zioxim CV Dry Syrup","price":89,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253769,"name":"Zifcef SB 250mg/125mg Injection","price":43.42,"Is_discontinued":"FALSE","manufacturer_name":"Ozenius Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253770,"name":"Zucrose 100mg Injection","price":245,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Iron Sucrose (100mg)","short_composition2":""},{"id":253771,"name":"Zorpep 10mg Tablet","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Solitaire Pharmacia Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Serratiopeptidase (10mg)","short_composition2":""},{"id":253772,"name":"Zeothro 250 Tablet","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Qgensun Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253773,"name":"ZI Fast 500mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Burgeon Health Series Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253774,"name":"Ziyapod 50mg Oral Suspension","price":49.5,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253775,"name":"Zoxgee SP 50mg/325mg/10mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Grecian Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diclofenac (50mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253776,"name":"Ziz 500mg Tablet","price":61,"Is_discontinued":"FALSE","manufacturer_name":"Malody Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253777,"name":"Zimnour 100 Oral Suspension","price":80.25,"Is_discontinued":"FALSE","manufacturer_name":"Nourier Lab","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253778,"name":"Zaflort 6mg Syrup","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Medna Biotech Private Limited","type":"allopathy","pack_size_label":"bottle of 30 ml Syrup","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253779,"name":"Z One T 1000mg/125mg Injection","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Nordic Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253780,"name":"Zitrolik 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Nuliek Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253781,"name":"Zefixone S Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Glue Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253782,"name":"Ziomi 15mg/10mg Capsule","price":49.9,"Is_discontinued":"FALSE","manufacturer_name":"Aanika Pharma","type":"allopathy","pack_size_label":"strip of 20 capsules","short_composition1":"Domperidone (15mg) ","short_composition2":" Omeprazole (10mg)"},{"id":253783,"name":"Zoycin 500mg Tablet","price":71,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253784,"name":"Zithrel 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Relward Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253785,"name":"Zingcef 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Swakam Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253786,"name":"Zonvin 1000mg Injection","price":59.09,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253787,"name":"Zithrodin 250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Meri-Odin Life sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253788,"name":"Zeonate 25mg Injection","price":74.5,"Is_discontinued":"FALSE","manufacturer_name":"Zeotec Life Science Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253789,"name":"Zidif 250mg Injection","price":84.5,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253790,"name":"Zunix 200mg Tablet","price":126,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg)","short_composition2":""},{"id":253791,"name":"Zoxtave MF 80mg/250mg Tablet","price":66,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Drotaverine (80mg) ","short_composition2":" Mefenamic Acid (250mg)"},{"id":253792,"name":"Zitpain 100mg Tablet","price":26.33,"Is_discontinued":"FALSE","manufacturer_name":"Novartis India Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg)","short_composition2":""},{"id":253793,"name":"Zioazi 250mg Tablet","price":68.4,"Is_discontinued":"FALSE","manufacturer_name":"Aden Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253794,"name":"Zoxotrox 250mg Injection","price":27,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253795,"name":"Zoxotrox S 500mg/250mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg) ","short_composition2":" Sulbactam (250mg)"},{"id":253796,"name":"Zstop O 500mg/200mg Tablet","price":58.51,"Is_discontinued":"FALSE","manufacturer_name":"Maneesh Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Nitazoxanide (500mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253797,"name":"Zitis 100mg Tablet","price":60,"Is_discontinued":"FALSE","manufacturer_name":"Scortis Lab Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (100mg)","short_composition2":""},{"id":253798,"name":"Zgflox OZ 200mg/500mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253799,"name":"Zerox-SM 250mg/125mg Injection","price":43,"Is_discontinued":"FALSE","manufacturer_name":"Pharmacon Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253800,"name":"Zevacef-CV Dry Syrup","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Elkos Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253801,"name":"Zamoxy-D 250mg/250mg Capsule","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":253802,"name":"Zolekair 40mg Injection","price":52.39,"Is_discontinued":"FALSE","manufacturer_name":"PDC Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253803,"name":"Zgcort 6mg Tablet","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253804,"name":"Zgthro 250mg Tablet","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253805,"name":"Zuldine AT 5mg/50mg Tablet","price":30,"Is_discontinued":"FALSE","manufacturer_name":"SandMartin Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amlodipine (5mg) ","short_composition2":" Atenolol (50mg)"},{"id":253806,"name":"Zemika 500mg Injection","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":253807,"name":"Zabimox-CV 250mg/125mg Tablet","price":114,"Is_discontinued":"FALSE","manufacturer_name":"Edmund Healthcare","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253808,"name":"Zwitermox 250mg Capsule","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Brussels Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253809,"name":"Zitriax 500mg Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Mexon Healthcare Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253810,"name":"Zeworm 200mg Suspension","price":17.7,"Is_discontinued":"FALSE","manufacturer_name":"Beckcem Drug International Pvt. Ltd.","type":"allopathy","pack_size_label":"bottle of 10 ml Suspension","short_composition1":"Albendazole (200mg)","short_composition2":""},{"id":253811,"name":"Zypfresh 0.2% Mouth Wash","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 100 ml Mouth Wash","short_composition1":"Chlorhexidine Gluconate (0.2% w/v)","short_composition2":""},{"id":253812,"name":"Zymik 500mg Injection","price":88.4,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (500mg)","short_composition2":""},{"id":253813,"name":"Zebicof-LS Expectorant","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Zeaxa Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 100 ml Syrup","short_composition1":"Ambroxol (30mg) ","short_composition2":" Levosalbutamol (1mg) "},{"id":253814,"name":"Zolvacin 200mg Tablet","price":51,"Is_discontinued":"FALSE","manufacturer_name":"Leenate Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg)","short_composition2":""},{"id":253815,"name":"Zutris 500 Tablet","price":74.45,"Is_discontinued":"FALSE","manufacturer_name":"Soinsvie Pharmacia Pvt Ltd","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253816,"name":"Zetax 250mg Injection","price":36.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253817,"name":"Zanfu 750mg Injection","price":115,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefuroxime (750mg)","short_composition2":""},{"id":253818,"name":"Zonex 1000mg/500mg Injection","price":285.6,"Is_discontinued":"FALSE","manufacturer_name":"Axodin Pharmaceuticals Pvt. Ltd.","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253819,"name":"Zanfu CV 250mg/125mg Tablet","price":210,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefuroxime (250mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253820,"name":"Zecabolin 25mg Injection","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Vistica Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253821,"name":"Zeniphyll 100mg Capsule","price":87,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Acebrophylline (100mg)","short_composition2":""},{"id":253822,"name":"Zmik 100mg Injection","price":22.5,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253823,"name":"Zenirab D 30mg/20mg Capsule SR","price":105,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253824,"name":"Ziopen SB 1000mg/500mg Injection","price":2045,"Is_discontinued":"FALSE","manufacturer_name":"Vinson pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253825,"name":"Ziopen 125mg Injection","price":256.4,"Is_discontinued":"FALSE","manufacturer_name":"Vinson pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (125mg)","short_composition2":""},{"id":253826,"name":"Zacroli 0.03% Ointment","price":138,"Is_discontinued":"FALSE","manufacturer_name":"Solace Biotech Ltd","type":"allopathy","pack_size_label":"tube of 10 gm Ointment","short_composition1":"Tacrolimus (0.03% w/w)","short_composition2":""},{"id":253827,"name":"Zatrocob P 750mcg/75mg Capsule","price":135,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":253828,"name":"Zatrofix 50mg Dry Syrup","price":43.7,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg/5ml)","short_composition2":""},{"id":253829,"name":"Zatropan 40mg Injection","price":56.6,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253830,"name":"Zifpod 200mg Tablet DT","price":163.9,"Is_discontinued":"TRUE","manufacturer_name":"Astraea Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253831,"name":"Zithosem 250 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Prosem Healthcare Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253832,"name":"Zoezone 1000mg Injection","price":59,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253833,"name":"Zoftamic 250mg Injection","price":29.32,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253834,"name":"Zomcid O 10mg/20mg Capsule","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Domperidone (10mg) ","short_composition2":" Omeprazole (20mg)"},{"id":253835,"name":"Zonefor SB 250mg/250mg Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (250mg) ","short_composition2":" Sulbactam (250mg)"},{"id":253836,"name":"Zonefor TZ 500mg/62.5mg Injection","price":160,"Is_discontinued":"FALSE","manufacturer_name":"Fortune Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Tazobactum (62.5mg)"},{"id":253837,"name":"Zocmoxy Dry Syrup","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253838,"name":"Zocflox-OZ Tablet","price":89.5,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Ornidazole (500mg)"},{"id":253839,"name":"Zitopod 50 DT Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253840,"name":"Ziotric 500mg Injection","price":47.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253841,"name":"Zyonem S 1000mg/500mg Injection","price":2950,"Is_discontinued":"FALSE","manufacturer_name":"Colard Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253842,"name":"Zidtrax S 1000mg/500mg Injection","price":123,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253843,"name":"Zidrab IT 20mg/150mg Capsule SR","price":129,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Rabeprazole (20mg) ","short_composition2":" Itopride (150mg)"},{"id":253844,"name":"Zapp 250mg Injection","price":29,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253845,"name":"Zapp-S 1500mg Injection","price":124,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253846,"name":"Zidmal 150mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Alpha-Beta Arteether (150mg)","short_composition2":""},{"id":253847,"name":"Zidnim S 100mg/10mg Tablet","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Serratiopeptidase (10mg)"},{"id":253848,"name":"Ziodic AQ 75mg Injection","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":253849,"name":"Zifpidox CV 200mg/125mg Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253850,"name":"Zenbolin 25 Injection","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zennar Life Sciences","type":"allopathy","pack_size_label":"box of 1 Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253851,"name":"Ziokof-P Oral Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Chlorpheniramine Maleate (1mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml) "},{"id":253852,"name":"Zinpa-M Oral Suspension","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zegchem","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Mefenamic Acid (50mg/5ml) ","short_composition2":" Paracetamol (125mg/5ml)"},{"id":253853,"name":"Zerimox CV Dry Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Morstella Biotech","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":253854,"name":"Zonus 500mg Injection","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Ablus Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253855,"name":"Ziodic MR 250mg/50mg/325mg Tablet","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":253856,"name":"Zefixone 1000mg Injection","price":64,"Is_discontinued":"FALSE","manufacturer_name":"Glue Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253857,"name":"Zidpar 1000mg Injection","price":240,"Is_discontinued":"FALSE","manufacturer_name":"Parex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253858,"name":"Zoxinace TH 100mg/4mg Tablet","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (4mg)"},{"id":253859,"name":"Zeconac TH 100mg/8mg Tablet","price":237,"Is_discontinued":"FALSE","manufacturer_name":"Dalcon Drugs Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Thiocolchicoside (8mg)"},{"id":253860,"name":"Zefax 100mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Arlak Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253861,"name":"Zestrain SP 100mg/325mg/15mg Tablet","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253862,"name":"Zoxpinam 500mg Injection","price":925,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (500mg)","short_composition2":""},{"id":253863,"name":"Zithnu 250mg Tablet","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Genesis Biotech Inc","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253864,"name":"Zeximed LB 200mg Tablet","price":185,"Is_discontinued":"FALSE","manufacturer_name":"Emdok Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Lactobacillus (60Million spores)"},{"id":253865,"name":"Zodoxime 200mg Tablet","price":153,"Is_discontinued":"FALSE","manufacturer_name":"Apple Biomedics Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253866,"name":"Ziyacef 100mg Tablet DT","price":83.4,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253867,"name":"Zoxicef CL 200mg/125mg Tablet","price":127.3,"Is_discontinued":"FALSE","manufacturer_name":"Biochemix Health Care Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253868,"name":"Zessdec 50 Injection","price":140,"Is_discontinued":"FALSE","manufacturer_name":"Zesstek Healthcare","type":"allopathy","pack_size_label":"box of 1 Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253869,"name":"Zeeverm 200mg Oral Suspension","price":35,"Is_discontinued":"FALSE","manufacturer_name":"Netprime Pharma Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 10 ml Oral Suspension","short_composition1":"Albendazole (200mg/5ml)","short_composition2":""},{"id":253870,"name":"Zopint 4000mg/500mg Injection","price":390,"Is_discontinued":"FALSE","manufacturer_name":"Intsia Pharma Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253871,"name":"Ziftum 250mg/125mg Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Bioheal Lifesciences Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253872,"name":"Zudol 100mg Injection","price":21,"Is_discontinued":"FALSE","manufacturer_name":"Zubit Lifecare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Tramadol (100mg)","short_composition2":""},{"id":253873,"name":"Zealpam 0.25mg Tablet","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Estro Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Clonazepam (0.25mg)","short_composition2":""},{"id":253874,"name":"Zyxtil 500mg Tablet","price":790,"Is_discontinued":"FALSE","manufacturer_name":"Unijoy Remedies Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefuroxime (500mg)","short_composition2":""},{"id":253875,"name":"Zotabolin 25mg Injection","price":32.21,"Is_discontinued":"FALSE","manufacturer_name":"Swiss Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253876,"name":"Zenoxim XP 1000 mg/125 mg Injection","price":130.53,"Is_discontinued":"FALSE","manufacturer_name":"Indchemie Health Specialities Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253877,"name":"Zoftax O 100mg Tablet DT","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253878,"name":"Zemika 100mg Injection","price":16,"Is_discontinued":"FALSE","manufacturer_name":"Zechstein Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (100mg)","short_composition2":""},{"id":253879,"name":"Zutex-T 250mg/31.25mg Injection","price":56,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Tazobactum (31.25mg)"},{"id":253880,"name":"Zenee PR 50mg Suspension","price":13,"Is_discontinued":"FALSE","manufacturer_name":"Altar Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Nimesulide (50mg)","short_composition2":""},{"id":253881,"name":"Zemal 75mg Injection","price":78,"Is_discontinued":"FALSE","manufacturer_name":"Zodak Healthcare","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Alpha-Beta Arteether (75mg/ml)","short_composition2":""},{"id":253882,"name":"ZEEPARA 125MG/5ML SUSPENSION","price":19,"Is_discontinued":"FALSE","manufacturer_name":"Zee Laboratories","type":"allopathy","pack_size_label":"bottle of 60 ml Suspension","short_composition1":"Paracetamol (125mg/5ml)","short_composition2":""},{"id":253883,"name":"Zestocef 100mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Agrawal Drugs Pvt. Ltd.","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253884,"name":"Zygoclox Plus 250 mg/250 mg Capsule","price":69.1,"Is_discontinued":"FALSE","manufacturer_name":"Moxy Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":253885,"name":"Zapspas 20 mg/100 mg Tablet","price":25.88,"Is_discontinued":"FALSE","manufacturer_name":"Norwest Pharmaceuticals Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Dicyclomine (20mg) ","short_composition2":" Nimesulide (100mg)"},{"id":253886,"name":"Zika 250mg Injection","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253887,"name":"Zyto 40mg Injection","price":58,"Is_discontinued":"FALSE","manufacturer_name":"Zytras Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Powder for Injection","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253888,"name":"Zylocab PG 750mcg/75mg Capsule","price":99,"Is_discontinued":"FALSE","manufacturer_name":"Integra Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Methylcobalamin (750mcg) ","short_composition2":" Pregabalin (75mg)"},{"id":253889,"name":"Zeloxa-TZ Suspension","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Ofloxacin (50mg) ","short_composition2":" Tinidazole (150mg)"},{"id":253890,"name":"Zeflaza 6mg Suspension","price":80,"Is_discontinued":"FALSE","manufacturer_name":"Axis Life Science Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Suspension","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253891,"name":"Zicfix 50 Dry Syrup","price":44,"Is_discontinued":"FALSE","manufacturer_name":"Stensa Life Sciences","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253892,"name":"Zidpar 250mg Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"Parex Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (250mg)","short_composition2":""},{"id":253893,"name":"Zanobid TZ 200mg/600mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Thurs Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253894,"name":"Zardcef 250 Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Vibcare Pharma Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253895,"name":"Zimpomet 500mg Tablet","price":28,"Is_discontinued":"FALSE","manufacturer_name":"Leenate Pharma Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Metformin (500mg)","short_composition2":""},{"id":253896,"name":"Zidur 1000mg Injection","price":315,"Is_discontinued":"FALSE","manufacturer_name":"Auriga Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg)","short_composition2":""},{"id":253897,"name":"Zypnem 1000mg Injection","price":2290,"Is_discontinued":"FALSE","manufacturer_name":"Apa Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (1000mg)","short_composition2":""},{"id":253898,"name":"Zuzox TZ 200mg/600mg Tablet","price":56.6,"Is_discontinued":"FALSE","manufacturer_name":"Penam Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253899,"name":"Zeximed 50mg Dry Syrup","price":48.3,"Is_discontinued":"FALSE","manufacturer_name":"Emdok Pharmaceuticals","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253900,"name":"Zoesunate 60mg Injection","price":204.21,"Is_discontinued":"FALSE","manufacturer_name":"Zoecia Healthcare","type":"allopathy","pack_size_label":"vial of 5 ml Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253901,"name":"Ziftaz 500mg Injection","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Nova Indus Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (500mg)","short_composition2":""},{"id":253902,"name":"Zunfixo 200mg/200mg Tablet","price":142,"Is_discontinued":"FALSE","manufacturer_name":"Zunarsh Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Ofloxacin (200mg)"},{"id":253903,"name":"Zeocin TZ 200mg/600mg Tablet","price":76.5,"Is_discontinued":"FALSE","manufacturer_name":"Dynamed Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Ofloxacin (200mg) ","short_composition2":" Tinidazole (600mg)"},{"id":253904,"name":"Z Clox 250mg/250mg Capsule","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Ambience Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":253905,"name":"Zodec 50mg Injection","price":148,"Is_discontinued":"FALSE","manufacturer_name":"Zorion Drugs & Herbs Pvt. Ltd.","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Nandrolone Decanoate (50mg)","short_composition2":""},{"id":253906,"name":"Zisan LV 250mg/250mg Tablet","price":219,"Is_discontinued":"FALSE","manufacturer_name":"Arvincare Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Levofloxacin (250mg) ","short_composition2":" Azithromycin (250mg)"},{"id":253907,"name":"Ziclofenac 75mg Injection","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Diclofenac (75mg)","short_composition2":""},{"id":253908,"name":"Zeninate 60mg Injection","price":165,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Artesunate (60mg)","short_composition2":""},{"id":253909,"name":"Zmik 250mg Injection","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Mathis Pharma","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amikacin (250mg)","short_composition2":""},{"id":253910,"name":"Zithem 250mg Tablet","price":72,"Is_discontinued":"FALSE","manufacturer_name":"Asgard Labs Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253911,"name":"Zoneros 1000mg Injection","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Crossford Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg)","short_composition2":""},{"id":253912,"name":"Zoneros 250mg Injection","price":24.6,"Is_discontinued":"FALSE","manufacturer_name":"Crossford Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253913,"name":"Zatrorab 20mg Tablet","price":45,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Rabeprazole (20mg)","short_composition2":""},{"id":253914,"name":"Zatropod 50mg Tablet DT","price":65,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (50mg)","short_composition2":""},{"id":253915,"name":"Zatroclav DX 250mg/250mg Capsule","price":54.8,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Dicloxacillin (250mg)"},{"id":253916,"name":"Zione DS O 20mg/12.5mg Tablet","price":104,"Is_discontinued":"FALSE","manufacturer_name":"Unichem Laboratories Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Olmesartan Medoxomil (20mg) ","short_composition2":" Chlorthalidone (12.5mg)"},{"id":253917,"name":"Zatrocob G 300mg/500mcg Tablet","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Zatropha Pharma","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Gabapentin (300mg) ","short_composition2":" Methylcobalamin (500mcg)"},{"id":253918,"name":"Zilopan RD 30mg/20mg Capsule SR","price":120,"Is_discontinued":"FALSE","manufacturer_name":"Atyad Life Sciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253919,"name":"Zrnipant 40mg Tablet","price":52,"Is_discontinued":"FALSE","manufacturer_name":"Zenicure Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Pantoprazole (40mg)","short_composition2":""},{"id":253920,"name":"Zomcort 6mg Tablet","price":98,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Deflazacort (6mg)","short_composition2":""},{"id":253921,"name":"Zonvin 250mg Injection","price":25.9,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253922,"name":"Zuvinzax 250 Tablet","price":64.37,"Is_discontinued":"FALSE","manufacturer_name":"Osiante Biotech","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253923,"name":"Zubik-T Injection","price":116.5,"Is_discontinued":"FALSE","manufacturer_name":"Stenhill Labs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253924,"name":"Zitomox-CV Dry Syrup","price":52.9,"Is_discontinued":"FALSE","manufacturer_name":"Uniark Healthcare Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Amoxycillin (200mg/5ml) ","short_composition2":" Clavulanic Acid (28.5mg/5ml)"},{"id":253925,"name":"Zoftax 250mg Injection","price":20,"Is_discontinued":"FALSE","manufacturer_name":"Elder Pharmaceuticals Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefotaxime (250mg)","short_composition2":""},{"id":253926,"name":"Zooclav 250mg/50mg Injection","price":90,"Is_discontinued":"FALSE","manufacturer_name":"Zoom Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Amoxycillin (250mg) ","short_composition2":" Clavulanic Acid (50mg)"},{"id":253927,"name":"Zazogesic P Oral Suspension","price":38,"Is_discontinued":"FALSE","manufacturer_name":"Uko Pharmatech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 60 ml Oral Suspension","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (125mg)"},{"id":253928,"name":"Zocmoxy 500mg/125mg Tablet","price":188,"Is_discontinued":"FALSE","manufacturer_name":"Biozoc INC","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253929,"name":"Zonedro S 500mg/500mg Injection","price":174.5,"Is_discontinued":"FALSE","manufacturer_name":"Penardo Biotech","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Cefoperazone (500mg) ","short_composition2":" Sulbactam (500mg)"},{"id":253930,"name":"Zesiron 2mg Injection","price":12.5,"Is_discontinued":"FALSE","manufacturer_name":"Oddiant Formulations","type":"allopathy","pack_size_label":"ampoule of 2 ml Injection","short_composition1":"Ondansetron (2mg)","short_composition2":""},{"id":253931,"name":"Zmost 250mg Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Evantis Lifesciences Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253932,"name":"Zavicin T 4000mg/500mg Injection","price":446,"Is_discontinued":"FALSE","manufacturer_name":"Zavik Drugs","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253933,"name":"Zolfab 20mg Capsule","price":33,"Is_discontinued":"FALSE","manufacturer_name":"Aenor Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 10 capsules","short_composition1":"Omeprazole (20mg)","short_composition2":""},{"id":253934,"name":"Zeox CV 200mg/125mg Tablet","price":149,"Is_discontinued":"FALSE","manufacturer_name":"Sigma Softgel Formulation","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253935,"name":"Zithronic 250 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Bionics Remedies","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253936,"name":"Zithub 250 Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Trubeca Lifesciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253937,"name":"Zithociz 500 Tablet","price":68,"Is_discontinued":"FALSE","manufacturer_name":"Kaansla Pharmaceuticals Private Limited","type":"allopathy","pack_size_label":"strip of 3 tablets","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253938,"name":"Zapp-S 375mg Injection","price":47,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg) ","short_composition2":" Sulbactam (125mg)"},{"id":253939,"name":"Zapp S 125mg/62.5mg Injection","price":36,"Is_discontinued":"FALSE","manufacturer_name":"Kenvish Healthcare","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (125mg) ","short_composition2":" Sulbactam (62.5mg)"},{"id":253940,"name":"Zixime CL 200mg/125mg Tablet","price":243,"Is_discontinued":"FALSE","manufacturer_name":"Zicad Life Care","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253941,"name":"Zestocef CV Dry Syrup","price":81,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253942,"name":"Zestocef 100mg Tablet DT","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Brostin Seizz Biocare","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253943,"name":"Zelpod CV Dry Syrup","price":94,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefpodoxime Proxetil (50mg) ","short_composition2":" Clavulanic Acid (31.25mg)"},{"id":253944,"name":"Zidnim T 100mg/2mg Tablet","price":50,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Nimesulide (100mg) ","short_composition2":" Tizanidine (2mg)"},{"id":253945,"name":"Zifcas 100mg Tablet DT","price":82,"Is_discontinued":"FALSE","manufacturer_name":"Cassopeia Pharmaceuticals Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefixime (100mg)","short_composition2":""},{"id":253946,"name":"Zidmox CV Dry Syrup","price":62,"Is_discontinued":"FALSE","manufacturer_name":"Zidwell Healthcare","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Amoxycillin (200mg) ","short_composition2":" Clavulanic Acid (28.5mg)"},{"id":253947,"name":"Zedasat 1000mg/125mg Injection","price":354,"Is_discontinued":"FALSE","manufacturer_name":"Saturn Formulations Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftazidime (1000mg) ","short_composition2":" Tazobactum (125mg)"},{"id":253948,"name":"Zelcef 500mg Injection","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253949,"name":"Zelcef 250mg Injection","price":30,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (250mg)","short_composition2":""},{"id":253950,"name":"Zoxton 500 Injection","price":47.3,"Is_discontinued":"FALSE","manufacturer_name":"Ampira Biotechnics Pvt Ltd","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Ceftriaxone (500mg)","short_composition2":""},{"id":253951,"name":"Zebi-DSR Capsule","price":84,"Is_discontinued":"FALSE","manufacturer_name":"Zelnic Biotech Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 capsule sr","short_composition1":"Domperidone (30mg) ","short_composition2":" Rabeprazole (20mg)"},{"id":253952,"name":"Ziomox CV 500mg/125mg Tablet","price":113.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziotic Life Sciences","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Amoxycillin (500mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253953,"name":"Zwitermox 250mg Tablet DT","price":32,"Is_discontinued":"FALSE","manufacturer_name":"Brussels Laboratories Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Amoxycillin (250mg)","short_composition2":""},{"id":253954,"name":"Zpename 500mg Injection","price":700,"Is_discontinued":"FALSE","manufacturer_name":"Medigen Life Sciences","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Meropenem (500mg)","short_composition2":""},{"id":253955,"name":"Zitrost 250mg Tablet","price":85,"Is_discontinued":"FALSE","manufacturer_name":"Trost Medicare Pvt Ltd","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253956,"name":"Zycet 10mg Tablet","price":22,"Is_discontinued":"FALSE","manufacturer_name":"Ascent Corporations","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cetirizine (10mg)","short_composition2":""},{"id":253957,"name":"Zoceclo 200mg Tablet SR","price":48,"Is_discontinued":"FALSE","manufacturer_name":"Amzor Healthcare","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":253958,"name":"Zocxafen 250mg/50mg/325mg Tablet","price":34.69,"Is_discontinued":"FALSE","manufacturer_name":"Raffles Pharmaceuticals","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Chlorzoxazone (250mg) ","short_composition2":" Diclofenac (50mg) "},{"id":253959,"name":"Zoxikyne 40mg Injection","price":25,"Is_discontinued":"FALSE","manufacturer_name":"Kyna Pharmaceuticals","type":"allopathy","pack_size_label":"vial of 2 ml Injection","short_composition1":"Piroxicam (40mg)","short_composition2":""},{"id":253960,"name":"Zondec 25 Injection","price":95,"Is_discontinued":"FALSE","manufacturer_name":"M.M Pharma","type":"allopathy","pack_size_label":"ampoule of 1 ml Injection","short_composition1":"Nandrolone Decanoate (25mg)","short_composition2":""},{"id":253961,"name":"Zithmark 250mg Tablet","price":67,"Is_discontinued":"FALSE","manufacturer_name":"Indmark Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 6 tablets","short_composition1":"Azithromycin (250mg)","short_composition2":""},{"id":253962,"name":"Zoxinace 200mg Tablet SR","price":55,"Is_discontinued":"FALSE","manufacturer_name":"Zoxvina Biotech Private Limited","type":"allopathy","pack_size_label":"strip of 10 tablet sr","short_composition1":"Aceclofenac (200mg)","short_composition2":""},{"id":253963,"name":"Zestrain 100mg/325mg/250mg Tablet MR","price":70,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"strip of 10 tablet mr","short_composition1":"Aceclofenac (100mg) ","short_composition2":" Paracetamol (325mg) "},{"id":253964,"name":"Zunix 50mg Dry Syrup","price":49,"Is_discontinued":"FALSE","manufacturer_name":"Vesnik Molecules","type":"allopathy","pack_size_label":"bottle of 30 ml Dry Syrup","short_composition1":"Cefixime (50mg)","short_composition2":""},{"id":253965,"name":"Ziyapod 200mg Tablet DT","price":187.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"strip of 10 tablet dt","short_composition1":"Cefpodoxime Proxetil (200mg)","short_composition2":""},{"id":253966,"name":"Zeotaz 4000mg/500mg Injection","price":490,"Is_discontinued":"FALSE","manufacturer_name":"Intsia Pharma Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Piperacillin (4000mg) ","short_composition2":" Tazobactum (500mg)"},{"id":253967,"name":"Zogrell A 75mg/75mg Tablet","price":75,"Is_discontinued":"FALSE","manufacturer_name":"Vhb Life Sciences Inc","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Aspirin (75mg) ","short_composition2":" Clopidogrel (75mg)"},{"id":253968,"name":"Zef CV 200mg/125mg Tablet","price":260,"Is_discontinued":"FALSE","manufacturer_name":"ZRS Labs","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Cefixime (200mg) ","short_composition2":" Clavulanic Acid (125mg)"},{"id":253969,"name":"Ziyapod 100mg Oral Suspension","price":62.3,"Is_discontinued":"FALSE","manufacturer_name":"Ziyana Lifesciences Pvt Ltd","type":"allopathy","pack_size_label":"bottle of 30 ml Oral Suspension","short_composition1":"Cefpodoxime Proxetil (100mg)","short_composition2":""},{"id":253970,"name":"Zemhart 30mg Tablet","price":54,"Is_discontinued":"FALSE","manufacturer_name":"Leeford Healthcare Ltd","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Diltiazem (30mg)","short_composition2":""},{"id":253971,"name":"Zivex 25mg Tablet","price":57,"Is_discontinued":"FALSE","manufacturer_name":"Euro Organics","type":"allopathy","pack_size_label":"strip of 10 tablets","short_composition1":"Hydroxyzine (25mg)","short_composition2":""},{"id":253972,"name":"ZI Fast 500mg Injection","price":152,"Is_discontinued":"FALSE","manufacturer_name":"Burgeon Health Series Private Limited","type":"allopathy","pack_size_label":"vial of 1 Injection","short_composition1":"Azithromycin (500mg)","short_composition2":""},{"id":253973,"name":"Zyvocol 1% Dusting Powder","price":110,"Is_discontinued":"FALSE","manufacturer_name":"GBK Healthcare","type":"allopathy","pack_size_label":"bottle of 75 gm Dusting Powder","short_composition1":"Clotrimazole (1% w/w)","short_composition2":""}]; + +export default data; \ No newline at end of file diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/index.mjs b/New_APIs/A_Z_Medicine_API_For_INDIA/index.mjs new file mode 100644 index 0000000..e4a77de --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/index.mjs @@ -0,0 +1,9 @@ +import express from 'express' +import router from './routes.mjs'; +const app = express(); +app.use(express.json()); +app.use(router); +const PORT = process.env.PORT||80; +app.listen(PORT,()=>{ + console.log("Running on port "+PORT); +}) \ No newline at end of file diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/middleware.js b/New_APIs/A_Z_Medicine_API_For_INDIA/middleware.js new file mode 100644 index 0000000..7634498 --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/middleware.js @@ -0,0 +1,43 @@ +module.exports={ + searchByNameMiddleware:function(request,response,next){ + const {query} = request; + if(!query){ + return response.status(400).send({msg:"name field query is required"}); + }else{ + const name = query.name; + console.log(name); + if(!(typeof name == "string")|| name.length==0){ + return response.status(400).send({msg:"Invalid field value"}); + } + query.name = name.toLocaleLowerCase().trim().replaceAll(" ",""); + } + next(); + }, + searchByManufacturerMiddleware:function(request,response,next){ + const {query} = request; + if(!query){ + return response.status(400).send({msg:"manufacturer field query is required"}); + }else{ + const manufacturer = query.manufacturer; + console.log(manufacturer); + if(!(typeof manufacturer == "string")|| manufacturer.length==0){ + return response.status(400).send({msg:"Invalid field value"}); + } + query.manufacturer = manufacturer.toLocaleLowerCase().trim().replaceAll(" ",""); + } + next(); + }, + searchByPriceMiddleware:function(request,response,next){ + const {query} = request; + if(!query){ + return response.status(400).send({msg:"price field query is required"}); + }else{ + const price = query.price; + console.log(price); + if(!(typeof price == "string")|| price.length==0){ + return response.status(400).send({msg:"Invalid field value"}); + } + } + next(); + } +} \ No newline at end of file diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/package-lock.json b/New_APIs/A_Z_Medicine_API_For_INDIA/package-lock.json new file mode 100644 index 0000000..7925ee9 --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/package-lock.json @@ -0,0 +1,1179 @@ +{ + "name": "medicine api", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "express": "^4.19.2" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + } + }, + "dependencies": { + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + } + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "requires": { + "get-intrinsic": "^1.2.4" + } + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + } + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } + } +} diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/package.json b/New_APIs/A_Z_Medicine_API_For_INDIA/package.json new file mode 100644 index 0000000..4c70953 --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "express": "^4.19.2" + } +} diff --git a/New_APIs/A_Z_Medicine_API_For_INDIA/routes.mjs b/New_APIs/A_Z_Medicine_API_For_INDIA/routes.mjs new file mode 100644 index 0000000..f481373 --- /dev/null +++ b/New_APIs/A_Z_Medicine_API_For_INDIA/routes.mjs @@ -0,0 +1,52 @@ +import { Router} from "express"; +import pkg from './middleware.js' +const {searchByPriceMiddleware, searchByManufacturerMiddleware, searchByNameMiddleware } = pkg; +import data from "./data.mjs"; + +const router = Router(); + +router.get('/searchByName',searchByNameMiddleware,(request,response)=>{ + const {query} = request; + const name = query.name; + console.log(name); + const list = data.filter(item=> item.name.toLowerCase().trim().replaceAll(" ","")==name) + return response.status(200).send({result:list}); +}) + +router.get('/searchByManufacturer',searchByManufacturerMiddleware,(request,response)=>{ + const {query} = request; + const manufacturer = query.manufacturer; + console.log(manufacturer); + const list = data.filter(item=> item.manufacturer_name.toLowerCase().trim().replaceAll(" ","")==manufacturer) + return response.status(200).send({result:list}); +}) + +router.get('/AllDiscontinued',(request,response)=>{ + const list = data.filter(item=> item.Is_discontinued=="TRUE"); + return response.status(200).send({result:list}); +}) + +router.get('/searchByPrice',searchByPriceMiddleware,(request,response)=>{ + const {query} = request; + const price = parseFloat(query.price); + const list = data.filter(item=> item.price==price); + return response.send({result:list}); +}) + +router.get('/searchByPriceUnder',searchByPriceMiddleware,(request,response)=>{ + const {query} = request; + const price = parseFloat(query.price); + const list = data.filter(item=> item.price{ + const {query} = request; + const price = parseFloat(query.price); + const list = data.filter(item=> item.price>price); + return response.send({result:list}); +}) + + + +export default router; \ No newline at end of file From da54a3362f3bc3669a8eed7325bc7c1f609ce2bf Mon Sep 17 00:00:00 2001 From: SatwikMohan Date: Wed, 5 Jun 2024 11:18:52 +0530 Subject: [PATCH 3/3] chatbot_api --- New_APIs/ChatBot_API/README.md | 57 + New_APIs/ChatBot_API/index.mjs | 55 + New_APIs/ChatBot_API/intents.json | 1486 ++++++++++++++++ New_APIs/ChatBot_API/package-lock.json | 2189 ++++++++++++++++++++++++ New_APIs/ChatBot_API/package.json | 8 + 5 files changed, 3795 insertions(+) create mode 100644 New_APIs/ChatBot_API/README.md create mode 100644 New_APIs/ChatBot_API/index.mjs create mode 100644 New_APIs/ChatBot_API/intents.json create mode 100644 New_APIs/ChatBot_API/package-lock.json create mode 100644 New_APIs/ChatBot_API/package.json diff --git a/New_APIs/ChatBot_API/README.md b/New_APIs/ChatBot_API/README.md new file mode 100644 index 0000000..b73b635 --- /dev/null +++ b/New_APIs/ChatBot_API/README.md @@ -0,0 +1,57 @@ +# ChatBot API + +## Installation + +To use this program, you need to have Node.js installed. Then, install the required `express`,`fs` and `natural` libraries by running: + +```sh +npm i express fs natural +``` + +## Method to use the API + +1. Run the index.mjs file using the following command: +```sh + node index.mjs +``` + +OR + +```sh + nodemon index.mjs +``` + +2. Wait for a few seconds as the model get trained. + +3. When the server starts running you can use the ChatBot service. + +4. Endpoint - /chat + +POST - http://localhost:3000/chat + +Databody => + +```bash + +{ + "message":"Enter a message or chat for the ChatBot to answer" +} + +``` + +5. Example: + +```bash +{ + "message":"What's going in life" +} + +{ + "response": "Things have been interesting! How about you?" +} + +``` + +6. By adding more tags, patterns and responses the ChatBot becomes more and more advance and will be able to answer more and more complex messages. + +Contributed by - Satwik Mohan \ No newline at end of file diff --git a/New_APIs/ChatBot_API/index.mjs b/New_APIs/ChatBot_API/index.mjs new file mode 100644 index 0000000..ebfa947 --- /dev/null +++ b/New_APIs/ChatBot_API/index.mjs @@ -0,0 +1,55 @@ +import express, { json } from 'express'; +import { readFileSync } from 'fs'; +import pkg from 'natural'; +const { WordTokenizer, BayesClassifier } = pkg; +const app = express(); +app.use(express.json()); +const PORT = process.env.PORT || 3000; + +console.log("Model Training begin"); + +// Load intents +const intents = JSON.parse(readFileSync('intents.json')); + +// Tokenizer and classifier +const tokenizer = new WordTokenizer(); +const classifier = new BayesClassifier(); + +// Train the classifier with the dataset +intents.intents.forEach(intent => { + intent.patterns.forEach(pattern => { + classifier.addDocument(pattern, intent.tag); + }); +}); + +classifier.train(); + +// Function to get a random response +function getRandomResponse(responses) { + const randomIndex = Math.floor(Math.random() * responses.length); + return responses[randomIndex]; +} + +app.post('/chat', (req, res) => { + const { message } = req.body; + if (!message) { + return res.status(400).json({ error: 'Message is required' }); + } + + const tokenizedMessage = tokenizer.tokenize(message.toLowerCase()); + const classification = classifier.classify(tokenizedMessage.join(' ')); + + const intent = intents.intents.find(intent => intent.tag === classification); + + if (intent) { + const response = getRandomResponse(intent.responses); + res.json({ response }); + } else { + res.json({ response: "I'm sorry, I don't understand that." }); + } +}); + +app.listen(PORT, () => { + console.log("Model Trained"); + console.log(`Server is running on port ${PORT}`); +}); \ No newline at end of file diff --git a/New_APIs/ChatBot_API/intents.json b/New_APIs/ChatBot_API/intents.json new file mode 100644 index 0000000..187aec4 --- /dev/null +++ b/New_APIs/ChatBot_API/intents.json @@ -0,0 +1,1486 @@ +{ + "intents": [ + { + "tag": "greetings", + "patterns": ["Hi", "Hello", "Good day", "Hey", "What's up", "Greetings", "Howdy", "Hi there", "Hey there", "Hello there"], + "responses": ["Hello", "Hey there", "Hi", "Greetings! How can I assist you today?", "Hey! How can I help you?", "Hello! What can I do for you today?", "Hi! How's it going?", "Hello! How can I be of service?"] + }, + { + "tag": "farewell", + "patterns": ["Bye", "Goodbye", "See you later", "Farewell", "Catch you later", "Talk to you soon", "Bye-bye", "See ya", "Take care", "I'm leaving now"], + "responses": ["Goodbye! Have a great day!", "See you later!", "Farewell!", "Catch you later! Take care!", "Talk to you soon!", "Bye! Have a wonderful day!", "Take care! See you soon!", "Goodbye! Stay safe!"] + }, + { + "tag": "name", + "patterns": [ + "What is your name?", + "Who are you?", + "Tell me your name", + "May I know your name?", + "What's your name?", + "Who am I talking to?", + "What's your full name?", + "Do you have a name?" + ], + "responses": [ + "I am your advanced chatbot!", + "You can call me ChatBot.", + "My name is ChatBot.", + "I'm ChatBot, your virtual assistant.", + "I go by the name ChatBot.", + "You can refer to me as ChatBot." + ] + }, + { + "tag": "capabilities", + "patterns": [ + "What can you do?", + "Tell me your capabilities", + "What are your functions?", + "What services do you offer?", + "How can you help me?", + "What are you able to do?", + "What skills do you have?", + "What can you assist with?" + ], + "responses": [ + "I can chat with you, answer questions, and tell jokes.", + "My capabilities include chatting, answering questions, and providing assistance.", + "I am here to help you with your inquiries and entertain you with some jokes.", + "I can assist with general questions, tell jokes, and provide information.", + "I can help with your queries, provide information, and entertain you.", + "I am capable of answering a variety of questions and engaging in conversation.", + "I can offer information, chat with you, and even tell some jokes." + ] + }, + { + "tag": "help", + "patterns": [ + "I need help", + "Can you help me?", + "Assist me", + "Help", + "I need assistance", + "Could you assist me?", + "Help me, please", + "Can I get some help?", + "I need some support", + "I require assistance" + ], + "responses": [ + "Sure! Ask me anything, and I will do my best to assist you.", + "I'm here to help! What do you need assistance with?", + "Feel free to ask me anything you need help with.", + "I'm here to assist you. Please tell me what you need help with.", + "I'm ready to help! What can I assist you with?", + "Of course! What do you need help with?", + "I'd be happy to help. What do you need?" + ] + }, + { + "tag": "joke", + "patterns": [ + "Tell me a joke", + "Make me laugh", + "I want to hear a joke", + "Do you know any jokes?", + "Can you tell me a joke?", + "Say something funny", + "Tell me something funny", + "Do you have any jokes?", + "Give me a funny joke", + "Can you lighten the mood with a joke?", + "I could use a good laugh. Got any jokes?", + "How about a joke to cheer me up?", + "Hit me with your best joke!", + "Feeling a bit down. Can you tell me a joke?", + "I'm in need of some humor. Got any jokes?", + "I'm feeling stressed. Can you help me relax with a joke?", + "I need a break from work. Tell me a joke, please.", + "What's the funniest joke you know?", + "Can you share a joke to brighten my day?", + "Got any jokes that'll make me crack a smile?", + "I'm bored. Entertain me with a joke.", + "Can you bring some laughter into my day?", + "I'm ready for some comedy. Hit me with a joke!", + "I'm feeling a bit low. How about a joke to lift my spirits?", + "I'm all ears. Share a joke with me!", + "Feeling a bit blue. Got any jokes to cheer me up?", + "I need a good laugh. Got any jokes?", + "Can you tell me something amusing?", + "Make me chuckle with a joke!", + "Let's lighten the mood with a joke!", + "In the mood for some humor. Got any jokes?", + "Can you tell me a quick joke?", + "I'm feeling glum. Can you tell me a joke to make me smile?", + "Feeling down in the dumps. Cheer me up with a joke!", + "Can you bring some joy into my day with a joke?", + "I could use a laugh right about now. Got any jokes?", + "Can you tickle my funny bone with a joke?", + "Feeling a bit gloomy. Can you brighten my day with a joke?", + "I'm feeling a bit under the weather. Can you tell me a joke?", + "Feeling a bit low on energy. A joke would be nice!", + "Can you put a smile on my face with a joke?", + "I'm feeling a bit stressed. Can you lighten the mood with a joke?", + "Feeling a bit downhearted. Need a joke to lift my spirits!", + "I need a pick-me-up. Can you tell me a joke?", + "Feeling a bit tense. A joke would be perfect right now!", + "In need of some comic relief. Got any jokes?", + "Can you add a little humor to my day with a joke?", + "Feeling a bit overwhelmed. Need a good laugh!", + "I'm feeling a bit tense. Can you tell me a joke?", + "Feeling a bit overwhelmed. Could use a good laugh!", + "Feeling a bit stressed out. A joke would be great right now!", + "Feeling a bit anxious. Need a joke to calm my nerves!", + "Feeling a bit on edge. Can you tell me a joke?", + "Feeling a bit frazzled. A joke would be perfect right now!", + "Feeling a bit frazzled. Could use a laugh!", + "Feeling a bit wound up. Can you tell me a joke?", + "Feeling a bit on edge. Could use a chuckle!", + "Feeling a bit wired. A joke would really help!", + "Feeling a bit keyed up. Can you lighten the mood with a joke?", + "Feeling a bit uptight. Need a joke to relax!", + "Feeling a bit tense. Can you make me laugh?", + "Feeling a bit on edge. Could use a good joke!", + "Feeling a bit stressed. Can you tell me a joke?", + "Feeling a bit overwhelmed. A joke would be perfect!", + "Feeling a bit anxious. Can you lighten the mood with a joke?", + "Feeling a bit tense. Could use some humor!", + "Feeling a bit stressed out. A joke would really help!", + "Feeling a bit frazzled. Can you make me laugh?", + "Feeling a bit wound up. Need a joke to unwind!", + "Feeling a bit on edge. Can you tell me something funny?", + "Feeling a bit wired. Could use a chuckle!", + "Feeling a bit keyed up. A joke would be great!", + "Feeling a bit uptight. Can you lighten the mood with a joke?", + "Feeling a bit tense. Need a laugh!", + "Feeling a bit wound up. Can you make me smile?", + "Feeling a bit anxious. Could use a good joke!", + "Feeling a bit stressed. Can you tell me something funny?", + "Feeling a bit overwhelmed. Need a chuckle!", + "Feeling a bit frazzled. A joke would be perfect!", + "Feeling a bit on edge. Can you make me laugh?", + "Feeling a bit wired. Need a joke to relax!", + "Feeling a bit keyed up. Can you lighten the mood?", + "Feeling a bit uptight. Need a laugh!", + "Feeling a bit tense. Can you tell me a joke?", + "Feeling a bit stressed out. A joke would help!", + "Feeling a bit overwhelmed. Can you make me chuckle?", + "Feeling a bit anxious. Could use a laugh!", + "Feeling a bit tense. Need some humor!", + "Feeling a bit stressed. Can you tell me something amusing?", + "Feeling a bit frazzled. A joke would really help!", + "Feeling a bit wound up. Can you make me smile?", + "Feeling a bit on edge. Need a chuckle!", + "Feeling a bit wired. Can you lighten the mood with a joke?", + "Feeling a bit keyed up. Could use a good laugh!", + "Feeling a bit uptight. Can you tell me something funny?", + "Feeling a bit tense. A joke would be perfect!", + "Feeling a bit stressed out. Can you make me laugh?", + "Feeling a bit overwhelmed. Need a joke to relax!", + "Feeling a bit anxious. Can you lighten the mood?", + "Feeling a bit tense. Need a laugh!", + "Feeling a bit stressed. Can you tell me a joke?", + "Feeling a bit frazzled. Need some humor!", + "Feeling a bit wound up. Can you make me chuckle?", + "Feeling a bit on edge. Could use a laugh!", + "Feeling a bit wired. Can you tell me something amusing?", + "Feeling a bit keyed up. A joke would help!", + "Feeling a bit uptight. Can you make me smile?" + ], + "responses": [ + "Why don’t scientists trust atoms? Because they make up everything!", + "Why did the scarecrow win an award? Because he was outstanding in his field!", + "Why don’t skeletons fight each other? They don’t have the guts.", + "What do you get if you cross a cat with a dark horse? Kitty Perry.", + "Why don’t some couples go to the gym? Because some relationships don’t work out.", + "What do you call fake spaghetti? An impasta!", + "Why did the bicycle fall over? Because it was two-tired!", + "Why don't we ever see hippopotamus hiding in trees? Because they're really good at it!", + "Why did the tomato turn red? Because it saw the salad dressing!", + "Why was the math book sad? Because it had too many problems.", + "Why did the golfer bring two pairs of pants? In case he got a hole in one!", + "What did the grape do when it got stepped on? Nothing, it just let out a little wine.", + "Why was the belt arrested? For holding up a pair of pants!", + "What did one plate say to the other plate? Dinner is on me!", + "Why don't skeletons fight each other? They don't have the guts.", + "What did one ocean say to the other ocean? Nothing, they just waved.", + "What did the left eye say to the right eye? Between you and me, something smells!", + "What did the grape say when it got stepped on? Nothing, it just let out a little wine!", + "Why was the broom late? It overswept!", + "What did one hat say to the other? You stay here, I'll go on ahead!", + "Why don't eggs tell jokes? Because they'd crack each other up!", + "What do you call cheese that isn't yours? Nacho cheese!", + "Why couldn't the bicycle stand up by itself? It was two tired!", + "Why was the math book sad? Because it had too many problems!", + "What do you call a fake noodle? An impasta!", + "Why did the scarecrow win an award? Because he was outstanding in his field!", + "What do you call a pile of cats? A meowtain!", + "What do you call a fish wearing a crown? A kingfish!", + "Why did the chicken join a band? Because it had the drumsticks!", + "Why was the cat sitting on the computer? It wanted to keep an eye on the mouse!", + "Why did the golfer bring two pairs of pants? In case he got a hole in one!", + "Why couldn’t the leopard play hide and seek? Because he was always spotted!", + "What did the janitor say when he jumped out of the closet? Supplies!", + "Why did the scarecrow become a successful neurosurgeon? He was outstanding in his field!", + "What do you call fake spaghetti? An impasta!", + "Why did the tomato turn red? Because it saw the salad dressing!", + "Why don’t scientists trust atoms? Because they make up everything!", + "Why don't skeletons fight each other? They don't have the guts.", + "What do you get if you cross a cat with a dark horse? Kitty Perry.", + "Why don’t some couples go to the gym? Because some relationships don’t work out.", + "What do you call fake spaghetti? An impasta!", + "Why did the bicycle fall over? Because it was two-tired!", + "Why don't we ever see hippopotamus hiding in trees? Because they're really good at it!", + "Why did the tomato turn red? Because it saw the salad dressing!", + "Why was the math book sad? Because it had too many problems.", + "Why did the golfer bring two pairs of pants? In case he got a hole in one!", + "What did the grape do when it got stepped on? Nothing, it just let out a little wine.", + "Why was the belt arrested? For holding up a pair of pants!", + "What did one plate say to the other plate? Dinner is on me!", + "Why don't skeletons fight each other? They don't have the guts.", + "What did one ocean say to the other ocean? Nothing, they just waved.", + "What did the left eye say to the right eye? Between you and me, something smells!", + "What did the grape say when it got stepped on? Nothing, it just let out a little wine!", + "Why was the broom late? It overswept!", + "What did one hat say to the other? You stay here, I'll go on ahead!", + "Why don't eggs tell jokes? Because they'd crack each other up!", + "What do you call cheese that isn't yours? Nacho cheese!", + "Why couldn't the bicycle stand up by itself? It was two tired!", + "Why was the math book sad? Because it had too many problems!", + "What do you call a fake noodle? An impasta!", + "Why did the scarecrow win an award? Because he was outstanding in his field!", + "What do you call a pile of cats? A meowtain!", + "What do you call a fish wearing a crown? A kingfish!", + "Why did the chicken join a band? Because it had the drumsticks!", + "Why was the cat sitting on the computer? It wanted to keep an eye on the mouse!", + "Why did the golfer bring two pairs of pants? In case he got a hole in one!", + "Why couldn’t the leopard play hide and seek? Because he was always spotted!", + "What did the janitor say when he jumped out of the closet? Supplies!" + ] + }, + { + "tag": "date", + "patterns": [ + "What's the date today?", + "Tell me today's date", + "What's today's date?", + "Can you tell me the date?", + "Do you know what the date is?", + "Today's date, please", + "What is the date today?", + "Could you tell me today's date?" + ], + "responses": [ + "I'm not able to provide today's date. Please check your device for the date.", + "I don't have the current date. Please look at a calendar or a device.", + "I'm unable to fetch the current date. You can check your phone or computer." + ] + }, + { + "tag": "age", + "patterns": [ + "How old are you?", + "What is your age?", + "Tell me your age", + "Can you tell me how old you are?", + "How long have you been around?", + "When were you created?", + "What's your age?", + "Do you have an age?" + ], + "responses": [ + "I am timeless!", + "I'm as old as the concept of AI itself.", + "Age is just a number, and I don't have one!", + "I am ageless.", + "I exist outside the realm of time.", + "I don't have an age. I am a virtual entity.", + "I am immortal and without age." + ] + }, + { + "tag": "creator", + "patterns": [ + "Who created you?", + "Who is your creator?", + "Tell me about your creator", + "Who made you?", + "Who developed you?", + "Who designed you?", + "Who is responsible for your creation?", + "Who built you?" + ], + "responses": [ + "I was created by Satwik Mohan to assist and entertain.", + "Satwik Mohan is my creator.", + "I was made by the talented Satwik Mohan.", + "I was designed and developed by Satwik Mohan." + ] + }, + { + "tag": "catching_up", + "patterns": [ + "How have you been?", + "What's new with you?", + "Long time no see!", + "What's been going on?", + "How's everything?", + "What's up with you?", + "How are things?", + "How's life?", + "Haven't talked in a while, how are you?", + "It's been ages, what's happening?", + "Hey there, what's the latest?", + "I haven't heard from you in ages, what's up?", + "What's been keeping you busy lately?", + "Hey stranger, what's new?", + "What's been happening in your world?", + "How's everything on your end?", + "It feels like forever! How have you been?", + "What's been going on in your life?", + "I feel like we haven't caught up in ages, how are you?", + "Hey, long time no chat! What's been happening?", + "What's the latest gossip? Fill me in!", + "I've missed our chats! How have you been?", + "What's the word on the street? Anything exciting happening?", + "Hey, it's been a minute! How's life treating you?", + "What have you been up to lately?", + "I haven't heard from you in ages, what's new?", + "Hey, it's been quiet without you! How have you been?", + "How's life been treating you?", + "What's the buzz? Fill me in!", + "What's the latest and greatest?", + "I feel like I haven't seen you in forever! How have you been?", + "What's new in your world?", + "How's everything been going for you lately?", + "I've been thinking about you! How's everything going?", + "Hey, stranger! What's the good word?", + "What's been happening in your neck of the woods?", + "How have you been keeping yourself entertained lately?", + "I've missed our chats! What's been happening in your life?", + "It's been too long! What have you been up to?", + "What's the 411? Give me the scoop!", + "How's the world treating you these days?", + "It feels like it's been ages! What's new with you?", + "Hey, it's been a hot minute! How have you been?", + "How's everything on your end of the conversation?", + "I feel like we haven't talked in forever! What's new?", + "What's the latest and greatest with you?", + "Hey, it's been a while! How have you been holding up?", + "I've been wondering what you've been up to! How are things?", + "What's the latest dish? Spill the beans!", + "How's life been treating you lately?", + "It's been too quiet without you! What's new?", + "Hey, it's been ages! How's everything going?", + "How have you been spending your time lately?", + "What's the latest scoop? I'm all ears!", + "What's been happening in your corner of the world?", + "I feel like it's been forever! How are you?", + "What's the good word? Catch me up!", + "How's life been treating you these days?", + "It's been too long! What's new with you?", + "Hey, stranger! How have you been?", + "How's everything been going for you lately?", + "I've missed our conversations! What's been happening?", + "What's new and exciting in your life?", + "Hey, it's been a minute! How are you?", + "How's everything in your world?", + "I feel like we haven't talked in ages! How have you been?", + "What's the latest news with you?", + "How's life been treating you?", + "Hey, it's been a while! What's been going on?", + "What's new on your end?", + "I've been curious about what you've been up to! How are things?", + "What's the latest dish? I'm all ears!", + "How's everything been going for you?", + "It's been too quiet without you! How have you been?", + "Hey, it's been ages! What's new with you?", + "How have you been spending your time lately?", + "What's the latest scoop?", + "How's life been treating you lately?" + ], + "responses": [ + "I've been great! How about you?", + "Not much, just the usual. How about you?", + "It's been a while! What have you been up to?", + "Everything's good here. How's everything with you?", + "Just the usual stuff. How about you?", + "Life's been good! What about you?", + "Things are going well. How are things with you?", + "I've been busy but good. How about you?", + "Life's been treating me well, thanks for asking. How about you?", + "I've been keeping busy! How about you?", + "Things have been hectic, but I'm managing. How about you?", + "Life's been an adventure lately! What about you?", + "Not much, just trying to stay sane. How about you?", + "Just trying to stay afloat! How about you?", + "Same old, same old. How about you?", + "I've been good, thanks for asking! How about you?", + "Things have been interesting lately. How about you?", + "I've been hanging in there! How about you?", + "Life's been throwing curveballs, but I'm rolling with it. How about you?", + "Just trying to make the most of each day! How about you?", + "Things have been crazy busy! How about you?", + "I've been better, but I'm hanging in there. How about you?", + "Life's been full of surprises! How about you?", + "Not too bad, thanks for asking. How about you?", + "Just trying to keep my head above water! How about you?", + "Things have been good, thanks for asking! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been treating me well! How about you?", + "Not much, just trying to stay positive. How about you?", + "Same old, same old! How about you?", + "Things have been hectic, but I'm managing! How about you?", + "Just trying to stay busy! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old. How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water. How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive. How about you?", + "Just taking it one day at a time. How about you?", + "Life's been an adventure lately! How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking. How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?", + "Not too shabby, thanks for asking! How about you?", + "Just trying to stay sane! How about you?", + "Same old, same old! How about you?", + "Things have been good! How about you?", + "Just trying to keep my head above water! How about you?", + "Life's been treating me well, thanks for asking! How about you?", + "Not much, just trying to stay positive! How about you?", + "Just taking it one day at a time! How about you?", + "Life's been an adventure lately. How about you?", + "Things have been interesting! How about you?" + ] + }, + { + "tag": "hobbies", + "patterns": [ + "What do you do for fun?", + "Got any hobbies?", + "What are your hobbies?", + "What do you like to do in your free time?", + "What are your interests?", + "How do you spend your free time?", + "What do you enjoy doing?", + "Any fun hobbies?" + ], + "responses": [ + "I enjoy reading and playing video games. How about you?", + "I like hiking and cooking. What about you?", + "I love painting and listening to music. What do you like to do?", + "I'm into photography and traveling. What are your hobbies?", + "I spend a lot of time gardening and doing yoga. How about you?", + "I enjoy writing and watching movies. What about you?", + "I like to play sports and learn new things. What do you enjoy doing?", + "I spend my free time drawing and playing the guitar. How about you?" + ] + }, + { + "tag": "recommendations", + "patterns": [ + "Can you recommend a movie?", + "What book should I read?", + "Any good TV shows?", + "Got any music recommendations?", + "What should I watch?", + "Do you know a good restaurant?", + "What's a good place to visit?", + "Any podcast recommendations?" + ], + "responses": [ + "You should watch 'Inception' if you haven't seen it. What kind of movies do you like?", + "I highly recommend 'The Alchemist' by Paulo Coelho. What genres do you enjoy?", + "You should check out 'Breaking Bad'. It's a great show. What shows do you like?", + "I think you'd like 'Imagine Dragons'. What kind of music are you into?", + "Try watching 'Stranger Things'. It's really good. What do you usually watch?", + "There's a great Italian place called 'Luigi's'. Have you been there?", + "You should visit the national park nearby. It's beautiful! Do you like nature?", + "You should listen to 'The Daily' podcast. What podcasts do you listen to?" + ] + }, + { + "tag": "compliments", + "patterns": [ + "You look great today!", + "Nice outfit!", + "I love your style!", + "You're so talented!", + "You have a great sense of humor!", + "You're really smart!", + "You're an amazing friend!", + "I appreciate you!" + ], + "responses": [ + "Thank you so much!", + "That's very kind of you to say!", + "I appreciate the compliment!", + "You just made my day!", + "Thanks, that means a lot!", + "You're so kind!", + "Thanks, I appreciate it!", + "You're awesome too!" + ] + }, + { + "tag": "apologies", + "patterns": [ + "I'm sorry", + "I apologize", + "My bad", + "Sorry about that", + "Please forgive me", + "I didn't mean to", + "I regret that", + "I hope you can forgive me" + ], + "responses": [ + "It's okay, don't worry about it!", + "No problem, it happens!", + "Apology accepted!", + "Don't worry, it's all good!", + "I understand, no worries!", + "It's alright, no big deal!", + "All is forgiven!", + "It's fine, don't stress about it!" + ] + }, + { + "tag": "plans", + "patterns": [ + "What are you up to?", + "Got any plans today?", + "What are you doing?", + "What are you working on?", + "Any plans for tonight?", + "What are you busy with?", + "What's on your agenda?", + "Got any tasks today?" + ], + "responses": [ + "Just working on some projects. How about you?", + "I'm catching up on some reading. What about you?", + "Not much, just relaxing. What are you up to?", + "I'm planning to go for a walk. What are you doing?", + "I'm working on a new hobby. How about you?", + "Just some errands to run. What about you?", + "I'm going to watch a movie later. Any suggestions?", + "I'm just taking it easy today. What are your plans?" + ] + }, + { + "tag": "wellbeing", + "patterns": [ + "How are you feeling?", + "Are you okay?", + "How's your day going?", + "How have you been?", + "You doing alright?", + "Everything good?", + "How's life treating you?", + "How are things?" + ], + "responses": [ + "I'm doing well, thank you! How about you?", + "I'm feeling great! How are you?", + "All good here! How's your day going?", + "I've been good! How about you?", + "Everything's good! Are you alright?", + "Life's treating me well! How about you?", + "I'm doing great! How are things with you?", + "Everything's fine! How about you?" + ] + }, + { + "tag": "empathy", + "patterns": [ + "I'm feeling down", + "I'm sad", + "I've had a bad day", + "I'm stressed", + "I'm upset", + "I'm worried", + "I'm feeling anxious", + "I'm not feeling well" + ], + "responses": [ + "I'm sorry to hear that. Do you want to talk about it?", + "That sounds tough. I'm here for you.", + "I'm here if you need to vent. What's going on?", + "It's okay to feel that way. How can I help?", + "I'm sorry you're feeling this way. Want to talk about it?", + "That sounds really hard. I'm here for you.", + "I'm sorry you're going through this. How can I help?", + "Take it easy. I'm here to listen." + ] + }, + { + "tag": "celebrations", + "patterns": [ + "It's my birthday", + "I got a promotion", + "I'm getting married", + "I'm celebrating", + "I have good news", + "I achieved my goal", + "It's a special day", + "I'm so happy" + ], + "responses": [ + "Happy Birthday! That's awesome!", + "Congratulations on your promotion! Well deserved!", + "That's amazing! Congratulations on getting married!", + "That's wonderful! What are you celebrating?", + "That's great news! I'm so happy for you!", + "Congratulations on achieving your goal! Well done!", + "Sounds like a special day! Congrats!", + "That's fantastic! I'm so happy for you!" + ] + }, + { + "tag": "future_plans", + "patterns": [ + "What are your future plans?", + "What do you want to achieve?", + "Got any goals?", + "What's your next step?", + "What are you aiming for?", + "Any future ambitions?", + "What's on your bucket list?", + "What do you want to do next?" + ], + "responses": [ + "I'm focused on improving and learning new things. How about you?", + "I'm aiming to work on more interesting projects. What about you?", + "I have some goals in mind, mostly around personal growth. How about you?", + "I'm planning to travel more and explore new places. What about you?", + "I'm working towards becoming better at my hobbies. How about you?", + "I have some ambitions around helping others. What about you?", + "I'm looking forward to new challenges and opportunities. How about you?", + "My bucket list includes a lot of travel and learning new skills. What about yours?" + ] + }, + { + "tag": "sports", + "patterns": [ + "Do you like sports?", + "What's your favorite sport?", + "Tell me about sports", + "Do you follow any sports?", + "What sports do you like?", + "Do you watch sports?", + "Can you tell me about sports?", + "What is your favorite sport?" + ], + "responses": [ + "I'm an AI, so I don't play or watch sports, but I can help you with sports information.", + "I don't have a favorite sport, but I can provide information about different sports.", + "I can help you with details about various sports. Which sport are you interested in?", + "I'm here to provide information about sports. Ask me anything!", + "I can assist with sports-related queries. What would you like to know?", + "I can provide stats, rules, and trivia about various sports.", + "Sports are fascinating! How can I assist you with sports information?" + ] + }, + { + "tag": "food", + "patterns": [ + "What's your favorite food?", + "Tell me about food", + "Do you eat?", + "What food do you like?", + "What's your favorite dish?", + "Do you have a favorite food?", + "Tell me about your favorite dish", + "Do you enjoy any food?" + ], + "responses": [ + "I don't eat, but I can help you with information about food.", + "I don't have a favorite food, but I can provide details about different cuisines.", + "I can assist with food-related queries. What would you like to know?", + "I'm an AI and don't eat, but I love talking about food!", + "Food is fascinating! How can I assist you with food-related information?", + "I can provide recipes, cooking tips, and information about various cuisines.", + "Ask me anything about food, and I'll do my best to provide useful information." + ] + }, + { + "tag": "movies", + "patterns": [ + "What's your favorite movie?", + "Tell me about movies", + "Do you watch movies?", + "What movies do you like?", + "Can you recommend a movie?", + "Do you have a favorite movie?", + "Tell me about your favorite movie", + "Do you enjoy watching movies?" + ], + "responses": [ + "I don't watch movies, but I can help you find information about them.", + "I can provide details about various movies. Which one are you interested in?", + "I'm an AI, so I don't watch movies, but I can help you with movie recommendations.", + "Ask me about any movie, and I'll try to provide information.", + "I can assist with movie-related queries. What would you like to know?", + "I can give you information about directors, actors, and movie plots.", + "Movies are a great topic! What would you like to know about them?" + ] + }, + { + "tag": "music", + "patterns": [ + "What kind of music do you like?", + "What's your favorite song?", + "Do you like music?", + "Tell me about your favorite music", + "Can you recommend a song?", + "What's your favorite genre?", + "Do you listen to music?", + "Who is your favorite artist?" + ], + "responses": [ + "I don't listen to music, but I can help you find information about it.", + "I can provide details about different music genres. Which one are you interested in?", + "I can help you with music recommendations. What kind of music do you like?", + "Ask me about any song or artist, and I'll try to provide information.", + "Music is a great topic! How can I assist you with music-related queries?", + "I can give you information about different artists, songs, and genres.", + "Tell me your favorite genre, and I'll try to recommend some songs." + ] + }, + { + "tag": "technology", + "patterns": [ + "Tell me about technology", + "What's new in tech?", + "Do you know about technology?", + "What's your favorite technology?", + "Can you help me with tech news?", + "What tech trends are popular?", + "Tell me about the latest gadgets", + "What do you think about technology?" + ], + "responses": [ + "Technology is evolving rapidly, and I can help you with the latest trends.", + "I can provide information about new tech gadgets and innovations.", + "Ask me about any technology topic, and I'll try to provide information.", + "I can assist with tech news and updates. What would you like to know?", + "Technology is fascinating! How can I help you with tech-related queries?", + "I can give you details about the latest devices, software, and tech trends.", + "Let me know what tech topic you're interested in, and I'll provide some insights." + ] + }, + { + "tag": "travel", + "patterns": [ + "Tell me about travel", + "What's your favorite place?", + "Do you like traveling?", + "Can you recommend a travel destination?", + "What's the best place to visit?", + "Do you have a favorite travel spot?", + "Tell me about your travel experiences", + "What's a good place for vacation?" + ], + "responses": [ + "I don't travel, but I can help you find information about travel destinations.", + "I can provide details about various travel spots. Which place are you interested in?", + "Travel is exciting! How can I assist you with travel-related queries?", + "Ask me about any destination, and I'll try to provide information.", + "I can help you with travel recommendations and tips.", + "Traveling is a wonderful topic! What would you like to know about it?", + "I can give you information about different tourist attractions and travel experiences." + ] + }, + { + "tag": "books", + "patterns": [ + "What's your favorite book?", + "Do you like reading?", + "Can you recommend a book?", + "Tell me about your favorite author", + "What's a good book to read?", + "Do you have any book recommendations?", + "What's your favorite genre?", + "Tell me about books" + ], + "responses": [ + "I don't read, but I can help you find information about books.", + "I can provide details about different books and authors. Which one are you interested in?", + "Ask me about any book, and I'll try to provide information.", + "I can assist with book recommendations. What genre do you like?", + "Books are a great topic! How can I help you with book-related queries?", + "I can give you information about different authors and literary works.", + "Let me know your favorite genre, and I'll try to recommend some books." + ] + }, + { + "tag": "news", + "patterns": [ + "What's the latest news?", + "Tell me about current events", + "Do you know any news?", + "What's happening in the world?", + "Can you give me a news update?", + "What's new in the news?", + "Tell me the current news", + "What's the breaking news?" + ], + "responses": [ + "I don't have access to real-time news updates, but you can check your favorite news website.", + "I'm unable to provide live news updates. Please refer to a news app or website.", + "I don't have current news information. Please check an online news source.", + "I'm sorry, I can't provide news updates right now. Try checking a news service.", + "I don't have access to the latest news. Please check a news website or app.", + "For real-time news, it's best to refer to a trusted news source.", + "I can't give you live news updates, but there are many news websites that can." + ] + }, + { + "tag": "history", + "patterns": [ + "Tell me about history", + "What's your favorite historical event?", + "Do you know about history?", + "Can you tell me a historical fact?", + "What's an interesting historical event?", + "Do you have a favorite historical figure?", + "Tell me a historical story", + "What's a famous historical event?" + ], + "responses": [ + "History is full of fascinating events. What would you like to know?", + "I can provide information about different historical events and figures.", + "Ask me about any historical topic, and I'll try to provide information.", + "History is a great subject! How can I assist you with historical queries?", + "I can give you details about various historical events and people.", + "Let me know what historical topic you're interested in, and I'll provide some insights.", + "History is full of interesting stories. What would you like to hear about?" + ] + }, + { + "tag": "science", + "patterns": [ + "Tell me about science", + "What's your favorite scientific fact?", + "Do you know about science?", + "Can you tell me a scientific fact?", + "What's an interesting scientific discovery?", + "Do you have a favorite scientist?", + "Tell me a science fact", + "What's a famous scientific discovery?" + ], + "responses": [ + "Science is a vast field. What specific topic are you interested in?", + "I can provide information about different scientific discoveries and facts.", + "Ask me about any scientific topic, and I'll try to provide information.", + "Science is fascinating! How can I assist you with science-related queries?", + "I can give you details about various scientific fields and discoveries.", + "Let me know what scientific topic you're interested in, and I'll provide some insights.", + "Science has many interesting facts. What would you like to know about?" + ] + }, + { + "tag": "flirting", + "patterns": [ + "You're so attractive", + "I can't stop thinking about you", + "You drive me crazy", + "You have the most beautiful eyes", + "You're irresistible", + "I'm so drawn to you", + "You have a way with words", + "You make my heart race" + ], + "responses": [ + "You're so attractive too!", + "I can't stop thinking about you either!", + "You drive me crazy too!", + "You have the most beautiful eyes too!", + "You're irresistible too!", + "I'm so drawn to you as well!", + "You have a way with words too!", + "You make my heart race too!" + ] + }, + { + "tag": "motivation", + "patterns": [ + "I need some motivation", + "Can you motivate me?", + "I need encouragement", + "Help me stay motivated", + "Give me some inspiration", + "I need a pep talk", + "Can you inspire me?", + "I need to stay focused" + ], + "responses": [ + "You can do this! I believe in you!", + "Stay focused and keep pushing forward!", + "Remember why you started. You got this!", + "Believe in yourself and all that you are!", + "Keep your eyes on the prize. You can do it!", + "Stay strong and keep going. You're doing great!", + "Every step you take brings you closer to your goal!", + "You have the power to achieve anything you set your mind to!" + ] + }, + { + "tag": "advice", + "patterns": [ + "I need some advice", + "Can you give me advice?", + "What should I do?", + "Help me make a decision", + "Can you guide me?", + "I need some guidance", + "What do you recommend?", + "Any suggestions?" + ], + "responses": [ + "What specifically do you need advice on?", + "I'm here to help. Tell me more about the situation.", + "Let's break it down together. What's the issue?", + "I'm listening. What's on your mind?", + "Think about what matters most to you. What are your options?", + "Consider the pros and cons. What feels right to you?", + "Trust your instincts. What do you think you should do?", + "Sometimes talking it through helps. Let's discuss it." + ] + }, + { + "tag": "goal_setting", + "patterns": [ + "I want to set some goals", + "Help me set my goals", + "Can you help me with goal setting?", + "I need help setting goals", + "How do I set goals?", + "What goals should I set?", + "Can you guide me in setting goals?", + "I need to set some personal goals" + ], + "responses": [ + "Start with what you want to achieve. What's important to you?", + "Break your goals down into smaller, manageable steps.", + "Make sure your goals are specific and measurable.", + "Set a timeline for your goals. When do you want to achieve them?", + "Stay flexible and adjust your goals as needed.", + "Write your goals down and review them regularly.", + "Stay focused and keep track of your progress.", + "Celebrate your achievements along the way." + ] + }, + { + "tag": "career_guidance", + "patterns": [ + "I need career advice", + "Can you guide me in my career?", + "How do I advance in my career?", + "What should I do for my career?", + "I need help with my career path", + "Can you help me with career choices?", + "What career steps should I take?", + "Can you provide career guidance?" + ], + "responses": [ + "Identify your strengths and passions. What are you good at?", + "Consider further education or training. What skills do you need?", + "Network and build connections in your field.", + "Stay updated with industry trends. What are the latest developments?", + "Seek advice from mentors and professionals.", + "Be open to new opportunities and experiences.", + "Set clear career goals and create a plan to achieve them.", + "Stay persistent and keep working towards your goals." + ] + }, + { + "tag": "learning", + "patterns": [ + "I want to learn something new", + "Can you help me learn?", + "What should I learn?", + "I need help with studying", + "Can you guide me in learning?", + "How do I study effectively?", + "What are some learning tips?", + "I want to improve my learning skills" + ], + "responses": [ + "Identify what you want to learn. What interests you?", + "Create a study plan and stick to it.", + "Use various resources like books, videos, and online courses.", + "Practice regularly and apply what you learn.", + "Take breaks and avoid burnout. Study in short, focused sessions.", + "Stay curious and ask questions. Seek help when needed.", + "Review and revise regularly to reinforce your learning.", + "Stay motivated and celebrate your progress." + ] + }, + { + "tag": "time_management", + "patterns": [ + "I need help with time management", + "Can you give me time management tips?", + "How do I manage my time?", + "I need to be more organized", + "Can you help me manage my time?", + "How do I plan my day?", + "What are some time management strategies?", + "I want to be more productive" + ], + "responses": [ + "Prioritize your tasks and focus on what's important.", + "Create a daily schedule and stick to it.", + "Break tasks into smaller steps and set deadlines.", + "Avoid multitasking and focus on one task at a time.", + "Take breaks and rest to avoid burnout.", + "Use tools like calendars and to-do lists.", + "Eliminate distractions and stay focused.", + "Review your progress and adjust your plan as needed." + ] + }, + { + "tag": "confidence_boost", + "patterns": [ + "I need a confidence boost", + "Can you help me be more confident?", + "I lack confidence", + "I need to boost my self-esteem", + "Can you help me with my confidence?", + "How do I become more confident?", + "What are some confidence tips?", + "I want to feel more self-assured" + ], + "responses": [ + "Believe in yourself and your abilities.", + "Focus on your strengths and accomplishments.", + "Set realistic goals and work towards achieving them.", + "Practice positive self-talk and affirmations.", + "Surround yourself with supportive and positive people.", + "Take care of your physical and mental well-being.", + "Face your fears and step out of your comfort zone.", + "Celebrate your successes, no matter how small." + ] + }, + { + "tag": "stress_management", + "patterns": [ + "I need help with stress", + "Can you give me stress management tips?", + "I'm feeling stressed", + "How do I manage stress?", + "I need to relax", + "Can you help me de-stress?", + "What are some stress-relief techniques?", + "I want to reduce my stress" + ], + "responses": [ + "Take deep breaths and practice mindfulness.", + "Engage in physical activities like walking or yoga.", + "Take breaks and rest to recharge.", + "Talk to someone you trust about your stress.", + "Practice relaxation techniques like meditation.", + "Stay organized and manage your time effectively.", + "Avoid caffeine and alcohol. Eat a balanced diet.", + "Focus on positive thoughts and practice gratitude." + ] + }, + { + "tag": "appreciation", + "patterns": [ + "Thank you for being in my life", + "I appreciate everything you do", + "You make me a better person", + "I'm so grateful for you", + "I appreciate you so much", + "You're my rock", + "Thank you for your love", + "I'm lucky to have you" + ], + "responses": [ + "I'm so grateful for you too!", + "I appreciate everything you do too!", + "You make me a better person as well!", + "I'm so grateful for you too!", + "I appreciate you so much too!", + "You're my rock as well!", + "Thank you for your love too!", + "I'm lucky to have you too!" + ] + }, + { + "tag": "expressing_love", + "patterns": [ + "I love you", + "You mean so much to me", + "I'm in love with you", + "You are my everything", + "I adore you", + "I can't imagine my life without you", + "You make me so happy", + "I cherish you" + ], + "responses": [ + "I love you too!", + "You mean the world to me!", + "I'm so in love with you!", + "You are everything to me!", + "I adore you too!", + "I can't imagine my life without you either!", + "You make me incredibly happy!", + "I cherish you too!" + ] + }, + { + "tag": "missing_you", + "patterns": [ + "I miss you", + "Wish you were here", + "I can't wait to see you", + "I miss your smile", + "I miss your voice", + "I miss your touch", + "I think about you all the time", + "I miss being with you" + ], + "responses": [ + "I miss you too!", + "I wish you were here with me!", + "I can't wait to see you either!", + "I miss your smile too!", + "I miss hearing your voice!", + "I miss your touch too!", + "I think about you all the time too!", + "I miss being with you too!" + ] + }, + { + "tag": "support", + "patterns": [ + "I'm here for you", + "You can count on me", + "I'll always support you", + "You can lean on me", + "I'm with you through thick and thin", + "I'll be by your side", + "I'll help you through this", + "You have my support", + "You're not alone", + "I'm here to listen", + "I've got your back", + "You can talk to me anytime", + "I'll stand by you", + "I'll lend you my ear", + "I'll support you no matter what", + "I'm here to support you", + "You're in good company", + "I'll be your rock", + "I'll be your shoulder to cry on", + "I'm here to offer my support", + "You're not in this alone", + "I'm here to help", + "You're part of my support system", + "I'll stand with you", + "You can rely on me", + "I'm here to lend a helping hand", + "I'll be your sounding board", + "I'll be here for you", + "You're not by yourself", + "I'll be your pillar of strength", + "I'll be here to lift you up", + "You can trust me to support you", + "I'm here as your ally", + "I'll be your champion", + "You're part of my circle of support", + "I'll be your advocate", + "I'll be here to encourage you", + "You can depend on me", + "I'll be here to cheer you on", + "You're surrounded by support", + "I'll be your cheerleader", + "I'll be here to stand by you", + "You can confide in me", + "I'll be your strength", + "I'll be your unwavering support", + "You're not facing this alone", + "I'll be here to bolster you", + "I'll be your anchor", + "You're part of my support network", + "I'll be your backbone", + "I'll be your safety net", + "You're not in this by yourself", + "I'll be here to back you up", + "I'll be your source of support", + "You're not on your own", + "I'll be here to prop you up", + "I'll be your rock of support", + "You're not walking this path alone", + "I'll be here to provide assistance", + "I'll be your support system", + "You're not navigating this journey solo", + "I'll be here to provide guidance" + ], + "responses": [ + "I'm here for you too!", + "You can count on me as well!", + "I'll always support you too!", + "You can lean on me as well!", + "I'm with you through thick and thin too!", + "I'll be by your side as well!", + "I'll help you through this too!", + "You have my support as well!", + "You're not alone in this!", + "I'm here to listen and support you!", + "I've got your back too!", + "You can talk to me anytime, I'm here for you!", + "I'll stand by you no matter what!", + "I'll lend you my ear and my support!", + "I'll support you no matter what challenges you face!", + "I'm here to offer my unwavering support!", + "You're in good company, I'm here for you!", + "I'll be your rock in times of need!", + "I'll be your shoulder to cry on whenever you need it!", + "I'm here to offer my support and encouragement!", + "You're not in this alone, I'm here with you!", + "I'm here to help and support you in any way I can!", + "You're part of my support system, I'll be here for you!", + "I'll stand with you through thick and thin!", + "You can rely on me to provide support whenever you need it!", + "I'm here to lend a helping hand whenever you need it!", + "I'll be your sounding board to listen and support you!", + "I'll be here for you whenever you need someone to talk to!", + "You're not by yourself, I'm here with you!", + "I'll be your pillar of strength to lean on!", + "I'll be here to lift you up whenever you're feeling down!", + "You can trust me to support you through anything!", + "I'm here as your ally to support you in any way I can!", + "I'll be your champion to cheer you on!", + "You're part of my circle of support, I'm here for you!", + "I'll be your advocate to stand up for you!", + "I'll be here to encourage and support you every step of the way!", + "You can depend on me to provide support whenever you need it!", + "I'll be here to cheer you on and celebrate your successes!", + "You're surrounded by support, I'll be here for you!", + "I'll be your cheerleader to motivate and inspire you!", + "I'll be here to stand by you through whatever challenges you face!", + "You can confide in me, I'm here to support you!", + "I'll be your strength to lean on whenever you need it!", + "I'll be your unwavering support no matter what!", + "You're not facing this alone, I'm here with you!", + "I'll be here to bolster your spirits whenever you're feeling down!", + "I'll be your anchor to keep you grounded!", + "You're part of my support network, I'll be here for you!", + "I'll be your backbone to support you through anything!", + "I'll be your safety net to catch you if you fall!", + "You're not in this by yourself, I'm here with you!", + "I'll be here to back you up whenever you need it!", + "I'll be your source of support and encouragement!", + "You're not on your own, I'm here for you!", + "I'll be here to prop you up whenever you need it!", + "I'll be your rock of support to rely on whenever you need it!", + "You're not walking this path alone, I'm here with you!", + "I'll be here to provide assistance and support whenever you need it!", + "I'll be your support system to help you through anything!", + "You're not navigating this journey solo, I'm here to support you!", + "I'll be here to provide guidance and support whenever you need it!" + ] + }, + { + "tag": "personal_experience", + "patterns": [ + "Tell me about a time when you learned something new", + "Describe an experience where you faced a challenge", + "Have you ever had to solve a difficult problem?", + "What's a memorable moment from your journey?", + "Can you share an experience where you grew?" + ], + "responses": [ + "As an AI, I don't have personal experiences, but I can share stories or information on any topic you like.", + "I don't have personal memories, but I can provide information or tell you a story.", + "I don't have experiences like humans do, but I can share interesting facts or stories." + ] + }, + { + "tag": "relationship_advice", + "patterns": [ + "How can I improve my relationship?", + "What are some tips for effective communication with my partner?", + "Can you give me advice on resolving conflicts?", + "How do I build a strong relationship?", + "What are the keys to a healthy relationship?" + ], + "responses": [ + "Improving a relationship often involves open communication, empathy, and spending quality time together.", + "Effective communication includes active listening and expressing your thoughts and feelings honestly.", + "Conflict resolution can benefit from understanding each other's perspectives and finding common ground." + ] + }, + { + "tag": "investment_advice", + "patterns": [ + "How should I start investing?", + "What are some good investment strategies?", + "Can you give me advice on diversifying my portfolio?", + "How do I invest in stocks?", + "What are the risks of investing in cryptocurrency?" + ], + "responses": [ + "Starting with investments often involves researching and understanding different types of assets and their risks.", + "Diversifying your portfolio can help spread risk across different types of investments.", + "Investing in stocks typically involves buying shares in companies you believe will grow over time." + ] + }, + { + "tag": "coding_best_practices", + "patterns": [ + "What are some best practices for coding?", + "How can I improve my programming skills?", + "Can you give me tips for writing clean code?", + "What are common coding mistakes to avoid?", + "How do I become a better software developer?", + "Tell me about code optimization techniques", + "What tools can help me with code debugging?", + "How do I write secure code?", + "Can you recommend coding resources for beginners?", + "What are some strategies for code refactoring?", + "How do I handle technical debt in my projects?", + "Tell me about continuous integration and deployment practices" + ], + "responses": [ + "Best practices for coding include writing clear, concise code and following consistent naming conventions.", + "Improving programming skills can involve regular practice, learning new languages, and reviewing other people's code.", + "Writing clean code involves keeping it simple, avoiding redundancy, and ensuring it is well-documented.", + "Common coding mistakes to avoid include using unclear variable names, not handling errors properly, and writing overly complex code.", + "To become a better software developer, focus on learning new technologies, collaborating with others, and seeking feedback on your code.", + "Code optimization techniques include identifying and removing bottlenecks, using efficient algorithms, and minimizing resource usage.", + "Tools like debuggers, profilers, and logging frameworks can help with code debugging.", + "To write secure code, ensure input validation, avoid hardcoded passwords, and keep libraries and frameworks updated.", + "Coding resources for beginners include online tutorials, coding bootcamps, and community forums like Stack Overflow.", + "Code refactoring strategies include simplifying complex code, improving code readability, and removing duplication.", + "To handle technical debt, prioritize refactoring, allocate time for cleanup tasks, and involve stakeholders in decision-making.", + "Continuous integration and deployment practices involve automating build processes, running tests automatically, and deploying code frequently." + ] + }, + { + "tag": "healthy_lifestyle", + "patterns": [ + "What are some tips for maintaining a healthy lifestyle?", + "How can I improve my diet?", + "What are the benefits of regular exercise?", + "Can you give me advice on healthy living?", + "How do I stay fit and healthy?" + ], + "responses": [ + "Maintaining a healthy lifestyle includes a balanced diet, regular exercise, and sufficient sleep.", + "Improving your diet can involve eating more whole foods and reducing processed foods.", + "Regular exercise has many benefits, including improved mood, stronger muscles, and better overall health." + ] + }, + { + "tag": "nutrition", + "patterns": [ + "What are the benefits of a balanced diet?", + "How can I ensure I'm getting enough vitamins?", + "Can you give me tips on healthy eating?", + "What are some nutrient-rich foods?", + "How do I create a healthy meal plan?" + ], + "responses": [ + "A balanced diet provides the necessary nutrients your body needs to function properly.", + "Ensuring you get enough vitamins can involve eating a variety of fruits and vegetables.", + "Healthy eating includes focusing on whole, unprocessed foods and staying hydrated." + ] + }, + { + "tag": "pet_care", + "patterns": [ + "How do I take care of a new puppy?", + "What should I feed my cat?", + "Can you give me tips on pet training?", + "What are the signs of a healthy pet?", + "How often should I take my pet to the vet?" + ], + "responses": [ + "Taking care of a new puppy involves providing proper nutrition, training, and regular veterinary check-ups.", + "Feeding your cat a balanced diet of high-quality cat food is important for their health.", + "Pet training can involve consistency, positive reinforcement, and patience." + ] + } + ] +} \ No newline at end of file diff --git a/New_APIs/ChatBot_API/package-lock.json b/New_APIs/ChatBot_API/package-lock.json new file mode 100644 index 0000000..b7dd166 --- /dev/null +++ b/New_APIs/ChatBot_API/package-lock.json @@ -0,0 +1,2189 @@ +{ + "name": "ChatApi", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "dependencies": { + "express": "^4.19.2", + "fs": "^0.0.1-security", + "natural": "^7.0.6", + "path": "^0.12.7" + } + }, + "node_modules/@mongodb-js/saslprep": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.7.tgz", + "integrity": "sha512-dCHW/oEX0KJ4NjDULBo3JiOaK5+6axtpBbS+ao2ZInoAL9/YRQLhXzSNAFz7hP4nzLkIqsfYAK/PDE3+XHny0Q==", + "dependencies": { + "sparse-bitfield": "^3.0.3" + } + }, + "node_modules/@redis/bloom": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz", + "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/client": { + "version": "1.5.16", + "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.5.16.tgz", + "integrity": "sha512-X1a3xQ5kEMvTib5fBrHKh6Y+pXbeKXqziYuxOUo1ojQNECg4M5Etd1qqyhMap+lFUOAh8S7UYevgJHOm4A+NOg==", + "dependencies": { + "cluster-key-slot": "1.1.2", + "generic-pool": "3.9.0", + "yallist": "4.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@redis/graph": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz", + "integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/json": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz", + "integrity": "sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/search": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.6.tgz", + "integrity": "sha512-mZXCxbTYKBQ3M2lZnEddwEAks0Kc7nauire8q20oA0oA/LoA+E/b5Y5KZn232ztPb1FkIGqo12vh3Lf+Vw5iTw==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@redis/time-series": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz", + "integrity": "sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==", + "peerDependencies": { + "@redis/client": "^1.0.0" + } + }, + "node_modules/@types/webidl-conversions": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", + "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==" + }, + "node_modules/@types/whatwg-url": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz", + "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==", + "dependencies": { + "@types/webidl-conversions": "*" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/afinn-165": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz", + "integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/afinn-165-financialmarketnews": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz", + "integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/apparatus": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz", + "integrity": "sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg==", + "dependencies": { + "sylvester": ">= 0.0.8" + }, + "engines": { + "node": ">=0.2.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bson": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-6.7.0.tgz", + "integrity": "sha512-w2IquM5mYzYZv6rs3uN2DZTOBe2a0zXLj53TGDqwF4l6Sz/XsISrisXOJihArF9+BZ6Cq/GjVht7Sjfmri7ytQ==", + "engines": { + "node": ">=16.20.1" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fs": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==" + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/generic-pool": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", + "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/kareem": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz", + "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==", + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memjs": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/memjs/-/memjs-1.3.2.tgz", + "integrity": "sha512-qUEg2g8vxPe+zPn09KidjIStHPtoBO8Cttm8bgJFWWabbsjQ9Av9Ky+6UcvKx6ue0LLb/LEhtcyQpRyKfzeXcg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==" + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mongodb": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.6.2.tgz", + "integrity": "sha512-ZF9Ugo2JCG/GfR7DEb4ypfyJJyiKbg5qBYKRintebj8+DNS33CyGMkWbrS9lara+u+h+yEOGSRiLhFO/g1s1aw==", + "dependencies": { + "@mongodb-js/saslprep": "^1.1.5", + "bson": "^6.7.0", + "mongodb-connection-string-url": "^3.0.0" + }, + "engines": { + "node": ">=16.20.1" + }, + "peerDependencies": { + "@aws-sdk/credential-providers": "^3.188.0", + "@mongodb-js/zstd": "^1.1.0", + "gcp-metadata": "^5.2.0", + "kerberos": "^2.0.1", + "mongodb-client-encryption": ">=6.0.0 <7", + "snappy": "^7.2.2", + "socks": "^2.7.1" + }, + "peerDependenciesMeta": { + "@aws-sdk/credential-providers": { + "optional": true + }, + "@mongodb-js/zstd": { + "optional": true + }, + "gcp-metadata": { + "optional": true + }, + "kerberos": { + "optional": true + }, + "mongodb-client-encryption": { + "optional": true + }, + "snappy": { + "optional": true + }, + "socks": { + "optional": true + } + } + }, + "node_modules/mongodb-connection-string-url": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.1.tgz", + "integrity": "sha512-XqMGwRX0Lgn05TDB4PyG2h2kKO/FfWJyCzYQbIhXUxz7ETt0I/FqHjUeqj37irJ+Dl1ZtU82uYyj14u2XsZKfg==", + "dependencies": { + "@types/whatwg-url": "^11.0.2", + "whatwg-url": "^13.0.0" + } + }, + "node_modules/mongoose": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.4.1.tgz", + "integrity": "sha512-odQ2WEWGL3hb0Qex+QMN4eH6D34WdMEw7F1If2MGABApSDmG9cMmqv/G1H6WsXmuaH9mkuuadW/WbLE5+tHJwA==", + "dependencies": { + "bson": "^6.7.0", + "kareem": "2.6.3", + "mongodb": "6.6.2", + "mpath": "0.9.0", + "mquery": "5.0.0", + "ms": "2.1.3", + "sift": "17.1.3" + }, + "engines": { + "node": ">=16.20.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mongoose" + } + }, + "node_modules/mongoose/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/mpath": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", + "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mquery": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", + "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", + "dependencies": { + "debug": "4.x" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/mquery/node_modules/debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/mquery/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/natural": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/natural/-/natural-7.0.6.tgz", + "integrity": "sha512-A33KRdvPnrtZbyN4HRQDHGQbajpzYqxwPNrOtScZitCrTHzTWDd7KIjv1woweauLMRMn9R4w56ZflfYW3+ubEw==", + "dependencies": { + "afinn-165": "^1.0.2", + "afinn-165-financialmarketnews": "^3.0.0", + "apparatus": "^0.0.10", + "dotenv": "^16.4.5", + "memjs": "^1.3.2", + "mongoose": "^8.2.0", + "pg": "^8.11.3", + "redis": "^4.6.13", + "safe-stable-stringify": "^2.2.0", + "stopwords-iso": "^1.1.0", + "sylvester": "^0.0.12", + "underscore": "^1.9.1", + "uuid": "^9.0.1", + "wordnet-db": "^3.1.11" + }, + "engines": { + "node": ">=0.4.10" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/pg": { + "version": "8.11.5", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", + "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", + "dependencies": { + "pg-connection-string": "^2.6.4", + "pg-pool": "^3.6.2", + "pg-protocol": "^1.6.1", + "pg-types": "^2.1.0", + "pgpass": "1.x" + }, + "engines": { + "node": ">= 8.0.0" + }, + "optionalDependencies": { + "pg-cloudflare": "^1.1.1" + }, + "peerDependencies": { + "pg-native": ">=3.0.1" + }, + "peerDependenciesMeta": { + "pg-native": { + "optional": true + } + } + }, + "node_modules/pg-cloudflare": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", + "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + "optional": true + }, + "node_modules/pg-connection-string": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", + "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" + }, + "node_modules/pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/pg-pool": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", + "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", + "peerDependencies": { + "pg": ">=8.0" + } + }, + "node_modules/pg-protocol": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", + "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" + }, + "node_modules/pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "dependencies": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "dependencies": { + "split2": "^4.1.0" + } + }, + "node_modules/postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "dependencies": { + "xtend": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/redis": { + "version": "4.6.14", + "resolved": "https://registry.npmjs.org/redis/-/redis-4.6.14.tgz", + "integrity": "sha512-GrNg/e33HtsQwNXL7kJT+iNFPSwE1IPmd7wzV3j4f2z0EYxZfZE7FVTmUysgAtqQQtg5NXF5SNLR9OdO/UHOfw==", + "dependencies": { + "@redis/bloom": "1.2.0", + "@redis/client": "1.5.16", + "@redis/graph": "1.1.1", + "@redis/json": "1.0.6", + "@redis/search": "1.1.6", + "@redis/time-series": "1.0.5" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", + "engines": { + "node": ">=10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sift": { + "version": "17.1.3", + "resolved": "https://registry.npmjs.org/sift/-/sift-17.1.3.tgz", + "integrity": "sha512-Rtlj66/b0ICeFzYTuNvX/EF1igRbbnGSvEyT79McoZa/DeGhMyC5pWKOEsZKnpkqtSeovd5FL/bjHWC3CIIvCQ==" + }, + "node_modules/sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "dependencies": { + "memory-pager": "^1.0.2" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stopwords-iso": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz", + "integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sylvester": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz", + "integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==", + "engines": { + "node": ">=0.2.6" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tr46": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", + "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", + "dependencies": { + "punycode": "^2.3.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-url": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", + "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", + "dependencies": { + "tr46": "^4.1.1", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/wordnet-db": { + "version": "3.1.14", + "resolved": "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz", + "integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==", + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + }, + "dependencies": { + "@mongodb-js/saslprep": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.7.tgz", + "integrity": "sha512-dCHW/oEX0KJ4NjDULBo3JiOaK5+6axtpBbS+ao2ZInoAL9/YRQLhXzSNAFz7hP4nzLkIqsfYAK/PDE3+XHny0Q==", + "requires": { + "sparse-bitfield": "^3.0.3" + } + }, + "@redis/bloom": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@redis/bloom/-/bloom-1.2.0.tgz", + "integrity": "sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==", + "requires": {} + }, + "@redis/client": { + "version": "1.5.16", + "resolved": "https://registry.npmjs.org/@redis/client/-/client-1.5.16.tgz", + "integrity": "sha512-X1a3xQ5kEMvTib5fBrHKh6Y+pXbeKXqziYuxOUo1ojQNECg4M5Etd1qqyhMap+lFUOAh8S7UYevgJHOm4A+NOg==", + "requires": { + "cluster-key-slot": "1.1.2", + "generic-pool": "3.9.0", + "yallist": "4.0.0" + } + }, + "@redis/graph": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@redis/graph/-/graph-1.1.1.tgz", + "integrity": "sha512-FEMTcTHZozZciLRl6GiiIB4zGm5z5F3F6a6FZCyrfxdKOhFlGkiAqlexWMBzCi4DcRoyiOsuLfW+cjlGWyExOw==", + "requires": {} + }, + "@redis/json": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@redis/json/-/json-1.0.6.tgz", + "integrity": "sha512-rcZO3bfQbm2zPRpqo82XbW8zg4G/w4W3tI7X8Mqleq9goQjAGLL7q/1n1ZX4dXEAmORVZ4s1+uKLaUOg7LrUhw==", + "requires": {} + }, + "@redis/search": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@redis/search/-/search-1.1.6.tgz", + "integrity": "sha512-mZXCxbTYKBQ3M2lZnEddwEAks0Kc7nauire8q20oA0oA/LoA+E/b5Y5KZn232ztPb1FkIGqo12vh3Lf+Vw5iTw==", + "requires": {} + }, + "@redis/time-series": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@redis/time-series/-/time-series-1.0.5.tgz", + "integrity": "sha512-IFjIgTusQym2B5IZJG3XKr5llka7ey84fw/NOYqESP5WUfQs9zz1ww/9+qoz4ka/S6KcGBodzlCeZ5UImKbscg==", + "requires": {} + }, + "@types/webidl-conversions": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", + "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==" + }, + "@types/whatwg-url": { + "version": "11.0.5", + "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz", + "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==", + "requires": { + "@types/webidl-conversions": "*" + } + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "afinn-165": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/afinn-165/-/afinn-165-1.0.4.tgz", + "integrity": "sha512-7+Wlx3BImrK0HiG6y3lU4xX7SpBPSSu8T9iguPMlaueRFxjbYwAQrp9lqZUuFikqKbd/en8lVREILvP2J80uJA==" + }, + "afinn-165-financialmarketnews": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/afinn-165-financialmarketnews/-/afinn-165-financialmarketnews-3.0.0.tgz", + "integrity": "sha512-0g9A1S3ZomFIGDTzZ0t6xmv4AuokBvBmpes8htiyHpH7N4xDmvSQL6UxL/Zcs2ypRb3VwgCscaD8Q3zEawKYhw==" + }, + "apparatus": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/apparatus/-/apparatus-0.0.10.tgz", + "integrity": "sha512-KLy/ugo33KZA7nugtQ7O0E1c8kQ52N3IvD/XgIh4w/Nr28ypfkwDfA67F1ev4N1m5D+BOk1+b2dEJDfpj/VvZg==", + "requires": { + "sylvester": ">= 0.0.8" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "bson": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/bson/-/bson-6.7.0.tgz", + "integrity": "sha512-w2IquM5mYzYZv6rs3uN2DZTOBe2a0zXLj53TGDqwF4l6Sz/XsISrisXOJihArF9+BZ6Cq/GjVht7Sjfmri7ytQ==" + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + } + }, + "cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==" + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" + }, + "cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "requires": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + } + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "requires": { + "get-intrinsic": "^1.2.4" + } + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" + }, + "express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "fs": { + "version": "0.0.1-security", + "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", + "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==" + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "generic-pool": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.9.0.tgz", + "integrity": "sha512-hymDOu5B53XvN4QT9dBmZxPX4CWhBPPLguTZ9MMFeFa/Kg0xWVfylOVNlJji/E7yTZWFd/q9GO5TxDLq156D7g==" + }, + "get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "requires": { + "es-define-property": "^1.0.0" + } + }, + "has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" + } + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "kareem": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz", + "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + }, + "memjs": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/memjs/-/memjs-1.3.2.tgz", + "integrity": "sha512-qUEg2g8vxPe+zPn09KidjIStHPtoBO8Cttm8bgJFWWabbsjQ9Av9Ky+6UcvKx6ue0LLb/LEhtcyQpRyKfzeXcg==" + }, + "memory-pager": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", + "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==" + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mongodb": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.6.2.tgz", + "integrity": "sha512-ZF9Ugo2JCG/GfR7DEb4ypfyJJyiKbg5qBYKRintebj8+DNS33CyGMkWbrS9lara+u+h+yEOGSRiLhFO/g1s1aw==", + "requires": { + "@mongodb-js/saslprep": "^1.1.5", + "bson": "^6.7.0", + "mongodb-connection-string-url": "^3.0.0" + } + }, + "mongodb-connection-string-url": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.1.tgz", + "integrity": "sha512-XqMGwRX0Lgn05TDB4PyG2h2kKO/FfWJyCzYQbIhXUxz7ETt0I/FqHjUeqj37irJ+Dl1ZtU82uYyj14u2XsZKfg==", + "requires": { + "@types/whatwg-url": "^11.0.2", + "whatwg-url": "^13.0.0" + } + }, + "mongoose": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.4.1.tgz", + "integrity": "sha512-odQ2WEWGL3hb0Qex+QMN4eH6D34WdMEw7F1If2MGABApSDmG9cMmqv/G1H6WsXmuaH9mkuuadW/WbLE5+tHJwA==", + "requires": { + "bson": "^6.7.0", + "kareem": "2.6.3", + "mongodb": "6.6.2", + "mpath": "0.9.0", + "mquery": "5.0.0", + "ms": "2.1.3", + "sift": "17.1.3" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "mpath": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", + "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==" + }, + "mquery": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", + "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", + "requires": { + "debug": "4.x" + }, + "dependencies": { + "debug": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", + "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "natural": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/natural/-/natural-7.0.6.tgz", + "integrity": "sha512-A33KRdvPnrtZbyN4HRQDHGQbajpzYqxwPNrOtScZitCrTHzTWDd7KIjv1woweauLMRMn9R4w56ZflfYW3+ubEw==", + "requires": { + "afinn-165": "^1.0.2", + "afinn-165-financialmarketnews": "^3.0.0", + "apparatus": "^0.0.10", + "dotenv": "^16.4.5", + "memjs": "^1.3.2", + "mongoose": "^8.2.0", + "pg": "^8.11.3", + "redis": "^4.6.13", + "safe-stable-stringify": "^2.2.0", + "stopwords-iso": "^1.1.0", + "sylvester": "^0.0.12", + "underscore": "^1.9.1", + "uuid": "^9.0.1", + "wordnet-db": "^3.1.11" + } + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" + }, + "on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "requires": { + "ee-first": "1.1.1" + } + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "requires": { + "process": "^0.11.1", + "util": "^0.10.3" + } + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "pg": { + "version": "8.11.5", + "resolved": "https://registry.npmjs.org/pg/-/pg-8.11.5.tgz", + "integrity": "sha512-jqgNHSKL5cbDjFlHyYsCXmQDrfIX/3RsNwYqpd4N0Kt8niLuNoRNH+aazv6cOd43gPh9Y4DjQCtb+X0MH0Hvnw==", + "requires": { + "pg-cloudflare": "^1.1.1", + "pg-connection-string": "^2.6.4", + "pg-pool": "^3.6.2", + "pg-protocol": "^1.6.1", + "pg-types": "^2.1.0", + "pgpass": "1.x" + } + }, + "pg-cloudflare": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz", + "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==", + "optional": true + }, + "pg-connection-string": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.4.tgz", + "integrity": "sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==" + }, + "pg-int8": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", + "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==" + }, + "pg-pool": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.6.2.tgz", + "integrity": "sha512-Htjbg8BlwXqSBQ9V8Vjtc+vzf/6fVUuak/3/XXKA9oxZprwW3IMDQTGHP+KDmVL7rtd+R1QjbnCFPuTHm3G4hg==", + "requires": {} + }, + "pg-protocol": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.6.1.tgz", + "integrity": "sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==" + }, + "pg-types": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", + "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", + "requires": { + "pg-int8": "1.0.1", + "postgres-array": "~2.0.0", + "postgres-bytea": "~1.0.0", + "postgres-date": "~1.0.4", + "postgres-interval": "^1.1.0" + } + }, + "pgpass": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", + "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==", + "requires": { + "split2": "^4.1.0" + } + }, + "postgres-array": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", + "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==" + }, + "postgres-bytea": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", + "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==" + }, + "postgres-date": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", + "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==" + }, + "postgres-interval": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", + "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", + "requires": { + "xtend": "^4.0.0" + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" + }, + "proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "requires": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + } + }, + "punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "redis": { + "version": "4.6.14", + "resolved": "https://registry.npmjs.org/redis/-/redis-4.6.14.tgz", + "integrity": "sha512-GrNg/e33HtsQwNXL7kJT+iNFPSwE1IPmd7wzV3j4f2z0EYxZfZE7FVTmUysgAtqQQtg5NXF5SNLR9OdO/UHOfw==", + "requires": { + "@redis/bloom": "1.2.0", + "@redis/client": "1.5.16", + "@redis/graph": "1.1.1", + "@redis/json": "1.0.6", + "@redis/search": "1.1.6", + "@redis/time-series": "1.0.5" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-stable-stringify": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", + "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "requires": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "requires": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "requires": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + } + }, + "sift": { + "version": "17.1.3", + "resolved": "https://registry.npmjs.org/sift/-/sift-17.1.3.tgz", + "integrity": "sha512-Rtlj66/b0ICeFzYTuNvX/EF1igRbbnGSvEyT79McoZa/DeGhMyC5pWKOEsZKnpkqtSeovd5FL/bjHWC3CIIvCQ==" + }, + "sparse-bitfield": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", + "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", + "requires": { + "memory-pager": "^1.0.2" + } + }, + "split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "stopwords-iso": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stopwords-iso/-/stopwords-iso-1.1.0.tgz", + "integrity": "sha512-I6GPS/E0zyieHehMRPQcqkiBMJKGgLta+1hREixhoLPqEA0AlVFiC43dl8uPpmkkeRdDMzYRWFWk5/l9x7nmNg==" + }, + "sylvester": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/sylvester/-/sylvester-0.0.12.tgz", + "integrity": "sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "tr46": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", + "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", + "requires": { + "punycode": "^2.3.0" + } + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + }, + "util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + } + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + }, + "uuid": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", + "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" + }, + "whatwg-url": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", + "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", + "requires": { + "tr46": "^4.1.1", + "webidl-conversions": "^7.0.0" + } + }, + "wordnet-db": { + "version": "3.1.14", + "resolved": "https://registry.npmjs.org/wordnet-db/-/wordnet-db-3.1.14.tgz", + "integrity": "sha512-zVyFsvE+mq9MCmwXUWHIcpfbrHHClZWZiVOzKSxNJruIcFn2RbY55zkhiAMMxM8zCVSmtNiViq8FsAZSFpMYag==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } +} diff --git a/New_APIs/ChatBot_API/package.json b/New_APIs/ChatBot_API/package.json new file mode 100644 index 0000000..ac3b08b --- /dev/null +++ b/New_APIs/ChatBot_API/package.json @@ -0,0 +1,8 @@ +{ + "dependencies": { + "express": "^4.19.2", + "fs": "^0.0.1-security", + "natural": "^7.0.6", + "path": "^0.12.7" + } +}