{"info":{"_postman_id":"8f935b88-4e07-e363-84f9-d2ba7c895c3e","name":"HealthOS","description":"<html><head></head><body><p>Welcome to HealthOS API! </p>\n<p>HealthOS allows you to create world class healthcare applications, leveraging our data source of medicines (generics and branded), food items (with nutrition value), various excercises and physical activities, lab tests, diseases etc.</p>\n<p>The API is organized around REST. All requests should be made over SSL. All request and response bodies, including errors, are encoded in JSON.</p>\n<p>We also have some specific language bindings to make integration easier. You can switch the programming language of the examples with the tabs in the top right.</p>\n<p>To play around with a few examples, we recommend a REST client called Postman. Simply tap the button below to import a pre-made collection of examples.</p>\n<p><a href=\"https://www.getpostman.com/collections/6617940a8da16269d0b3\">Postman </a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"3967924","collectionId":"8f935b88-4e07-e363-84f9-d2ba7c895c3e","publishedId":"RW1Yq1oQ","public":true,"customColor":null,"publishDate":"2018-04-25T12:22:45.000Z"},"item":[{"name":"00- Authentication","item":[{"name":"Request Access Token","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","","postman.setGlobalVariable(\"access_token\", jsonData.access_token);"]}}],"id":"74b577d4-c300-c7b9-0bde-2f5bb41acba4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"grant_type\": \"client_credentials\",\n  \"client_id\": \"{{client_id}}\",\n  \"client_secret\": \"{{client_secret}}\",\n  \"scope\": \"public read write\"\n}"},"url":"http://{{host}}/api/v1/oauth/token.json","description":"<p>All datapoints API are protected and can only be accessed using a valid <strong> access_token </strong></p>\n<p>To get an <strong>access_token</strong> you need <strong>client_id</strong> and <strong>client_secret</strong>  which you get find on you application dashbord. To know more <a href=\"https://learn.healthos.co/knowledge-base/how-do-i-get-my-client-id-and-secret/\">Read here</a></p>\n<p>This access token must be set as header for all further API endpoints</p>\n<pre> Authorization: Bearer your_access_token </pre>\n","urlObject":{"protocol":"http","path":["api","v1","oauth","token.json"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0495f29c-b425-b5ce-a8d8-c10aa7d7df49","name":"Invalid Credentials","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"grant_type\": \"client_credentials\",\n  \"client_id\": \"{{client_id}}s\",\n  \"client_secret\": \"{{client_secret}}\",\n  \"scope\": \"public read write\"\n}"},"url":"http://{{host}}/api/v1/oauth/token.json"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Credentials","key":"Access-Control-Allow-Credentials","value":"true","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"name":"Access-Control-Allow-Methods","key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Access-Control-Expose-Headers","key":"Access-Control-Expose-Headers","value":"","description":"Lets a server whitelist headers that browsers are allowed to access."},{"name":"Access-Control-Max-Age","key":"Access-Control-Max-Age","value":"1728000","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"name":"Cache-Control","key":"Cache-Control","value":"no-store","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"173","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Fri, 17 Feb 2017 17:59:58 GMT","description":"The date and time that the message was sent"},{"name":"Pragma","key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Doorkeeper\", error=\"invalid_client\", error_description=\"Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method.\"","description":"Indicates the authentication scheme that should be used to access the requested entity."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Request-Id","key":"X-Request-Id","value":"ad3a1f6d-42f3-417e-8541-7e4149a17279","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"8.515251","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"8696","body":"{\"error\":\"invalid_client\",\"error_description\":\"Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method.\"}"},{"id":"e430fcd0-abc0-3f22-e024-8c1e61f0bb6d","name":"Successful Authentication","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"grant_type\": \"client_credentials\",\n  \"client_id\": \"{{client_id}}\",\n  \"client_secret\": \"{{client_secret}}\",\n  \"scope\": \"public read write\"\n}"},"url":"http://{{host}}/api/v1/oauth/token.json"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Access-Control-Allow-Credentials","key":"Access-Control-Allow-Credentials","value":"true","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"name":"Access-Control-Allow-Methods","key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"name":"Access-Control-Allow-Origin","key":"Access-Control-Allow-Origin","value":"chrome-extension://fhbjgbiflinjbdggehcddcbncdddomop","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"name":"Access-Control-Expose-Headers","key":"Access-Control-Expose-Headers","value":"","description":"Lets a server whitelist headers that browsers are allowed to access."},{"name":"Access-Control-Max-Age","key":"Access-Control-Max-Age","value":"1728000","description":"Indicates how long the results of a preflight request can be cached in seconds."},{"name":"Cache-Control","key":"Cache-Control","value":"no-store","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"157","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Fri, 17 Feb 2017 18:04:31 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"cc01e23fbe13386cab4d7462bd65d4cb\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Pragma","key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Request-Id","key":"X-Request-Id","value":"80f0017f-fb55-4fe4-90af-01208b10ce93","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.203770","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"1161","body":"{\"access_token\":\"749e85568d6f7baaa595c9e2a9a9b563478729d2638edf57af499c42353a5847\",\"token_type\":\"bearer\",\"scope\":\"public read write\",\"created_at\":1487354670}"}],"_postman_id":"74b577d4-c300-c7b9-0bde-2f5bb41acba4"}],"id":"46bc8a1a-a558-c119-c212-7bbcec842b0f","description":"<p>OAuth 2.0 is a protocol that lets your app request and store data to HealhOS platform.</p>\n<p>You'll need to create an app before getting started. To know more how to create an app - <a href=\"https://learn.healthos.co/knowledge-base/creating-first-application/\"> read here</a></p>\n<p>A registered app is assigned a unique Client ID and Client Secret which will be used in the OAuth flow. The Client Secret should not be shared.</p>\n<br />\n<img src=\"https://a.slack-edge.com/bfaba/img/api/slack_oauth_flow_diagram@2x.png\" /> ","_postman_id":"46bc8a1a-a558-c119-c212-7bbcec842b0f"},{"name":"01- Autocomplete","item":[{"name":"Medicines","id":"e287f3ab-9eec-265d-fbfb-a0acc3e37733","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/medicines/brands/{{medicine_query}}","description":"<p>Search a medicine by name</p>\n","urlObject":{"protocol":"http","path":["api","v1","autocomplete","medicines","brands","{{medicine_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"bd2a762d-0995-e102-90e0-1322285f3274","name":"Autocomplete Medicines","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/medicines/brands/{{medicine_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"2954","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:47:27 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"620eaa900966a38e0b6a32ae552762a8\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"911","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"3b8ffa1d-4ab5-455f-9392-9fee73f19841","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"1.286552","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"2261","body":"[{\"name\":\"CROCIN 100MG DROP\",\"form\":\"ML of drop\",\"standardUnits\":1,\"packageForm\":\"packet\",\"price\":32.27,\"size\":\"15 ML drop\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"100mg/1ml\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab30c91c126fe056dc97d\",\"medicine_id\":\"461z6V\",\"search_score\":7.3046875},{\"name\":\"CROCIN 125 MG SUSPENSION\",\"form\":\"ML of suspension\",\"standardUnits\":1,\"packageForm\":\"bottle\",\"price\":37.77,\"size\":\"60 ML suspension\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"125 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab09f91c126fe056b693f\",\"medicine_id\":\"63GIV\",\"search_score\":7.0074286},{\"name\":\"CROCIN 650 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":26.93,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"650 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab3ca91c126fe056e835d\",\"medicine_id\":\"wGz46\",\"search_score\":7.0074286},{\"name\":\"CROCIN PAIN RELIEF TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":49.39,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Caffeine\",\"strength\":\"50 mg\"},{\"name\":\"Paracetamol\",\"strength\":\"650 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab2e791c126fe056da4f3\",\"medicine_id\":\"46431w\",\"search_score\":6.6484766},{\"name\":\"CROCIN DS SUSPENSION\",\"form\":\"ML of suspension\",\"standardUnits\":1,\"packageForm\":\"bottle\",\"price\":45.0,\"size\":\"60 ML suspension\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"240mg/5ml\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab2db91c126fe056d9947\",\"medicine_id\":\"4661Q1\",\"search_score\":6.6484766},{\"name\":\"CROCIN ADVANCE 500 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":13.07,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"500 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586aad9791c126fe056870f1\",\"medicine_id\":\"II364w\",\"search_score\":5.817417},{\"name\":\"CROCIN COLD \\u0026 FLU MAX  TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":45.32,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"500 mg\"},{\"name\":\"Caffeine\",\"strength\":\"32 mg\"},{\"name\":\"Phenylephrine\",\"strength\":\"10 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586aad9791c126fe056870eb\",\"medicine_id\":\"II364Q\",\"search_score\":5.4018874}]"}],"_postman_id":"e287f3ab-9eec-265d-fbfb-a0acc3e37733"},{"name":"Generics","id":"65cb3796-9765-7dde-2f29-598ebaf2e97e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/medicines/generics/{{generic_query}}","description":"<p>Search a generic by name</p>\n","urlObject":{"protocol":"http","path":["api","v1","autocomplete","medicines","generics","{{generic_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"23da5468-fad7-d6b0-1093-12bd5390a141","name":"Autocomplete Generics","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/medicines/generics/{{generic_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"194","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:47:53 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"f4ce8b4b2e23e5941ee5e890dec9a396\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"910","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"82e83c76-1ce0-49e7-b67b-5330eef1c75f","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.224689","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"762","body":"[{\"name\":\"Paracetamol\",\"generic_id\":\"6IGVzw\",\"therauptic_uses\":[\"Headache\",\"Joint pain\",\"dental pain\",\"Nerve pain\",\"muscular pain\",\"Menstural pain\",\"Migraine\",\"Fever\"],\"search_score\":10.071899}]"}],"_postman_id":"65cb3796-9765-7dde-2f29-598ebaf2e97e"},{"name":"Food Items","id":"10a9e0cb-0ef3-e0e0-592b-255b758754c8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/food/items/{{food_item_query}}","description":"<p>Search a food item by name</p>\n","urlObject":{"protocol":"http","path":["api","v1","autocomplete","food","items","{{food_item_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"372bcaca-2215-1902-6178-f329ead8018e","name":"Autocomplete Food Item","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/food/items/{{food_item_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1922","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:48:26 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"a98c32e54fc6fef4d4eb4244dd272aee\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"909","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"62fc48e7-2974-4f0d-a930-04c48fc59ef4","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.247926","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"795","body":"[{\"calories\":140,\"item_name\":\"Bombay Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zIqO43hMI3Q0mw3wGM1ww3M1\",\"food_item_id\":\"zQ343V1MO1hwGzMOIhV0413G\",\"search_score\":9.646431},{\"calories\":230,\"item_name\":\"Aloo Paratha\",\"serving_qty\":1.0,\"serving_unit\":\"piece\",\"food_brand_id\":\"zVz3hzmVhGhqqmzMQMOI1q14\",\"food_item_id\":\"z1V4O0I0Iqm63ImOImzhz403\",\"search_score\":9.646431},{\"calories\":100,\"item_name\":\"Aloo Palak\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zIqO43OzI3Q0mw3wGM1w11wM\",\"food_item_id\":\"zIq60OOVhhwO00IIIz1Gqmz4\",\"search_score\":9.323974},{\"calories\":150,\"item_name\":\"Aloo Matar\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zIqO43hMI3Q0mw3wGM1ww3M1\",\"food_item_id\":\"zIh40hmOw3h4mQq0MVq0Ih60\",\"search_score\":9.323974},{\"calories\":265,\"item_name\":\"Aloo Paratha\",\"serving_qty\":1.0,\"serving_unit\":\"piece\",\"food_brand_id\":\"zzII1Im6zQGV303630mq3zVO\",\"food_item_id\":\"zz10003q4mVIGzqh3qOOQ3V1\",\"search_score\":9.323974},{\"calories\":320,\"item_name\":\"Aloo Chaat\",\"serving_qty\":1.0,\"serving_unit\":\"pouch\",\"food_brand_id\":\"zIqO41IOI3Q0mw3wGM1wOz13\",\"food_item_id\":\"z6zmh4MwQww1MzGzGGGGGV64\",\"search_score\":9.323974},{\"calories\":107,\"item_name\":\"Saag Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"pouch portion\",\"food_brand_id\":\"zIqO43hwI3Q0mw3wGM1wwQqV\",\"food_item_id\":\"z1G46zm40MhMIIIG6IO4mz34\",\"search_score\":9.32207},{\"calories\":101,\"item_name\":\"Bombay Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zzz1qQQOV34mMIG0Vqm6qVOh\",\"food_item_id\":\"z3MIw1I4q3mQ0qG06m1z4hwI\",\"search_score\":9.32207},{\"calories\":124,\"item_name\":\"Aloo Puri\",\"serving_qty\":1.0,\"serving_unit\":\"piece\",\"food_brand_id\":\"zVQ0Vh6GMzhVqh0zImGhOhV4\",\"food_item_id\":\"zzVMIOQOQG6V36VI64Vz310O\",\"search_score\":9.32207},{\"calories\":240,\"item_name\":\"Dum Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"tray\",\"food_brand_id\":\"zVQ0Vh6GMzhVqh0zImGhOhV4\",\"food_item_id\":\"zQwqhwh3qV3hOqMq636zQmV6\",\"search_score\":9.32207}]"}],"_postman_id":"10a9e0cb-0ef3-e0e0-592b-255b758754c8"},{"name":"Lab Tests","id":"3171858c-04a8-f0c2-3607-2fa181a2e338","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/lab_tests/{{lab_test_query}}","description":"<p>Search a Lab test by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","autocomplete","lab_tests","{{lab_test_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"52c4913e-af7f-f837-ebac-b3e374a39a23","name":"Autocomplete Lab Tests","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/lab_tests/{{lab_test_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"11095","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:48:43 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"5070116226bbce7b74c6282a4ecc0aa5\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"908","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"c05f7314-bb14-45ef-b879-f45af859db1f","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.230855","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"741","body":"[{\"alternate_name\":\"HHV7, Human Herpes Virus Type 7 PCR\",\"lab_test_data\":{\"Ordering information\":\"If this test is urgent please contact the Medical Microbiologist or phone Microbiology Department.\",\"Alternate names\":\"HHV7, Human Herpes Virus Type 7 PCR\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"H7PCR\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Minimum Adult Volume\":\"4 mL\",\"Frequency\":\"As required\",\"External Laboratory\":\"VIDRL (Victorian Infectious Diseases Reference Laboratory)\"},\"lab_test_id\":\"IzzG\",\"lab_test_name\":\"Herpes Virus Type 7 PCR\",\"id\":\"58a67e996b4ef218c7e7377b\",\"search_score\":0.03027539},{\"alternate_name\":\"Hb, HGB\",\"lab_test_data\":{\"Alternate names\":\"Hb, HGB\",\"Laboratory\":\"Haematology\",\"Test Code\":\"Hb\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Minimum Adult Volume\":\"4 mL\",\"Frequency\":\"Daily\",\"Reference Interval\":\"\\u003ctable cellspacing=\\\"1\\\" cellpadding=\\\"1\\\" width=\\\"100%\\\" summary=\\\"\\\" border=\\\"1\\\"\\u003e\\r\\n    \\u003ctbody\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u003cspan style=\\\"FONT-WEIGHT: bold\\\"\\u003eMale\\u003c/span\\u003e\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u003cspan style=\\\"FONT-WEIGHT: bold\\\"\\u003eFemale\\u003c/span\\u003e\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u003cspan style=\\\"FONT-WEIGHT: bold\\\"\\u003eAll\\u003c/span\\u003e\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eAdult\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e130 - 180 g/L\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e115 - 165 g/L\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003ePregnancy\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e110 - 160 g/L\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e3 to 12 yrs\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e115 - 145 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e6 mths to 3 yrs\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e105 - 135 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e2 to 6 mths\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e95 - 135 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e1 to 2 mths\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e90 - 140 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e14 d to 1 mth\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e100 - 180 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e7 to 14 days\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e125 - 205 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e3 to 7 days\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e135 - 215 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e1 to 3 dys\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e145 - 225 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eFirst day\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e135 - 195 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n    \\u003c/tbody\\u003e\\r\\n\\u003c/table\\u003e\"},\"lab_test_id\":\"IIVV\",\"lab_test_name\":\"Haemoglobin\",\"id\":\"58a67e8f6b4ef218c7e72e9e\",\"search_score\":0.029289149},{\"alternate_name\":\"C282Y, Cys282Tyr, H63D, HFE, His63Asp\",\"lab_test_data\":{\"Ordering information\":\"Please indicate if the patient is a known or suspected case or a relative of a known case.\",\"Alternate names\":\"C282Y, Cys282Tyr, H63D, HFE, His63Asp\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HEMPCR\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"A dedicated collection is required.\",\"Minimum Adult Volume\":\"5 mL\",\"Frequency\":\"Once a fortnight\",\"Storage Instructions\":\"Store specimen at Room Temperature\",\"External Laboratory\":\"Molecular Haematology, Melbourne Health Shared Pathology Service\"},\"lab_test_id\":\"IIV4\",\"lab_test_name\":\"Haemochromatosis Gene PCR Test\",\"id\":\"58a67e8f6b4ef218c7e72e98\",\"search_score\":0.029224712},{\"alternate_name\":\"HAV Serology, Hep A\",\"lab_test_data\":{\"Ordering information\":\"Hepatitis A is classified as a Group A condition by the Department of Health and as such requires immediate notification by telephone (1300651160) or fax (1300651170) upon initial diagnosis (presumptive or confirmed), followed by written notification within five days.\",\"Alternate names\":\"HAV Serology, Hep A\",\"Laboratory\":\"Biochemistry\",\"Test Code\":\"HAVG, HAVM\",\"Specimen types\":\"Blood\",\"Container types\":\"Serum tube (white top)\",\"Collection Instructions\":\"Can be combined with other Chemistry tests requiring same tube type.\",\"Minimum Adult Volume\":\"5 mL\",\"Notes\":\"If urgent performed at any time.\",\"Frequency\":\"Monday - Friday\",\"Reference Interval\":\"Negative\"},\"lab_test_id\":\"IIQV\",\"lab_test_name\":\"Hepatitis A Serology, IgG or IgM\",\"id\":\"58a67e906b4ef218c7e72f0a\",\"search_score\":0.026911458},{\"alternate_name\":\"Hg\",\"lab_test_data\":{\"Ordering information\":\"For testing of industrial exposure to mercury.  For organic forms of exposure, eg through food ingestion, blood testing is used.\",\"Alternate names\":\"Hg\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"MERCU\",\"Specimen types\":\"Spot Urine24 hr Urine\",\"Container types\":\"70ml Sterile Container (yellow top)24 hr Urine Plain Bottle\",\"Minimum Adult Volume\":\"10 mL\",\"Reference Interval\":\"\\u003c 30 nmol/L\",\"External Laboratory\":\"Biochemistry, Sydney South West Pathology Service, Royal Prince Alfred Hospital\"},\"lab_test_id\":\"I63G\",\"lab_test_name\":\"Mercury - Urine\",\"id\":\"58a67e926b4ef218c7e73156\",\"search_score\":0.026911458},{\"alternate_name\":\"HLA\",\"lab_test_data\":{\"Ordering information\":\"If the request is on a baby who has food or milk in the half hour prior to swab collection, the swab will not contain baby DNA, rendering the test null and void.  \\r\\nResults include HLA for narcolepsy and HLA DQ2/8 (Coeliac HLA)\\r\\nAt Austin Health this test must be ordered on a paper request form. It cannot be ordered via Cerner. \",\"Alternate names\":\"HLA\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HLA\",\"Specimen types\":\"Blood\",\"Container types\":\"9ml ACD (yellow)\",\"Collection Instructions\":\"ACD tubes available from Specimen CollectionADULT: 2 x 10 mL specimens in ACD tubes requiredCHILD (\\u003c12 yrs): 2 - 5 mL blood in ACD tube requiredBABY: Collect a buccal swab (inside cheek) using a sterile dry swab.  Rub inside cheek solidly for 10 secs on both cheeks using the same swab.  The baby should not have food or milk for half an hour beforehand, however water can be given.Please collect Mon - Thurs only.  Do not use these specimens for any other tests.  Place specimens into separate transport bag\",\"Notes\":\"Results are sent to the Requesting Doctor\",\"External Laboratory\":\"Tissue Typing Laboratory, Red Cross Blood Bank\"},\"lab_test_id\":\"IVVV\",\"lab_test_name\":\"Tissue Typing\",\"id\":\"58a67e976b4ef218c7e73523\",\"search_score\":0.026911458},{\"alternate_name\":\"A1ATP\",\"lab_test_data\":{\"Ordering information\":\"Serum Alpha 1 anti-trypsin should be performed prior to phenotyping.\\r\\nPhenotyping only indicated when total alpha 1 anti-trypsin level is low.\",\"Alternate names\":\"A1ATP\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"A1ATP1\",\"Specimen types\":\"Blood\",\"Container types\":\"Serum tube (white top)\",\"Collection Instructions\":\"Can combine collection with other tests requiring the same tube type.\",\"Minimum Adult Volume\":\"1 mL\",\"Paediatric Minimum Volume\":\"0.5 mL\",\"Frequency\":\"Once a week\",\"Storage Instructions\":\"Store at 4 deg C\",\"External Laboratory\":\"Biochemistry, Monash Health Pathology\"},\"lab_test_id\":\"164\",\"lab_test_name\":\"Alpha 1 Antitrypsin Phenotype\",\"id\":\"58a67e9f6b4ef218c7e73c93\",\"search_score\":0.026911458},{\"alternate_name\":\"HAVPCR, HAVRNA, Hep A\",\"lab_test_data\":{\"Ordering information\":\"Prior to ordering, please contact the Microbiology Registrar on Tel: 03 9496 5295\",\"Alternate names\":\"HAVPCR, HAVRNA, Hep A\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HAVPCR\",\"Cerner Test Name\":\"Hepatitis A NAD\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"Collect at room temperaturePlease collect in a 9 mL tube.\\r\\nThis test can be collected in the same tube with all Hepatitis PCR/NAD/genotype/resistance testing, EXCEPT Hepatitis B and C Viral Loads.\\r\\nAll these tests cannot be added on to previously collected serum tubes.\\r\\n \",\"Minimum Adult Volume\":\"9 mL\",\"Frequency\":\"As required\",\"Reference Interval\":\"Negative\",\"Storage Instructions\":\"Store at 4 deg C\",\"External Laboratory\":\"VIDRL (Victorian Infectious Diseases Reference Laboratory)\"},\"lab_test_id\":\"IQ34\",\"lab_test_name\":\"Hepatitis A PCR\",\"id\":\"58a67e9c6b4ef218c7e73a35\",\"search_score\":0.026877979},{\"alternate_name\":\"Pl Hb, Pl HGB, PLHB\",\"lab_test_data\":{\"Alternate names\":\"Pl Hb, Pl HGB, PLHB\",\"Laboratory\":\"Haematology\",\"Test Code\":\"PLHB\",\"Specimen types\":\"Blood\",\"Container types\":\"Lithium Heparin - Gel (green and yellow)\",\"Collection Instructions\":\"Collect specimen without using tourniquet.\",\"Minimum Adult Volume\":\"5 mL\",\"Frequency\":\"Monday - Friday\",\"Reference Interval\":\"\\u003c 4 mg/dL\"},\"lab_test_id\":\"I4V4\",\"lab_test_name\":\"Plasma Haemoglobin\",\"id\":\"58a67e946b4ef218c7e732f5\",\"search_score\":0.023547526},{\"alternate_name\":\"Haemoglobin H, Hb H\",\"lab_test_data\":{\"Ordering information\":\"Morphological detection of hbH bodies in supravital stained blood smear\",\"Alternate names\":\"Haemoglobin H, Hb H\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HBH\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"Can combine with other tests for Haemoglobinopathies requiring an EDTA tube.\",\"Minimum Adult Volume\":\"4 mL\",\"Paediatric Minimum Volume\":\"1 mL\",\"Notes\":\"Blood must be fresh (ie same day).\",\"Frequency\":\"As required\",\"Reference Interval\":\"Negative\"},\"lab_test_id\":\"IIVz\",\"lab_test_name\":\"Haemoglobin H\",\"id\":\"58a67e906b4ef218c7e72ea4\",\"search_score\":0.02343132}]"}],"_postman_id":"3171858c-04a8-f0c2-3607-2fa181a2e338"},{"name":"Diseases","id":"0fd78861-b540-9dac-a9c5-f8f051068777","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/diseases/{{disease_query}}","description":"<p>Search a disease by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","autocomplete","diseases","{{disease_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ad78453e-24da-583f-8d17-5ce5a5bcf2da","name":"Autocomplete Diseases","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/diseases/{{disease_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"4086","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:48:58 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"d87ac950d70522fd33e7069823681abd\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"907","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"b8bd69f9-451e-4eb8-b90f-fc4570c6f076","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.098483","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"591","body":"[{\"disease_name\":\"Malaria\",\"disease_cat\":\"Rare diseases, Infectious diseases\",\"disease_info\":\"Malaria is a serious disease caused by a parasite. you get it when an infected mosquito bites you. malaria is a major cause of death worldwide, but it is almost wiped out in the united states. the disease is mostly a problem in developing countries with warm climates. if you travel to these countries, you are at risk. there are four different types of malaria caused by four related parasites. the most deadly type occurs in africa south of the sahara desert. malaria symptoms include chills, flu-like symptoms, fever, vomiting, diarrhea, and jaundice. a blood test can diagnose it. it can be life-threatening. however, you can treat malaria with drugs. the type of drug depends on which kind of malaria you have and where you were infected. malaria can be prevented. when traveling to malaria-prone regions see your doctor for medicines that protect you wear insect repellent with deet cover up sleep under mosquito netting centers for disease control and prevention\",\"disease_id\":\"I13V1\",\"search_score\":12.985109},{\"disease_name\":\"Malaria Prevention (Malaria Prophylaxis)\",\"disease_cat\":\"\",\"disease_info\":\"Action taken to prevent Malaria, a parasitic disease characterized by fever, chills, and anemia.\",\"disease_id\":\"64z4I\",\"search_score\":8.483103},{\"disease_name\":\"Plasmodium Malariae Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria caused by a parasite plasmodium malariae, which is marked by recurrence of paroxysms at 72-hour intervals.\",\"disease_id\":\"6G1V1\",\"search_score\":7.9121737},{\"disease_name\":\"Mixed Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"Mixed Malaria, also known as malaria fever by more than one parasite, is related to malaria and acalculous cholecystitis. An important gene associated with Mixed Malaria is LRSAM1 (leucine rich repeat and sterile alpha motif containing 1).\",\"disease_id\":\"6G1GV\",\"search_score\":6.9934397},{\"disease_name\":\"Malaria, Severe\",\"disease_cat\":\"Infectious diseases, Rare diseases\",\"disease_info\":\"Malaria, Severe, also known as malaria, is related to malaria and sepsis. An important gene associated with Malaria, Severe is CR1 (complement component (3b/4b) receptor 1 (Knops blood group)), and among its related pathways are Tuberculosis and Leishmaniasis. The drugs hydroxychloroquine and hydroxychloroquine sulfate and the compounds prednisolone and mannose have been mentioned in the context of this disorder. Affiliated tissues include liver.\",\"disease_id\":\"Iw1VV\",\"search_score\":6.9934397},{\"disease_name\":\"Cerebral Malaria (CM)\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria that involves neurologic damage resulting from blockage of the blood vessels, caused due to the infection of the red blood cells by plasmodium species.\",\"disease_id\":\"6G634\",\"search_score\":5.99846},{\"disease_name\":\"Plasmodium Ovale Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria characaterized as a relatively mild form caused by a parasite plasmodium ovale, which is characterized by tertian chills and febrile paroxysms, and that ends spontaneously.\",\"disease_id\":\"6G1V6\",\"search_score\":5.99846},{\"disease_name\":\"Plasmodium Vivax Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria that is caused by the protozoan parasite plasmodium vivax, which induces paroxysms at 48-hour intervals.\",\"disease_id\":\"6G6z3\",\"search_score\":5.594752},{\"disease_name\":\"Plasmodium Falciparum Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria described as a severe form of the disease caused by a parasite plasmodium falciparum, which is marked by irrregular recurrence of paroxysms and prolonged or continuous fever.\",\"disease_id\":\"6G4G6\",\"search_score\":5.594752},{\"disease_name\":\"Malaria Due to G6pd Deficiency\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"Malaria Due to G6pd Deficiency An important gene associated with Malaria Due to G6pd Deficiency is G6PD (glucose-6-phosphate dehydrogenase).\",\"disease_id\":\"6Gw3w\",\"search_score\":4.8954077}]"}],"_postman_id":"0fd78861-b540-9dac-a9c5-f8f051068777"},{"name":"Exercises","id":"2735a545-dc93-b07e-1aae-fcb63c83c046","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/exercises/{{exercise_query}}","description":"<p>Search an exercise by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","autocomplete","exercises","{{exercise_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8e56003f-4faa-9f08-1860-03069514a4e6","name":"Autocomplete Exercises","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/autocomplete/exercises/{{exercise_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1821","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 20:25:28 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"c4d9585e966b043e6e00d43476f46cb7\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"711","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"9c82d703-94c9-4796-a3f8-2a71a929416b","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.065253","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"570","body":"[{\"name\":\"Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"51\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGGI\",\"search_score\":1.9117621},{\"name\":\"Side Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"55\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Obliques\",\"exercise_id\":\"IGGV\",\"search_score\":1.3183582},{\"name\":\"Reverse Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"98\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Lower Rectus Abdominis\",\"exercise_id\":\"IGIz\",\"search_score\":1.3183582},{\"name\":\"Ball Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"60\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGQz\",\"search_score\":1.3183582},{\"name\":\"Standing Crunches\",\"category\":\"Cardio\",\"calory_count\":\"34\",\"cardio_subcategory\":\"Other/Miscellaneous\",\"primary_muscle_group\":\"\",\"exercise_id\":\"441w\",\"search_score\":1.3183582},{\"name\":\"Negative Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"85\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"I4VG\",\"search_score\":1.2745243},{\"name\":\"Bench Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"94\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"I3V3\",\"search_score\":1.2745243},{\"name\":\"Clam Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"85\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"Iw4G\",\"search_score\":1.2745243},{\"name\":\"Bicycle Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"64\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGI4\",\"search_score\":1.1948513},{\"name\":\"Machine Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"81\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IG4G\",\"search_score\":1.1948513}]"}],"_postman_id":"2735a545-dc93-b07e-1aae-fcb63c83c046"}],"id":"aa477f59-954c-744e-38dc-4e12a833fb70","description":"<p>Implement \"search-as-you-type\" functionality in your app with Autocomplete API.</p>\n<p>The endpoint currently enables search by name for medicines, generics, food items, lab tests, diseases and excercises.</p>\n","_postman_id":"aa477f59-954c-744e-38dc-4e12a833fb70"},{"name":"02-  Medicines","item":[{"name":"Search Medicines","id":"502b288d-de01-0865-7416-daff326860fd","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/medicines/brands/{{medicine_query}}","description":"<p>Search a medicine by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","medicines","brands","{{medicine_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"e3e564d0-a969-9eae-c11e-5fe5b00f73ed","name":"Search Medicines","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/medicines/brands/{{medicine_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"2954","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:49:25 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"620eaa900966a38e0b6a32ae552762a8\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"905","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"a14d4009-34b9-42b1-8505-2687972c5f42","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.128390","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"612","body":"[{\"name\":\"CROCIN 100MG DROP\",\"form\":\"ML of drop\",\"standardUnits\":1,\"packageForm\":\"packet\",\"price\":32.27,\"size\":\"15 ML drop\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"100mg/1ml\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab30c91c126fe056dc97d\",\"medicine_id\":\"461z6V\",\"search_score\":7.3046875},{\"name\":\"CROCIN 125 MG SUSPENSION\",\"form\":\"ML of suspension\",\"standardUnits\":1,\"packageForm\":\"bottle\",\"price\":37.77,\"size\":\"60 ML suspension\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"125 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab09f91c126fe056b693f\",\"medicine_id\":\"63GIV\",\"search_score\":7.0074286},{\"name\":\"CROCIN 650 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":26.93,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"650 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab3ca91c126fe056e835d\",\"medicine_id\":\"wGz46\",\"search_score\":7.0074286},{\"name\":\"CROCIN PAIN RELIEF TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":49.39,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Caffeine\",\"strength\":\"50 mg\"},{\"name\":\"Paracetamol\",\"strength\":\"650 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab2e791c126fe056da4f3\",\"medicine_id\":\"46431w\",\"search_score\":6.6484766},{\"name\":\"CROCIN DS SUSPENSION\",\"form\":\"ML of suspension\",\"standardUnits\":1,\"packageForm\":\"bottle\",\"price\":45.0,\"size\":\"60 ML suspension\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"240mg/5ml\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586ab2db91c126fe056d9947\",\"medicine_id\":\"4661Q1\",\"search_score\":6.6484766},{\"name\":\"CROCIN ADVANCE 500 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":13.07,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"500 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586aad9791c126fe056870f1\",\"medicine_id\":\"II364w\",\"search_score\":5.817417},{\"name\":\"CROCIN COLD \\u0026 FLU MAX  TABLET\",\"form\":\"tablet\",\"standardUnits\":15,\"packageForm\":\"strip\",\"price\":45.32,\"size\":\"15 tablets\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Paracetamol\",\"strength\":\"500 mg\"},{\"name\":\"Caffeine\",\"strength\":\"32 mg\"},{\"name\":\"Phenylephrine\",\"strength\":\"10 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"id\":\"586aad9791c126fe056870eb\",\"medicine_id\":\"II364Q\",\"search_score\":5.4018874}]"}],"_postman_id":"502b288d-de01-0865-7416-daff326860fd"},{"name":"All Medicines","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","","postman.setGlobalVariable(\"medicine_id\", jsonData[0].medicine_id);"]}}],"id":"3e72df60-edf3-6cac-eea0-80817579a698","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands?page=1&size=10","description":"<p>List all medicines. Use <strong>page</strong> and <strong>size</strong> parameters for pagination</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","brands"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"e6c31619-f50a-e89b-a77a-f656a841287c","name":"All Medicines","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/medicines/brands?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","medicines","brands"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"3301","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 12:52:23 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"4ce56cd12bcbbbcd848465ef160a6c1c\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"904","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"c907f925-98bd-4727-9369-8dbb5886d86e","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.054080","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"1051","body":"[{\"name\":\"TOPINATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":60.0,\"size\":\"30 GM cream\",\"manufacturer\":\"Systopic Laboratories Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGGz\"},{\"name\":\"CLOP 0.05% W/W CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":43.4,\"size\":\"10 GM cream\",\"manufacturer\":\"Zydus Cadila\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05% w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGIG\"},{\"name\":\"TENOVATE 0.05% OINTMENT\",\"form\":\"GM of ointment\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":61.85,\"size\":\"15 GM ointment\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGIQ\"},{\"name\":\"CLOP E CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":79.0,\"size\":\"20 GM cream\",\"manufacturer\":\"Zydus Cadila\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.1%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGG6Q\"},{\"name\":\"CUTISOFT 1% W/W CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":78.0,\"size\":\"10 GM cream\",\"manufacturer\":\"Ipca Laboratories Ltd\",\"constituents\":[{\"name\":\"Hydrocortisone Topical\",\"strength\":\"1% w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGVV\"},{\"name\":\"CLOP 0.05% W/W CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":96.6,\"size\":\"30 GM cream\",\"manufacturer\":\"Zydus Cadila\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05% w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGV3\"},{\"name\":\"ENTOFOAM 2 GM INHALER\",\"form\":\"inhaler\",\"standardUnits\":1,\"packageForm\":\"packet\",\"price\":536.5,\"size\":\"1 inhaler\",\"manufacturer\":\"Cipla Ltd\",\"constituents\":[{\"name\":\"Hydrocortisone\",\"strength\":\"2 gm\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"IGGQ3\"},{\"name\":\"FLUTIVATE 0.05% W/W OINTMENT\",\"form\":\"GM of ointment\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":109.15,\"size\":\"20 GM ointment\",\"manufacturer\":\"Glaxo SmithKline Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Fluticasone (topical)\",\"strength\":\"0.05% w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGG11\"},{\"name\":\"FLOMON 0.1%W/V EYE DROP\",\"form\":\"ML of eye drop\",\"standardUnits\":1,\"packageForm\":\"packet\",\"price\":52.44,\"size\":\"5 ML eye drop\",\"manufacturer\":\"FDC Ltd\",\"constituents\":[{\"name\":\"Fluorometholone\",\"strength\":\"0.1%w/v\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGI6z\"},{\"name\":\"DEDEP 20MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":21.15,\"size\":\"10 tablets\",\"manufacturer\":\"S P Pharma\",\"constituents\":[{\"name\":\"Fluoxetine\",\"strength\":\"20 mg\"}],\"schedule\":{\"category\":\"X\",\"label\":\"It cannot be sold online\"},\"medicine_id\":\"IGI36\"}]"}],"_postman_id":"3e72df60-edf3-6cac-eea0-80817579a698"},{"name":"Medicine","id":"0da1b367-6780-1c7a-228c-9f9647f387ca","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}","description":"<p>Get a medicine by <strong>medicine_id</strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","brands","{{medicine_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2cd2c7f1-26bc-27f7-432a-64f3d0415646","name":"Medicine","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"5603","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:25:59 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"4be6b970ebf09787cf83f57d048a0222\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"862","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"f22db2b0-60f7-485d-8990-0a7ec1775de2","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.108290","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"657","body":"{\"name\":\"TOPINATE 0.05% CREAM\",\"unit_price\":2.0,\"pregnancy\":{\"category\":\"C\",\"label\":\"Weigh risks vs. benefits\",\"description\":\"Research studies with animals found harmful effects on unborn babies. It hasn't been properly studied in humans. The benefits might outweigh the risks even if you're pregnant. Talk with your doctor.\"},\"medicine__id\":\"IGGGz\",\"lactation\":{\"category\":\"N\",\"label\":\"Unknown\",\"description\":\"The FDA hasn't classified this medicine's effects on breastfeeding infant. Talk with your doctor about this medicine if you're pregnant or planning on it.\"},\"package_form\":\"tube\",\"drug_type\":\"drugs\",\"product_group_name\":\"TOPINATE\",\"price\":60.0,\"standard_units\":1,\"form\":\"GM of cream\",\"size\":\"30 GM cream\",\"per_unit\":1,\"manufacturer\":\"Systopic Laboratories Pvt Ltd\",\"mrp\":60.0,\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"components\":[{\"name\":\"Clobetasol Topical\",\"pregnancy_category\":\"C\",\"lactation_category\":\"A\",\"instructions\":\"\\n\\u003cul\\u003e\\n\\u003cli\\u003eDo not use in conditions such as acne, fungal skin infections, e.g. athlete's foot, ringworm, candida skin infections, severe flushing of skin on and around your nose (rosacea), spotty red rash around your mouth (perioral dermatitis), infected skin (unless the infection is being treated with an anti-infective medicine at the same time),itchy skin around the genitals or back passage, itchy skin which is not inflamed, nappy rash, widespread plaque psoriasis (raised, red patches covered with a silvery white buildup of dead skin cells or scale).\\u003c/li\\u003e\\n\\u003cli\\u003eCaution is to be observed while applying the cream on large areas of the body for a long time like few weeks or months.\\u003c/li\\u003e\\n\\u003cli\\u003eIf your skin problem does not improve in 2 to 4 weeks, talk to your doctor.\\u003c/li\\u003e\\n\\u003cli\\u003eIt should not take if patient is allergic to clobetasol propionate or any of its ingredients.\\u003c/li\\u003e\\n\\u003cli\\u003eIt sholud not given to children below 1 year of age.\\u003c/li\\u003e\\n\\u003c/ul\\u003e\\n\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs clobetasol propionate a steroid/ an antifungal/ OTC?\\u003cbr\\u003eClobetasol (also available as cosvate cream, cosvate G) is a potent topical corticosteroid used for the treatment of itching, redness, dryness, inflammation, and discomfort of various scalp and skin conditions. It is not an antifungal. It is available only by prescription given by your doctor\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs clobetasol propionate topical used for hair loss/ does clobetasol help hair growth?\\u003cbr\\u003eClobetasol topical is used for discomfort in various scalp and skin conditions; however not used for treatment of hair loss or hair growth. Always consult your doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eDoes clobetasol propionate topical cause hair loss / thinning of skin?\\u003cbr\\u003eLong-term use of steroids may damage your hair or skin. Always follow the advice of your doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs clobetasol propionate topical good for acne/ athlete's foot/ ringworm?\\u003cbr\\u003eClobetasol topical should not be used for conditions like acne, athlete's foot or ringworm. Always consult your doctor regarding its use.\\u003cbr\\u003e\",\"genric_id\":{\"$oid\":\"58a883a737d1110004950a57\"},\"side_effects\":\"Application site irritation, Burning sensation, Itching\",\"how_it_works\":\"Clobetasol belongs to a class of medications called as corticosteroids. It works by reducing the action of certain chemicals in the body that cause inflammation.\",\"therapeutic_class\":\"DERMA\",\"used_for\":\"Topinate 0.05% cream is used in the treatment of allergic disorders, skin disorders and oral lichen planus \",\"strength\":\"0.05%\",\"schedule\":\"OTC\",\"alcohol_interaction_description\":\"Interaction with alcohol is unknown. Please consult your doctor.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"id\":20,\"name\":\"Allergic disorders\",\"therapeuticClass\":{\"id\":20,\"name\":\"Allergic disorders\",\"description\":null},\"description\":null},{\"id\":471,\"name\":\"Skin disorders\",\"therapeuticClass\":{\"id\":471,\"name\":\"Skin disorders\",\"description\":null},\"description\":null},{\"id\":475,\"name\":\"oral lichen planus \",\"therapeuticClass\":{\"id\":475,\"name\":\"oral lichen planus \",\"description\":null},\"description\":null}]}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"variants\":[{\"name\":\"TOPINATE 0.05% CREAM\",\"global_price\":60.0,\"pack_weight\":30.0,\"potency\":\"\",\"id\":10005,\"pack_size_unit\":\"GM\",\"discounted_price\":null,\"units_in_pack\":1,\"sku_flavour\":null}],\"interactions\":{\"alcohol\":{\"show_alert\":false,\"label\":null,\"tag\":null,\"color_code\":null,\"description\":\"No interaction found\"},\"pregnancy\":{\"show_alert\":true,\"label\":\"WEIGH RISKS VS. BENEFITS\",\"tag\":\"UNSAFE\",\"color_code\":{\"text\":\"#997B3D\",\"label\":\"#FEF3D7\"},\"description\":\"Topinate 0.05% cream may be unsafe to use during pregnancy.\\u003cbr\\u003eAnimal studies have shown adverse effects on the foetus, however, there are limited human studies. The benefits from use in pregnant women may be acceptable despite the risk. Please consult your doctor.\"},\"food\":{\"show_alert\":false,\"label\":null,\"tag\":null,\"color_code\":null,\"description\":\"No interaction found\"},\"lactation\":{\"show_alert\":false,\"label\":\"SAFE\",\"tag\":\"SAFE\",\"color_code\":{\"text\":\"#A1AB3F\",\"label\":\"#F0F8DC\"},\"description\":\"Topinate 0.05% cream is probably safe to use during breastfeeding. Please consult your doctor.\"},\"medicine\":{\"data\":null,\"hidden\":true,\"count\":0,\"description\":\"No interaction found\"}}}"}],"_postman_id":"0da1b367-6780-1c7a-228c-9f9647f387ca"},{"name":"Alternative Medicines","id":"43d6c5cb-2fb4-5bbf-1f9a-fe2758b20c27","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/alternatives?page=1&size=10","description":"<p>Get substitutes of a medicine, provided a medicine_id. Eg. substitute of Klosoft(Rs 22 for 15gm Cream) is Clobenate (Rs. 10 for 15gm Cream)</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","brands","{{medicine_id}}","alternatives"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"fe3ba64c-155c-181e-6fe1-b56bb8f81447","name":"Alternative Medicines","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/alternatives?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","medicines","brands","{{medicine_id}}","alternatives"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"3351","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:26:14 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"291a6766e742edc3bf5bebfeafb0092f\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"861","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"93723ef2-b326-444d-a3e0-3de344ec54f4","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.332028","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"922","body":"[{\"name\":\"CLOBENATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":10.0,\"size\":\"15 GM cream\",\"manufacturer\":\"Ind Swift Laboratories Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4GQ43z\"},{\"name\":\"KLOSOFT 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":22.0,\"size\":\"15 GM cream\",\"manufacturer\":\"Novartis India Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4IIG33\"},{\"name\":\"CVATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":46.12,\"size\":\"30 GM cream\",\"manufacturer\":\"Omega Remedies Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"44w1wz\"},{\"name\":\"SUPRAVATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":16.46,\"size\":\"10 GM cream\",\"manufacturer\":\"Parker Robinson Pvt  Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4I6V36\"},{\"name\":\"OCOVATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":50.96,\"size\":\"30 GM cream\",\"manufacturer\":\"Ochoa Laboratories Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4IIz61\"},{\"name\":\"CLOBETAGEN 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":25.96,\"size\":\"15 GM cream\",\"manufacturer\":\"Alkem Laboratories Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4G36z1\"},{\"name\":\"CVATE 0.05% SOLUTION\",\"form\":\"ML of solution\",\"standardUnits\":1,\"packageForm\":\"bottle\",\"price\":35.86,\"size\":\"20 ML solution\",\"manufacturer\":\"Omega Remedies Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4IG61I\"},{\"name\":\"TOPINATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":60.0,\"size\":\"30 GM cream\",\"manufacturer\":\"Systopic Laboratories Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGGz\"},{\"name\":\"PLOSAT 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":32.52,\"size\":\"15 GM cream\",\"manufacturer\":\"Winsome Laboratories Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4G4z33\"},{\"name\":\"CBS 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":34.28,\"size\":\"15 GM cream\",\"manufacturer\":\"Serve Pharmaceuticals\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"4G41Iz\"}]"}],"_postman_id":"43d6c5cb-2fb4-5bbf-1f9a-fe2758b20c27"},{"name":"Similar Medicines","id":"e6c89e53-558f-73a8-8faf-33b5a39fd140","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/similar","description":"<p>Get medicines various packaging variations of a particular medicines. Eg. Crocin 500 may have 2 variations like 10 tablets strip or a 15 tablets strip. This endpoint may be helpful to find such similar medicines.</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","brands","{{medicine_id}}","similar"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ec9f4db4-cd9b-14aa-0414-43db764a76da","name":"Similar Medicines","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/similar"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1030","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:26:34 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"65ed561c5f7e9dc0b1b7469b5ccd631f\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"860","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"582c76e5-4c57-4007-b9fa-0d718a3b9305","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"3.906806","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"4505","body":"[{\"name\":\"TOPINATE 0.05% CREAM\",\"form\":\"GM of cream\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":60.0,\"size\":\"30 GM cream\",\"manufacturer\":\"Systopic Laboratories Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IGGGz\"},{\"name\":\"TOPINATE 0.05% GEL\",\"form\":\"GM of gel\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":75.0,\"size\":\"30 GM gel\",\"manufacturer\":\"Systopic Laboratories Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05%w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"6wIz3z\"},{\"name\":\"TOPINATE 0.05% OINTMENT\",\"form\":\"GM of ointment\",\"standardUnits\":1,\"packageForm\":\"tube\",\"price\":54.0,\"size\":\"15 GM ointment\",\"manufacturer\":\"Systopic Laboratories Pvt Ltd\",\"constituents\":[{\"name\":\"Clobetasol Topical\",\"strength\":\"0.05% w/w\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"6w6Vz6\"}]"}],"_postman_id":"e6c89e53-558f-73a8-8faf-33b5a39fd140"},{"name":"Popular Usage","id":"476b2418-3d93-fa55-7521-ab0d78596b63","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/usages","description":"<p>This endpoint returns popular usages of a medicine. This data is based upon clinical trials by US FDA</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","brands","{{medicine_id}}","usages"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"99d6a125-1c1d-263e-143e-fb849a239feb","name":"Popular Usage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/usages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"472","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:26:51 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"0f793589c23a5a0fba2912a57589a0f6\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"859","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"ee650d4f-d38c-4041-80d8-0cb1f2e02b97","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.135517","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"740","body":"[{\"generic\":\"Clobetasol Topical\",\"usages\":[{\"term\":\"HYPERTENSION\",\"count\":32886,\"percent\":10.0},{\"term\":\"PAIN\",\"count\":30302,\"percent\":9.2},{\"term\":\"RHEUMATOID ARTHRITIS\",\"count\":29964,\"percent\":9.1},{\"term\":\"DEPRESSION\",\"count\":18618,\"percent\":5.7},{\"term\":\"PROPHYLAXIS\",\"count\":18390,\"percent\":5.6},{\"term\":\"MULTIPLE SCLEROSIS\",\"count\":17783,\"percent\":5.4},{\"term\":\"PLASMA CELL MYELOMA\",\"count\":14776,\"percent\":4.5},{\"term\":\"OSTEOPOROSIS\",\"count\":14323,\"percent\":4.3}]}]"}],"_postman_id":"476b2418-3d93-fa55-7521-ab0d78596b63"},{"name":"Common Side Effects","id":"6edc6c72-a1bd-799f-ded2-500a00757659","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/side_effects","description":"<p>This endpoint returns common side effects of a medicine. This data is based upon clinical trials by US FDA</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","brands","{{medicine_id}}","side_effects"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"14431690-2c51-d218-4efd-40fc218f7b78","name":"Common Side Effects","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/brands/{{medicine_id}}/side_effects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"538","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:27:04 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"85f328406853d1b3a19b6b1563ac1929\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"858","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"15eb6b5b-ceb0-4555-9e38-38c52cfaa219","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.084634","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"656","body":"[{\"generic\":\"Clobetasol Topical\",\"side_effects\":[{\"term\":\"DRUG INEFFECTIVE\",\"count\":34284,\"percent\":14.1},{\"term\":\"NAUSEA\",\"count\":30419,\"percent\":12.5},{\"term\":\"FATIGUE\",\"count\":25554,\"percent\":10.5},{\"term\":\"DIARRHOEA\",\"count\":24932,\"percent\":10.3},{\"term\":\"PAIN\",\"count\":24324,\"percent\":10.0},{\"term\":\"DYSPNOEA\",\"count\":23192,\"percent\":9.6},{\"term\":\"HEADACHE\",\"count\":21845,\"percent\":9.0},{\"term\":\"VOMITING\",\"count\":20386,\"percent\":8.4},{\"term\":\"DIZZINESS\",\"count\":19525,\"percent\":8.0},{\"term\":\"PYREXIA\",\"count\":18301,\"percent\":7.5}]}]"}],"_postman_id":"6edc6c72-a1bd-799f-ded2-500a00757659"},{"name":"Search Manufacturers","id":"6586924c-bd1c-53d8-c1fe-5affe1b40a12","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/medicines/manufacturers/{{manufacturer_query}}","description":"<p>Search a manufacturer by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","medicines","manufacturers","{{manufacturer_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ec7c0fa0-8245-f2f4-eb87-458d53c8d230","name":"Search Manufacturers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/medicines/manufacturers/{{manufacturer_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"98","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:27:45 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"14dfa6cdab5b5faf83eec0f47e3c01e7\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"856","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"61ab21f0-015c-435b-b60b-37e31f2df52d","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.730492","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"1274","body":"[{\"manufacturer_id\":72060,\"name\":\"Cipla Ltd\"},{\"manufacturer_id\":73841,\"name\":\"Gipla Healthcare\"}]"}],"_postman_id":"6586924c-bd1c-53d8-c1fe-5affe1b40a12"},{"name":"All Manufacturers","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","postman.setGlobalVariable(\"manufacturer_id\", 74586);"]}}],"id":"a4e940ff-f125-bded-f003-4686c6915aef","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/manufacturers?page=1&size=10","description":"<p>List all manufacturers</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","manufacturers"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"b80f5385-f18a-d940-7bcd-a0e864686372","name":"All Manufacturers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/medicines/manufacturers?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","medicines","manufacturers"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"587","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:28:18 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"c1dfc094ca8d0202adc8d4324275ede4\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"855","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"83a635f4-38d0-4b8a-819b-e37df204de8d","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.038878","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"582","body":"[{\"manufacturer_id\":74586,\"name\":\"Wheezal Homeopathy\"},{\"manufacturer_id\":74073,\"name\":\"Jan Aushadhi\"},{\"manufacturer_id\":74309,\"name\":\"Biomatrix Research Laboratories Pvt. Ltd\"},{\"manufacturer_id\":71507,\"name\":\"Ayur Herbals\"},{\"manufacturer_id\":73636,\"name\":\"Shree Baidyanath Ayurved Bhawan Pvt Ltd\"},{\"manufacturer_id\":74470,\"name\":\"Planet Ayurveda\"},{\"manufacturer_id\":72788,\"name\":\"Amrutanjan Health Care Ltd\"},{\"manufacturer_id\":57153,\"name\":\"Elder Pharmaceuticals Ltd\"},{\"manufacturer_id\":73149,\"name\":\"Delcure Life Sciences\"},{\"manufacturer_id\":74355,\"name\":\"First Step Digital\"}]"}],"_postman_id":"a4e940ff-f125-bded-f003-4686c6915aef"},{"name":"Manufacturer","id":"16adfdcc-809a-0d66-418d-5f451db59b09","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/manufacturers/{{manufacturer_id}}","description":"<p>Get a manufacturer by its <strong>manufacturer_id</strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","manufacturers","{{manufacturer_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"eb228815-7243-1885-52f8-7377b9567475","name":"Manufacturer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/manufacturers/{{manufacturer_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"54","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:12:35 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"8feb73380080f48941d40ff5f74d8989\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"821","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"463b0f1f-e56b-4966-8167-5786bf7afaf0","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"14.523290","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"14707","body":"{\"manufacturer__id\":74586,\"name\":\"Wheezal Homeopathy\"}"}],"_postman_id":"16adfdcc-809a-0d66-418d-5f451db59b09"},{"name":"Medicines by Manufacturer","id":"a3af373c-e5c9-b1fd-7b87-15ff46ef945b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/manufacturers/{{manufacturer_id}}/medicines?page=1&size=5","description":"<p>Get medicines by a particular manufacturer</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","manufacturers","{{manufacturer_id}}","medicines"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"5"}],"variable":[]}},"response":[{"id":"74a1bc0b-24b6-f6fe-988d-919717afba8c","name":"Medicines by Manufacturer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/medicines/manufacturers/{{manufacturer_id}}/medicines?page=1&size=5","protocol":"http","host":["{{host}}"],"path":["api","v1","medicines","manufacturers","{{manufacturer_id}}","medicines"],"query":[{"key":"page","value":"1"},{"key":"size","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1926","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 17:49:40 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"2933362ea4da9aec3107d2d6f7d7a40c\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"834","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"bcc90b1c-e747-48d0-aee6-73c294ef6b4f","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"4.033661","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"4205","body":"[{\"name\":\"ENZOMAC PLUS TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":193.0,\"size\":\"10 tablets\",\"manufacturer\":\"Macleods Pharmaceuticals Pvt Ltd\",\"constituents\":[{\"name\":\"Trypsin\",\"strength\":\"48 mg\"},{\"name\":\"Bromelain\",\"strength\":\"90 mg\"},{\"name\":\"Rutoside\",\"strength\":\"100 mg\"},{\"name\":\"Diclofenac\",\"strength\":\"50 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"III1wQ\"},{\"name\":\"ENZOMAC 90MG/48MG/100MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":187.0,\"size\":\"10 tablets\",\"manufacturer\":\"Macleods Pharmaceuticals Pvt Ltd\",\"constituents\":[{\"name\":\"Bromelain\",\"strength\":\"90 mg\"},{\"name\":\"Trypsin\",\"strength\":\"48 mg\"},{\"name\":\"Rutoside\",\"strength\":\"100 mg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"III1w3\"},{\"name\":\"THYROX - 12.5 TABLET\",\"form\":\"tablet\",\"standardUnits\":100,\"packageForm\":\"bottle\",\"price\":127.35,\"size\":\"100 tablets\",\"manufacturer\":\"Macleods Pharmaceuticals Pvt Ltd\",\"constituents\":[{\"name\":\"Thyroxine\",\"strength\":\"12.5mcg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IIVGwz\"},{\"name\":\"THYROX - 50 TABLET\",\"form\":\"tablet\",\"standardUnits\":100,\"packageForm\":\"bottle\",\"price\":95.55,\"size\":\"100 tablets\",\"manufacturer\":\"Macleods Pharmaceuticals Pvt Ltd\",\"constituents\":[{\"name\":\"Thyroxine\",\"strength\":\"50mcg\"}],\"schedule\":{\"category\":\"OTC\",\"label\":\"It can be sold without a prescription\"},\"medicine_id\":\"IIVIGG\"},{\"name\":\"BUDETROL 6MCG/200MCG ROTACAP\",\"form\":\"rotacap\",\"standardUnits\":30,\"packageForm\":\"packet\",\"price\":164.0,\"size\":\"30 rotacaps\",\"manufacturer\":\"Macleods Pharmaceuticals Pvt Ltd\",\"constituents\":[{\"name\":\"Formoterol\",\"strength\":\"6 mcg\"},{\"name\":\"Budesonide\",\"strength\":\"200 mcg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"IIV3zG\"}]"}],"_postman_id":"a3af373c-e5c9-b1fd-7b87-15ff46ef945b"}],"id":"59465506-4a95-a086-9a94-d6803b0928de","_postman_id":"59465506-4a95-a086-9a94-d6803b0928de","description":""},{"name":"03- Generics","item":[{"name":"Search Generics","id":"fc650bae-ba24-aefd-a43a-61f3c8c192e7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/medicines/generics/{{generic_query}}","description":"<p>Search a generic salt by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","medicines","generics","{{generic_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc650bae-ba24-aefd-a43a-61f3c8c192e7"},{"name":"All Generics","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","","postman.setGlobalVariable(\"generic_id\", 209313);"]}}],"id":"de79f40c-6c16-cabb-d1da-f407e03e505d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/generics?page=1&size=10","description":"<p>Get all generics</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","generics"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"771a9a10-b71c-0740-e896-51b2372360bb","name":"All Generics","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/medicines/generics?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","medicines","generics"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"30829","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:13:50 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"de2c05f9900eb79403596c75f85ee4c5\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"819","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"66cf3ff8-ee0a-4342-b297-d3afdf8f78d3","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.075552","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"22238","body":"[{\"name\":\"Acebrophylline\",\"pregnancy_category\":\"NA\",\"lactation_category\":\"B\",\"instructions\":\"\\u003cul\\u003e\\n\\u003cli\\u003eAcebrophylline should be preferably taken after meals to avoid gastrointestinal discomfort.\\u003c/li\\u003e\\n\\u003cli\\u003eInform your doctor if you are on therapy with other medications such as frusimide, reserpine, barbiturates or phenytoin.\\u003c/li\\u003e\\n\\u003cli\\u003eInform your doctor if you have any nervous system disorders like epilepsy and are taking any therapy for the same.\\u003c/li\\u003e\\n\\u003cli\\u003eInform your doctor if you are a smoker.\\u003c/li\\u003e\\n\\u003cli\\u003eInform your doctor if you are breast-feeding.\\u003c/li\\u003e\\n\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is acebrophylline used for?\\u003cbr\\u003eAcebrophylline is used to treat symptoms of bronchial asthma and chronic obstructive pulmonary disease. It blocks the intracellular enzyme (phosphodiesterases) followed by increase in level of messenger known as cyclic adenosine monophosphate, which promotes relaxation of bronchial muscles\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eHow does it work?\\u003cbr\\u003eIt inhibits the release of certain inflammatory chemicals (leukotrienes, tumor necrosis factor etc) in the lung thereby preventing inflammation in the lung. It also reduces thickness of the mucus thus making it easy for the patient to clear the mucus load\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs acebrophylline an antibiotic or steroid?\\u003cbr\\u003eNo. Acebrophylline is not an antibiotic or steroid\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is acebrophylline capsule?\\u003cbr\\u003eAcebrophylline is available in capsule dosage form for the treatment of adults suffering from bronchial asthma and chronic obstructive pulmonary disease.\\u003cbr\\u003e\",\"genric_id\":209312,\"side_effects\":\"Vomiting, Nausea, Drowsiness, Gastrointestinal discomfort, Abdominal pain, Shortness of breath, Esophageal obstruction, Heartburn, Airway inflammation, Increased white blood cell count, Loss of appetite, Rash, Itching, Urticaria, Constipation, Diarrhoea\",\"how_it_works\":\"Acebrophylline thins and loosens mucus, making it easier to cough out.\\n\\n\\n\\n\",\"therapeutic_class\":\"RESPIRATORY\",\"used_for\":\"Acebrophylline is used in the treatment of cough\",\"strength\":\"\",\"schedule\":\"NS\",\"alcohol_interaction_description\":\"Interaction with alcohol is unknown. Please consult your doctor.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Cough\",\"id\":187,\"description\":null},\"name\":\"Cough\",\"id\":187,\"description\":null}]},{\"name\":\"Collagen Peptide\",\"pregnancy_category\":null,\"lactation_category\":null,\"instructions\":null,\"faqs\":null,\"genric_id\":211500,\"side_effects\":null,\"how_it_works\":\"Collagen Peptide blocks the chemicals that cause inflammation and pain. It builds cartilage (the hard connective tissue in the bones near the joints) in the body.\",\"therapeutic_class\":\"PAIN ANALGESICS\",\"used_for\":\"Collagen Peptide is used in osteoarthritis\",\"strength\":\"\",\"schedule\":\"OTC\",\"alcohol_interaction_description\":null,\"alcohol_nteraction\":false,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Osteoarthritis\",\"description\":null,\"id\":198},\"name\":\"Osteoarthritis\",\"description\":null,\"id\":198}]},{\"name\":\"Abacavir\",\"pregnancy_category\":\"C\",\"lactation_category\":\"C\",\"instructions\":\"\\u003cul\\u003e\\u003cli\\u003eAbacavir may cause serious or life-threatening allergic reaction. Stop taking abacavir immediately, if you develop such reaction.\\u003c/li\\u003e\\u003cli\\u003eTell your doctor if you have or had kidney/ liver disease (including hepatitis), if you smoke/drink large amounts of alcohol, have high blood pressure or diabetes, as abacavir may increase your risk of having a heart attack.\\u003c/li\\u003e\\u003cli\\u003eYou should not take abacavir tablets with other products containing abacavir.\\u003c/li\\u003e\\u003cli\\u003eDo not stop taking abacavir even for a short period of time; doing so may worsen your condition. \\u003c/li\\u003e\\u003cli\\u003eDo not drive or operate machinery while using abacavir unless you are feeling well. \\u003c/li\\u003e\\u003cli\\u003eAbacavir does not prevent the spread of HIV virus to others through blood or sexual contact. Take the required precautions to prevent transmission.\\u003c/li\\u003e\\u003cli\\u003eTell your doctor if you are or planning to become pregnant or are breastfeeding.\\u003c/li\\u003e\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is abacavir/ what is abacavir used for/ what is abacavir sulfate/ what is abacavir-lamivudine/ what does abacavir treat?\\u003cbr\\u003eAbacavir or abacavir sulfate is used to treat HIV infection along with other medications. Abacavir-lamivudine is a combination drug used to treat HIV infection\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eHow does abacavir work/ how does abacavir interfere with reverse transcriptase?\\u003cbr\\u003eAbacavir works by blocking the function of reverse transcriptase, which inhibits replication of HIV thereby decreasing its level in the blood\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is abacavir hypersensitivity reaction/ what is abacavir hypersensitivity?\\u003cbr\\u003eAbacavir may cause a serious or life-threatening allergic or hypersensitivity reaction. Hypersensitivity reaction symptoms usually includes fever and skin rash, nausea, vomit, diarrhea, abdominal pain, loss of appetite, severe tiredness, headache, joint or muscle pain, swelling of the neck, shortness of breath, sore throat, cough and occasionally inflammation of the eye (conjunctivitis), mouth ulcers, low blood pressure, tingling or numbness of the hands or feet. Consult your doctor immediately if you experience one or more such symptoms and stop taking abacavir immediately\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs abacavir a protease inhibitor?\\u003cbr\\u003eAbacavir is not a protease inhibitor. It inhibits the activity of reverse transcriptase\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs abacavir generic?\\u003cbr\\u003eAbacavir is a generic name.\\u003cbr\\u003e\",\"genric_id\":209308,\"side_effects\":\"Neck swelling, Abdominal pain, Muscle pain, Joint pain, Cough, Eye inflammation, Decreased blood pressure, Diarrhoea, Shortness of breath, Headache, Skin rash, Hypersensitivity reaction, Fever, Lactic acidosis, Loss of appetite, Mouth ulcer, Nausea, Sore throat, Tingling sensation of extremity, Numbness of extremity, Vomiting, Fatigue\",\"how_it_works\":\"Abacavir belongs to a group of medicines called nucleoside analogue reverse transcriptase inhibitors (NRTIs). Abacavir works by blocking the function of reverse transcriptase, which inhibits replication of HIV thereby decreasing its level in the blood.\",\"therapeutic_class\":\"ANTI INFECTIVES\",\"used_for\":\"Abacavir is used in the treatment of HIV infection\",\"strength\":\"\",\"schedule\":\"H\",\"alcohol_interaction_description\":\"It is unsafe to consume alcohol with Abacavir.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"HIV infection\",\"id\":284,\"description\":null},\"name\":\"HIV infection\",\"id\":284,\"description\":null}]},{\"name\":\"Abciximab\",\"pregnancy_category\":\"C\",\"lactation_category\":\"B\",\"instructions\":\"\\u003cul\\u003e\\n\\u003cli\\u003eDo not start abciximab and consult your doctor if you have previously taken abciximab, have serious kidney problems, are above 65 years of age, pregnant or breast feeding.\\u003c/li\\u003e\\n\\u003cli\\u003eAvoid activities that may cause bruising or injury as there is an increased risk of bleeding with abciximab use.\\u003c/li\\u003e\\n\\u003cli\\u003eYou may be monitored with lab tests, including complete blood cell counts and blood clotting tests while on Abciximab therapy.\\u003c/li\\u003e\\n\\u003cli\\u003eSeek immediate medical attention if you experience unusual bruising or bleeding (eg, bleeding gums; nosebleeds; bleeding in the eye; blood in the urine; black, bloody, or tarry stools; coughing up blood; vomiting blood or material that looks like coffee grounds; severe or unusual vaginal bleeding); severe stomach pain; confusion; or severe or persistent headache or dizziness.\\u003c/li\\u003e\\n\\u003cli\\u003eDo not drive or operate machinery as abciximab may cause dizziness.\\u003c/li\\u003e\\n\\u003cli\\u003ePlatelet count should be monitored prior to, during and after treatment with abciximab for prevention of thrombocytopenia (low platelet count in blood).\\u003c/li\\u003e\\n\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs abciximab is a monoclonal antibody?\\u003cbr\\u003eYes, abciximab is a murine monoclonal antibody\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs abciximab a Gpiib/iiia receptors antagonist?\\u003cbr\\u003eYes, abciximab is a Gpiib/iiia receptor antagonist\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is abciximab used for?\\u003cbr\\u003eAbciximab is used in combination with other blood thinner drugs to prevent formation of blood clots during and after angioplasty (dilatation of narrowed lumen of blood vessels). It is also used to lower the risk of heart attack before angioplasty in patients with unstable angina (chest pain at rest due to reduced blood supply to heart)\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eHow does abciximab work?\\u003cbr\\u003eAbciximab works by binding to blood cells called platelets which are responsible for formation of blood clots.\\u003cbr\\u003e\",\"genric_id\":209309,\"side_effects\":\"Nausea, Peripheral edema, Abdominal pain, Back pain, Bleeding, Bradycardia, Chest pain, Decreased blood pressure, Fever, Gastrointestinal bleeding, Headache, Injection site pain, Reduced blood platelets, Vomiting\",\"how_it_works\":\"Abciximab prevents platelets from sticking together which decreases the formation of harmful blood clots.\\n\\n\",\"therapeutic_class\":\"CARDIAC\",\"used_for\":\"Abciximab is used in the treatment of unstable angina (chest pain)\",\"strength\":\"\",\"schedule\":\"H\",\"alcohol_interaction_description\":\"Interaction with alcohol is unknown. Please consult your doctor.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"id\":86,\"name\":\"Unstable Angina (Chest pain)\",\"therapeuticClass\":{\"id\":86,\"name\":\"Unstable Angina (Chest pain)\",\"description\":null},\"description\":null}]},{\"name\":\"Acamprosate\",\"pregnancy_category\":\"C\",\"lactation_category\":\"B\",\"instructions\":\"\\u003cul\\u003e\\u003cli\\u003eYou should not be drinking at the start and during acamprosate treatment as it will be less effective if you keep drinking.\\u003c/li\\u003e\\u003cli\\u003eWhen you suddenly stop drinking, you may experience some unpleasant symptoms known as alcohol withdrawal syndrome. You should take acamprosate as soon as possible after the withdrawal period.\\u003c/li\\u003e\\u003cli\\u003eAlcoholic patients may suffer from depression and suicidality. Please report your treating doctor in case of any such symptoms. \\u003c/li\\u003e\\u003cli\\u003eConsult your doctor before stopping to take acamprosate.\\u003c/li\\u003e\\u003cli\\u003eTell your doctor if you are or planning to become pregnant or are breastfeeding.\\u003c/li\\u003e\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs acamprosate addictive/ is acamprosate a narcotic?\\u003cbr\\u003eAcamprosate is not addictive when given at prescribed dose and duration as advised by your doctor. Acamprosate is a calcium acetylhomotaurinate and not a narcotic\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs acamprosate effective?\\u003cbr\\u003eAcamprosate is effective if used at prescribed dose and duration as advised by your doctor\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs acamprosate a placebo?\\u003cbr\\u003eAcamprosate is a drug and not a placebo\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is acamprosate/What is acamprosate calcium used for?\\u003cbr\\u003eAcamprosate or acamprosate calcium along with counselling is used as a therapy to maintain the practice of avoiding alcohol drinking again in people who are alcohol dependent\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eDoes acamprosate get you high/ make you drowsy/ cause weight gain?\\u003cbr\\u003eThese side effects are rare or uncommon with acamprosate treatment. Consult your doctor immediately if you experience one or more such symptoms and stop taking acamprosate immediately.\\u003cbr\\u003e\",\"genric_id\":209310,\"side_effects\":\"Nausea, Rash, Abdominal pain, Decreased libido, Diarrhoea, Impotence, Itching, Vomiting\",\"how_it_works\":\"Acamprosate is a synthetic amino acid and a neurotransmitter analogue that works by maintaining activities of chemical substances present in the brain, particularly gamma-amino-butyric acid (GABA) and glutamate, thereby helping the brains of alcoholic people to work normally again.\",\"therapeutic_class\":\"NEURO CNS\",\"used_for\":\"Acamprosate is used in the treatment of alcohol dependence (alcoholism)\",\"strength\":\"\",\"schedule\":\"H\",\"alcohol_interaction_description\":\"Interaction with alcohol is unknown. Please consult your doctor.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Alcohol dependence (Alcoholism)\",\"id\":334,\"description\":null},\"name\":\"Alcohol dependence (Alcoholism)\",\"id\":334,\"description\":null}]},{\"name\":\"Acarbose\",\"pregnancy_category\":\"B\",\"lactation_category\":\"B\",\"instructions\":\"\\u003cul\\u003e\\u003cli\\u003eType 2 diabetes can be controlled with a proper diet alone or a diet along with exercise. A planned diet and exercising are always important when you have diabetes, even when you are taking antidiabetic medicines. \\u003c/li\\u003e \\u003cli\\u003eAcarbose is administered orally and should be chewed with the first mouthful of food, or swallowed whole with a little liquid directly before the meal.\\u003c/li\\u003e \\u003cli\\u003eAcarbose does not help patients who have type 1 diabetes.\\u003c/li\\u003e \\u003cli\\u003eNotify your doctor if you are or are planning to become pregnant.\\u003c/li\\u003e\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs acarbose/Glucobay a protein?\\u003cbr\\u003eNo, acarbose is not a protein; it is a complex oligosaccharide (sugar)\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs acarbose safe?\\u003cbr\\u003eAcarbose is safe if used at prescribed doses for the prescribed duration as advised by your doctor\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eDoes acarbose cause weight fluctuations?\\u003cbr\\u003eAcarbose when combined with low calorie diet and exercise may cause weight loss. Acarbose generally does not cause weight gain when taken as prescribed\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eDoes acarbose cause hypoglycemia?\\u003cbr\\u003eAcarbose does not cause hypoglycemia (low blood sugar) if taken as prescribed. However, low blood sugar can occur if you take acarbose with another blood sugar lowering medicine, delay or miss a meal or snack, exercise more than usual or drink alcohol\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eHow long does acarbose last?\\u003cbr\\u003eGenerally, the effect of acarbose lasts up to 3-5 hours, however it may vary depending on the individual taking the medicine.\\u003cbr\\u003e\",\"genric_id\":209311,\"side_effects\":\"Nausea, Liver enzyme increased, Jaundice, Abnormal liver function tests, Diarrhoea, Flatulence, Indigestion, Stomach pain, Swelling, Vomiting\",\"how_it_works\":\"Acarbose is active in the small intestine, where it inhibits enzymes responsible for the breakdown of complex sugar into simple sugars such as glucose. Thereby slows the digestion of sugar from intestine and primarily reduces the post meal  rise of blood sugar levels. \\n\\n\\n\",\"therapeutic_class\":\"ANTI DIABETIC\",\"used_for\":\"Acarbose is used in the treatment of type 2 diabetes\",\"strength\":\"\",\"schedule\":\"NS\",\"alcohol_interaction_description\":\"It is unsafe to consume alcohol with Acarbose.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Type 2 diabetes\",\"description\":null,\"id\":105},\"name\":\"Type 2 diabetes\",\"description\":null,\"id\":105}]},{\"name\":\"Aceclofenac\",\"pregnancy_category\":\"C\",\"lactation_category\":\"B\",\"instructions\":\"Do not take aceclofenac tablets:\\n\\u003cul\\u003e\\n\\u003cli\\u003eIf you are allergic to aceclofenac or any of the other ingredients of aceclofenac tablet.\\u003c/li\\u003e\\n\\u003cli\\u003eIf you are pregnant or breastfeeding.\\u003c/li\\u003e\\n\\u003cli\\u003eIf you have  stomach ulcer or intestinal bleeding, severe kidney disease, heart attack, liver failure, bleeding or bleeding disorders.\\u003c/li\\u003e\\n\\u003cli\\u003eDoctor’s advice should be considered before taking aceclofenac tablets in case of any following diseases:\\u003c/li\\u003e\\n\\u003cli\\u003eDiseases of the stomach or intestines \\u003c/li\\u003e\\n\\u003cli\\u003eDisease that causes ulcers on the lining of the large gut (ulcerative colitis).\\u003c/li\\u003e\\n\\u003cli\\u003eCrohn’s disease (serious inflammation of any part of the gastrointestinal tract).\\u003c/li\\u003e\\n\\u003cli\\u003eBlood disorders, problems with the circulation of the blood to your brain.\\u003c/li\\u003e\\n\\u003cli\\u003eAsthma or any other breathing problems.\\u003c/li\\u003e\\n\\u003cli\\u003eDisturbance of metabolism that can be seen as disorders of the skin or other organs (porphyria).\\u003c/li\\u003e\\n\\u003cli\\u003eHeart problems, stroke, high blood pressure (hypertension), diabetes, high cholesterol.\\u003c/li\\u003e\\n\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac safe?\\u003cbr\\u003eAceclofenac (also available as Hifenac, Zerodol) is safe at the prescribed dose by the doctor. Patients should follow the advice of the doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac a painkiller/ antipyretic/ antibiotic?\\u003cbr\\u003eAceclofenac is a pain relieving medication and not an antibiotic. It may reduce fever; however consult your doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac better than diclofenac?\\u003cbr\\u003eAceclofenac and diclofenac are equally effective and safe in relieving pain. Patients should follow the advice of the doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac paracetamol/ aspirin?\\u003cbr\\u003eNo. Aceclofenac is not paracetamol or aspirin.\\u003cbr\\u003e\",\"genric_id\":209313,\"side_effects\":\"Nausea, Peptic ulcer, Abdominal pain, Allergic skin rash, Constipation, Diarrhoea, Dizziness, Flatulence, Increased blood pressure, Indigestion, Vomiting\",\"how_it_works\":\"Aceclofenac blocks the release of certain chemical messengers that are responsible for inflammation, pain, and fever.\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\"therapeutic_class\":\"PAIN ANALGESICS\",\"used_for\":\"Aceclofenac is used in the treatment of osteoarthritis, muscular pain, gout and rheumatoid arthritis\",\"strength\":\"\",\"schedule\":\"NS\",\"alcohol_interaction_description\":\"It is unsafe to consume alcohol with Aceclofenac.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"id\":198,\"name\":\"Osteoarthritis\",\"therapeuticClass\":{\"id\":198,\"name\":\"Osteoarthritis\",\"description\":null},\"description\":null},{\"id\":479,\"name\":\"muscular pain\",\"therapeuticClass\":{\"id\":479,\"name\":\"muscular pain\",\"description\":null},\"description\":null},{\"id\":398,\"name\":\"Gout\",\"therapeuticClass\":{\"id\":398,\"name\":\"Gout\",\"description\":null},\"description\":null},{\"id\":213,\"name\":\"Rheumatoid Arthritis\",\"therapeuticClass\":{\"id\":213,\"name\":\"Rheumatoid Arthritis\",\"description\":null},\"description\":null}]},{\"name\":\"Acenocoumarol\",\"pregnancy_category\":\"X\",\"lactation_category\":\"A\",\"instructions\":\"\\u003cul\\u003e\\u003cli\\u003eDo consult your doctor before using acenocoumarol, if you have cancer; any infection or swelling (inflammation); problems of stomach or intestine; heart failure; or overactive thyroid gland (hyperthyroidism or thyrotoxicosis)\\u003c/li\\u003e\\u003cli\\u003eBefore taking acenocoumarol, consult your doctor, if you need to go for any diagnostic procedure (e.g. angiography) or take a scan or X-ray or any minor surgery including dental procedures\\u003c/li\\u003e\\u003cli\\u003eCaution must be exercised during use of acenocoumarol in children, elderly (?65 years) and malnourished patients\\u003c/li\\u003e\\u003cli\\u003eUse of acenocoumarol is not recommended in patients with certain hereditary sugar intolerance disorders (galactose intolerance, the Lapp lactase deficiency or glucose-galactose malabsorbtion)\\u003c/li\\u003e\\u003cli\\u003eAvoid consumption of alcohol while on treatment with acenocoumarol.\\u003c/li\\u003e\\u003cli\\u003eDo not take acenocoumarol if you are pregnant or planning to become pregnant or breastfeeding\\u003c/li\\u003e\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is acenocoumarol?\\u003cbr\\u003eAcenocoumarol is an anticoagulant drug or blood thinning drug\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is it used for?\\u003cbr\\u003eIt is used to prevent and treat blood clots in blood vessels (e.g. Atrial fibrillation(disorder in rhythm and speed of heart), after heart attack, artificial heart-valves, deep venous thrombosis and pulmonary embolism\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eAcenocoumarolis Sintrom?\\u003cbr\\u003eYes. Sintrom is a trade name for active drug acenocoumaro\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eWhat is Acenocoumarol Sandoz?\\u003cbr\\u003eAcenocoumarol Sandoz is a trade name for active drug acenocoumarol available in some countries\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eHow does acenocoumarol work?\\u003cbr\\u003eAcenocoumarol is used to prevent and treat blood clots in blood vessels (e.g.Atrial fibrillation (disorder in rhythm and speed of heart), after heart attack, artificial heart valves, deep venous thrombosis and pulmonary embolism).It stops formation of blood clots by blocking the effect of vitamin K, which is essential in the biological process of clot formation.\\u003cbr\\u003e\",\"genric_id\":209315,\"side_effects\":\"Haemorrhage\",\"how_it_works\":\"Acenocoumarol prevents the formation of  harmful blood clots.\\n\\n\\n\",\"therapeutic_class\":\"CARDIAC\",\"used_for\":\"Acenocoumarol is used in the treatment of deep vein thrombosis (blood clot in deep veins), pulmonary embolus (blood clot in lungs) and heart attack\",\"strength\":\"\",\"schedule\":\"NS\",\"alcohol_interaction_description\":\"Interaction with alcohol is unknown. Please consult your doctor.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Deep vein thrombosis (Blood clot in deep veins)\",\"description\":null,\"id\":84},\"name\":\"Deep vein thrombosis (Blood clot in deep veins)\",\"description\":null,\"id\":84},{\"therapeuticClass\":{\"name\":\"Pulmonary embolus (Blood clot in lungs)\",\"description\":null,\"id\":85},\"name\":\"Pulmonary embolus (Blood clot in lungs)\",\"description\":null,\"id\":85},{\"therapeuticClass\":{\"name\":\"Heart attack\",\"description\":null,\"id\":67},\"name\":\"Heart attack\",\"description\":null,\"id\":67}]},{\"name\":\"Acetazolamide\",\"pregnancy_category\":\"C\",\"lactation_category\":\"A\",\"instructions\":\"• Tell your doctor if you have adrenal gland problems, low blood levels of potassium or sodium, kidney problems, liver problems, high blood levels of chloride, or other electrolyte problems.\\u003cbr\\u003e• Seek immediate medical attention if you develop severe allergic reaction (eg. severe rash, breathing difficulties, or dizziness).\\n• Do not drive or operate machinery while taking acetazolamide as it may cause dizziness.\\n• Tell your doctor if you are pregnant, planning to become pregnant or are breastfeeding.\\n• Patients allergic to acetazolamide or any of its ingredients should not take Acetazolamide.\\n• Patients with cirrhosis, severe liver or kidney disease, an electrolyte imbalance, adrenal gland failure should not take Acetazolamide.\\n \",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eDoes acetazolamide cause weight loss?\\u003cbr\\u003eNo, acetazolamide does not causes weight loss\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eDoes acetazolamide cause kidney stones?\\u003cbr\\u003eYes, acetazolamide has potential to cause kidney stones.\\u003cbr\\u003e\",\"genric_id\":209317,\"side_effects\":\"Numbness, Tingling sensation, Frequent urge to urinate, Excessive thirst, Acne-like rash, Bruise, Bleeding, Blood in urine, Confusion, Drowsiness, Difficulty in urination, Epileptic convulsion, Vomiting, Gastrointestinal disorder, Headache, Loss of appetite, Sore throat, Stomach upset, Yellow discoloration of skin, Fever\",\"how_it_works\":\"Acetazolamide lowers high pressure in eye by reducing formation of aqueous humor (fluid in eye). \\n\\n\",\"therapeutic_class\":\"OPHTHAL\",\"used_for\":\"Acetazolamide is used in the treatment of glaucoma (high eye pressure)\",\"strength\":\"\",\"schedule\":\"H\",\"alcohol_interaction_description\":\"Interaction with alcohol is unknown. Please consult your doctor.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Glaucoma (High eye pressure)\",\"id\":71,\"description\":null},\"name\":\"Glaucoma (High eye pressure)\",\"id\":71,\"description\":null}]},{\"name\":\"Aspirin(ASA)\",\"pregnancy_category\":\"D\",\"lactation_category\":\"C\",\"instructions\":\"• Take the drug with food to lower the chances of an upset stomach\\n• Consult your doctor if you have ringing in ears, unusual bleeding or nausea or vomitting after taking this drug\\n• Do not take this drug if you have or had stomach ulcer. \\n• Do not start or continue the aspirin tablets and consult your doctor:\\n          - If you are allergic (hypersensitive) to aspirin or any of the other ingredients of aspirin tablet.\\n          - If you have history of asthma, urticarial, rhinitis, hay fever, chronic respiratory diseases,nasal polyps or other sensitivity reaction precipitated by other non-steroidal anti-inflammatory agents.\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs aspirin same as disprin, ecosprin and loprin?\\u003cbr\\u003eYes. All the three brands (disprin, ecosprin and loprin) contain aspirin (acetylsalicylic acid) as main ingredient\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs ecosprin a beta blocker?\\u003cbr\\u003eNo. Ecosprin (aspirin) is a non-steroidal anti-inflammatory drug.\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aspirin/disprin good for hangover?\\u003cbr\\u003eNo. However, alcohol consumption with aspirin increases the risk of bleeding\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs ecosprin a blood thinner?\\u003cbr\\u003eYes. Ecosprin (aspirin) reduces the effect of certain chemical messenger systems in the body. These compounds are responsible for platelet (thrombocyte) aggregation or blood clotting. Consequently, Aspirin may considerably reduce the risk of clots\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aspirin/dispirin good for heart?\\u003cbr\\u003eYes. Aspirin at low dose generally prescribed to prevent and treat heart attacks. Patient should take a daily aspirin only if your doctor advises you to do so\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aspirin good for hair growth?\\u003cbr\\u003eNo. Aspirin has no role on hair growth\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aspirin safe?\\u003cbr\\u003eAspirin is safe if used at prescribed doses for the prescribed duration as advised by your doctor.\\u003cbr\\u003e\",\"genric_id\":209321,\"side_effects\":\"Nausea, Bronchoconstriction (constriction of air passages), Angioedema (swelling of deeper layers of skin), Bleeding, Cerebral hemorrhage, Dizziness, Shortness of breath, Gastrointestinal discomfort, Gastric erosion, Gastric ulcer, Gastrointestinal bleeding, Hepatitis (viral infection of liver), Enlarged liver, Indigestion, Respiratory alkalosis, Running nose, Ringing in ear, Urticaria, Vertigo, Vomiting\",\"how_it_works\":\"Aspirin(ASA) blocks the release of certain chemical messengers that are responsible for inflammation, pain, and fever.\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\"therapeutic_class\":\"CARDIAC\",\"used_for\":\"Aspirin(ASA) is used in the treatment of fever, headache, migraine, ear pain, joint pain, Patent ductus arteriosus (PDA), osteoarthritis, rheumatoid arthritis, muscular pain, musculo-skeletal pain, dental pain, menstrual pain, rheumatic pain, post operative pain, gout, mouth sores (ulcers), nerve pain and prevention of heart attack\",\"strength\":\"\",\"schedule\":\"H\",\"alcohol_interaction_description\":\"It is unsafe to consume alcohol with Aspirin(ASA).\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"therapeuticClass\":{\"name\":\"Fever\",\"id\":191,\"description\":null},\"name\":\"Fever\",\"id\":191,\"description\":null},{\"therapeuticClass\":{\"name\":\"Headache\",\"id\":192,\"description\":null},\"name\":\"Headache\",\"id\":192,\"description\":null},{\"therapeuticClass\":{\"name\":\"Migraine\",\"id\":158,\"description\":null},\"name\":\"Migraine\",\"id\":158,\"description\":null},{\"therapeuticClass\":{\"name\":\"Ear pain\",\"id\":194,\"description\":null},\"name\":\"Ear pain\",\"id\":194,\"description\":null},{\"therapeuticClass\":{\"name\":\"Joint pain\",\"id\":195,\"description\":null},\"name\":\"Joint pain\",\"id\":195,\"description\":null},{\"therapeuticClass\":{\"name\":\"Patent ductus arteriosus\\n(PDA)\",\"id\":197,\"description\":null},\"name\":\"Patent ductus arteriosus\\n(PDA)\",\"id\":197,\"description\":null},{\"therapeuticClass\":{\"name\":\"Osteoarthritis\",\"id\":198,\"description\":null},\"name\":\"Osteoarthritis\",\"id\":198,\"description\":null},{\"therapeuticClass\":{\"name\":\"Rheumatoid Arthritis\",\"id\":213,\"description\":null},\"name\":\"Rheumatoid Arthritis\",\"id\":213,\"description\":null},{\"therapeuticClass\":{\"name\":\"muscular pain\",\"id\":479,\"description\":null},\"name\":\"muscular pain\",\"id\":479,\"description\":null},{\"therapeuticClass\":{\"name\":\"musculo-skeletal pain\",\"id\":480,\"description\":null},\"name\":\"musculo-skeletal pain\",\"id\":480,\"description\":null},{\"therapeuticClass\":{\"name\":\"dental pain\",\"id\":481,\"description\":null},\"name\":\"dental pain\",\"id\":481,\"description\":null},{\"therapeuticClass\":{\"name\":\"Menstural pain\",\"id\":246,\"description\":null},\"name\":\"Menstural pain\",\"id\":246,\"description\":null},{\"therapeuticClass\":{\"name\":\"rheumatic pain\",\"id\":483,\"description\":null},\"name\":\"rheumatic pain\",\"id\":483,\"description\":null},{\"therapeuticClass\":{\"name\":\"post operative pain\",\"id\":478,\"description\":null},\"name\":\"post operative pain\",\"id\":478,\"description\":null},{\"therapeuticClass\":{\"name\":\"Gout\",\"id\":398,\"description\":null},\"name\":\"Gout\",\"id\":398,\"description\":null},{\"therapeuticClass\":{\"name\":\"Mouth Sores (Ulcers)\",\"id\":203,\"description\":null},\"name\":\"Mouth Sores (Ulcers)\",\"id\":203,\"description\":null},{\"therapeuticClass\":{\"name\":\"Nerve pain\",\"id\":484,\"description\":null},\"name\":\"Nerve pain\",\"id\":484,\"description\":null},{\"therapeuticClass\":{\"name\":\"Prevention of heart attack\",\"id\":482,\"description\":null},\"name\":\"Prevention of heart attack\",\"id\":482,\"description\":null}]}]"}],"_postman_id":"de79f40c-6c16-cabb-d1da-f407e03e505d"},{"name":"Generic","id":"06a5c26e-88d6-e8fe-a6c0-d7dd42d2d2ed","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/generics/{{generic_id}}","description":"<p>Get a generic by its <strong>generic_id</strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","generics","{{generic_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"fc2eeb3c-8f48-dc06-c9ab-d878874ed760","name":"Generic","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/generics/{{generic_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"3519","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:19:52 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"312dd1ffced1a0e061b6a6a741046be4\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"815","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"d71451e5-d8de-41de-b6af-d3737681a14b","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.210860","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"756","body":"{\"name\":\"Aceclofenac\",\"pregnancy_category\":\"C\",\"lactation_category\":\"B\",\"instructions\":\"Do not take aceclofenac tablets:\\n\\u003cul\\u003e\\n\\u003cli\\u003eIf you are allergic to aceclofenac or any of the other ingredients of aceclofenac tablet.\\u003c/li\\u003e\\n\\u003cli\\u003eIf you are pregnant or breastfeeding.\\u003c/li\\u003e\\n\\u003cli\\u003eIf you have  stomach ulcer or intestinal bleeding, severe k_idney disease, heart attack, liver failure, bleeding or bleeding disorders.\\u003c/li\\u003e\\n\\u003cli\\u003eDoctor’s advice should be considered before taking aceclofenac tablets in case of any following diseases:\\u003c/li\\u003e\\n\\u003cli\\u003eDiseases of the stomach or intestines \\u003c/li\\u003e\\n\\u003cli\\u003eDisease that causes ulcers on the lining of the large gut (ulcerative colitis).\\u003c/li\\u003e\\n\\u003cli\\u003eCrohn’s disease (serious inflammation of any part of the gastrointestinal tract).\\u003c/li\\u003e\\n\\u003cli\\u003eBlood disorders, problems with the circulation of the blood to your brain.\\u003c/li\\u003e\\n\\u003cli\\u003eAsthma or any other breathing problems.\\u003c/li\\u003e\\n\\u003cli\\u003eDisturbance of metabolism that can be seen as disorders of the skin or other organs (porphyria).\\u003c/li\\u003e\\n\\u003cli\\u003eHeart problems, stroke, high blood pressure (hypertension), diabetes, high cholesterol.\\u003c/li\\u003e\\n\\u003c/ul\\u003e\",\"faqs\":\"\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac safe?\\u003cbr\\u003eAceclofenac (also available as Hifenac, Zerodol) is safe at the prescribed dose by the doctor. Patients should follow the advice of the doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac a painkiller/ antipyretic/ antibiotic?\\u003cbr\\u003eAceclofenac is a pain relieving medication and not an antibiotic. It may reduce fever; however consult your doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac better than diclofenac?\\u003cbr\\u003eAceclofenac and diclofenac are equally effective and safe in relieving pain. Patients should follow the advice of the doctor regarding its use\\u003cbr\\u003e\\u003cbr\\u003e\\u003cb\\u003eQ. \\u003c/b\\u003eIs aceclofenac paracetamol/ aspirin?\\u003cbr\\u003eNo. Aceclofenac is not paracetamol or aspirin.\\u003cbr\\u003e\",\"genric_id\":209313,\"side_effects\":\"Nausea, Peptic ulcer, Abdominal pain, Allergic skin rash, Constipation, Diarrhoea, Dizziness, Flatulence, Increased blood pressure, Indigestion, Vomiting\",\"how_it_works\":\"Aceclofenac blocks the release of certain chemical messengers that are responsible for inflammation, pain, and fever.\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\",\"therapeutic_class\":\"PAIN ANALGESICS\",\"used_for\":\"Aceclofenac is used in the treatment of osteoarthritis, muscular pain, gout and rheumatoid arthritis\",\"strength\":\"\",\"schedule\":\"NS\",\"alcohol_interaction_description\":\"It is unsafe to consume alcohol with Aceclofenac.\",\"alcohol_nteraction\":true,\"therapeuticClass\":[{\"id\":198,\"name\":\"Osteoarthritis\",\"therapeuticClass\":{\"id\":198,\"name\":\"Osteoarthritis\",\"description\":null},\"description\":null},{\"id\":479,\"name\":\"muscular pain\",\"therapeuticClass\":{\"id\":479,\"name\":\"muscular pain\",\"description\":null},\"description\":null},{\"id\":398,\"name\":\"Gout\",\"therapeuticClass\":{\"id\":398,\"name\":\"Gout\",\"description\":null},\"description\":null},{\"id\":213,\"name\":\"Rheumatoid Arthritis\",\"therapeuticClass\":{\"id\":213,\"name\":\"Rheumatoid Arthritis\",\"description\":null},\"description\":null}]}"}],"_postman_id":"06a5c26e-88d6-e8fe-a6c0-d7dd42d2d2ed"},{"name":"Medicines by Generic","id":"820ce9fa-c65c-711d-3abf-4b088d2656c8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/medicines/generics/{{generic_id}}/medicines?page=1&size=10&exclusive=false","description":"<p>Get all medicines that contain the given generic. Set parameter <strong>exclusive</strong> to true if you want to return the medicines the containes only the given generic. Default value is false.</p>\n","urlObject":{"protocol":"http","path":["api","v1","medicines","generics","{{generic_id}}","medicines"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"},{"key":"exclusive","value":"false"}],"variable":[]}},"response":[{"id":"b187f765-e803-8214-41c2-acff9c994d2b","name":"Medicines by Generic","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/medicines/generics/{{generic_id}}/medicines?page=1&size=10&exclusive=false","protocol":"http","host":["{{host}}"],"path":["api","v1","medicines","generics","{{generic_id}}","medicines"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"},{"key":"exclusive","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"3647","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:55:51 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"ede9cfeee50f075012538866282bd843\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"796","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"5847fec2-8641-4e28-8526-abb1c7a6c8ce","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"5.240180","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"5545","body":"[{\"name\":\"ZYROVA C 5 MG/75 MG CAPSULE\",\"form\":\"capsule\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":120.3,\"size\":\"10 capsules\",\"manufacturer\":\"Zydus Cadila\",\"constituents\":[{\"name\":\"Rosuvastatin\",\"strength\":\"5 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"6VzQVV\"},{\"name\":\"ROSVIN CV 5 MG/75 MG CAPSULE\",\"form\":\"capsule\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":110.0,\"size\":\"10 capsules\",\"manufacturer\":\"Medley Pharmaceuticals\",\"constituents\":[{\"name\":\"Rosuvastatin\",\"strength\":\"5 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"6VQV6Q\"},{\"name\":\"ROZANEX CV 10 MG/75 MG CAPSULE\",\"form\":\"capsule\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":144.0,\"size\":\"10 capsules\",\"manufacturer\":\"Vidakem Lifesciences Pvt Ltd\",\"constituents\":[{\"name\":\"Rosuvastatin\",\"strength\":\"10 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"6VQQV3\"},{\"name\":\"ANTIBAN 75 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":37.0,\"size\":\"10 tablets\",\"manufacturer\":\"Blue Cross Laboratories Ltd\",\"constituents\":[{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"63zz3z\"},{\"name\":\"KLOTFREE 75 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":67.62,\"size\":\"10 tablets\",\"manufacturer\":\"Zydus Cadila\",\"constituents\":[{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"63z313\"},{\"name\":\"PREVA AS 75MG/75MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":33.0,\"size\":\"10 tablets\",\"manufacturer\":\"Intas Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Aspirin(ASA)\",\"strength\":\"75 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"Iz6Gwz\"},{\"name\":\"CLOPITAB CV 10 MG/75 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":91.5,\"size\":\"10 tablets\",\"manufacturer\":\"Lupin Ltd\",\"constituents\":[{\"name\":\"Atorvastatin\",\"strength\":\"10 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"Iz4G3Q\"},{\"name\":\"ROSUFIT CV 20MG/75MG CAPSULE\",\"form\":\"capsule\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":200.0,\"size\":\"10 capsules\",\"manufacturer\":\"Ajanta Pharma Ltd\",\"constituents\":[{\"name\":\"Rosuvastatin\",\"strength\":\"20 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"Iz4VVQ\"},{\"name\":\"ROSUFIT CV 10MG/75MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":171.0,\"size\":\"10 tablets\",\"manufacturer\":\"Ajanta Pharma Ltd\",\"constituents\":[{\"name\":\"Rosuvastatin\",\"strength\":\"10 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"Iz4z4w\"},{\"name\":\"PIDLET PLUS 150 MG/75 MG TABLET\",\"form\":\"tablet\",\"standardUnits\":10,\"packageForm\":\"strip\",\"price\":26.0,\"size\":\"10 tablets\",\"manufacturer\":\"Orchid Chemicals \\u0026 Pharmaceuticals Ltd\",\"constituents\":[{\"name\":\"Aspirin(ASA)\",\"strength\":\"150 mg\"},{\"name\":\"Clopidogrel\",\"strength\":\"75 mg\"}],\"schedule\":{\"category\":\"H\",\"label\":\"It needs a valid prescription to be sold\"},\"medicine_id\":\"IzV3IQ\"}]"}],"_postman_id":"820ce9fa-c65c-711d-3abf-4b088d2656c8"}],"id":"ca24abf4-b570-330d-9102-2eadcafb2ae0","_postman_id":"ca24abf4-b570-330d-9102-2eadcafb2ae0","description":""},{"name":"04- Lab Tests","item":[{"name":"Search Lab Tests","id":"29c07aea-c350-646b-7f41-ca7185527e40","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/lab_tests/{{lab_test_query}}","description":"<p>Search a lab test by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","lab_tests","{{lab_test_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"54a57987-9690-a3d6-1139-b97994c55bf5","name":"Search Lab Tests","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/lab_tests/{{lab_test_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"11095","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:57:00 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"5070116226bbce7b74c6282a4ecc0aa5\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"795","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"af5a375d-a2bb-4f1c-bac2-eed4b3cb06f9","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.199474","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"1115","body":"[{\"alternate_name\":\"HHV7, Human Herpes Virus Type 7 PCR\",\"lab_test_data\":{\"Ordering information\":\"If this test is urgent please contact the Medical Microbiologist or phone Microbiology Department.\",\"Alternate names\":\"HHV7, Human Herpes Virus Type 7 PCR\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"H7PCR\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Minimum Adult Volume\":\"4 mL\",\"Frequency\":\"As required\",\"External Laboratory\":\"VIDRL (Victorian Infectious Diseases Reference Laboratory)\"},\"lab_test_id\":\"IzzG\",\"lab_test_name\":\"Herpes Virus Type 7 PCR\",\"id\":\"58a67e996b4ef218c7e7377b\",\"search_score\":0.03027539},{\"alternate_name\":\"Hb, HGB\",\"lab_test_data\":{\"Alternate names\":\"Hb, HGB\",\"Laboratory\":\"Haematology\",\"Test Code\":\"Hb\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Minimum Adult Volume\":\"4 mL\",\"Frequency\":\"Daily\",\"Reference Interval\":\"\\u003ctable cellspacing=\\\"1\\\" cellpadding=\\\"1\\\" width=\\\"100%\\\" summary=\\\"\\\" border=\\\"1\\\"\\u003e\\r\\n    \\u003ctbody\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u003cspan style=\\\"FONT-WEIGHT: bold\\\"\\u003eMale\\u003c/span\\u003e\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u003cspan style=\\\"FONT-WEIGHT: bold\\\"\\u003eFemale\\u003c/span\\u003e\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u003cspan style=\\\"FONT-WEIGHT: bold\\\"\\u003eAll\\u003c/span\\u003e\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eAdult\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e130 - 180 g/L\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e115 - 165 g/L\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003ePregnancy\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e110 - 160 g/L\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e3 to 12 yrs\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e115 - 145 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e6 mths to 3 yrs\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e105 - 135 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e2 to 6 mths\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e95 - 135 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e1 to 2 mths\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e90 - 140 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e14 d to 1 mth\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e100 - 180 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e7 to 14 days\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e125 - 205 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e3 to 7 days\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e135 - 215 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003e1 to 3 dys\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e145 - 225 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eFirst day\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e \\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e135 - 195 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n    \\u003c/tbody\\u003e\\r\\n\\u003c/table\\u003e\"},\"lab_test_id\":\"IIVV\",\"lab_test_name\":\"Haemoglobin\",\"id\":\"58a67e8f6b4ef218c7e72e9e\",\"search_score\":0.029289149},{\"alternate_name\":\"C282Y, Cys282Tyr, H63D, HFE, His63Asp\",\"lab_test_data\":{\"Ordering information\":\"Please indicate if the patient is a known or suspected case or a relative of a known case.\",\"Alternate names\":\"C282Y, Cys282Tyr, H63D, HFE, His63Asp\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HEMPCR\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"A dedicated collection is required.\",\"Minimum Adult Volume\":\"5 mL\",\"Frequency\":\"Once a fortnight\",\"Storage Instructions\":\"Store specimen at Room Temperature\",\"External Laboratory\":\"Molecular Haematology, Melbourne Health Shared Pathology Service\"},\"lab_test_id\":\"IIV4\",\"lab_test_name\":\"Haemochromatosis Gene PCR Test\",\"id\":\"58a67e8f6b4ef218c7e72e98\",\"search_score\":0.029224712},{\"alternate_name\":\"HAV Serology, Hep A\",\"lab_test_data\":{\"Ordering information\":\"Hepatitis A is classified as a Group A condition by the Department of Health and as such requires immediate notification by telephone (1300651160) or fax (1300651170) upon initial diagnosis (presumptive or confirmed), followed by written notification within five days.\",\"Alternate names\":\"HAV Serology, Hep A\",\"Laboratory\":\"Biochemistry\",\"Test Code\":\"HAVG, HAVM\",\"Specimen types\":\"Blood\",\"Container types\":\"Serum tube (white top)\",\"Collection Instructions\":\"Can be combined with other Chemistry tests requiring same tube type.\",\"Minimum Adult Volume\":\"5 mL\",\"Notes\":\"If urgent performed at any time.\",\"Frequency\":\"Monday - Friday\",\"Reference Interval\":\"Negative\"},\"lab_test_id\":\"IIQV\",\"lab_test_name\":\"Hepatitis A Serology, IgG or IgM\",\"id\":\"58a67e906b4ef218c7e72f0a\",\"search_score\":0.026911458},{\"alternate_name\":\"Hg\",\"lab_test_data\":{\"Ordering information\":\"For testing of industrial exposure to mercury.  For organic forms of exposure, eg through food ingestion, blood testing is used.\",\"Alternate names\":\"Hg\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"MERCU\",\"Specimen types\":\"Spot Urine24 hr Urine\",\"Container types\":\"70ml Sterile Container (yellow top)24 hr Urine Plain Bottle\",\"Minimum Adult Volume\":\"10 mL\",\"Reference Interval\":\"\\u003c 30 nmol/L\",\"External Laboratory\":\"Biochemistry, Sydney South West Pathology Service, Royal Prince Alfred Hospital\"},\"lab_test_id\":\"I63G\",\"lab_test_name\":\"Mercury - Urine\",\"id\":\"58a67e926b4ef218c7e73156\",\"search_score\":0.026911458},{\"alternate_name\":\"HLA\",\"lab_test_data\":{\"Ordering information\":\"If the request is on a baby who has food or milk in the half hour prior to swab collection, the swab will not contain baby DNA, rendering the test null and void.  \\r\\nResults include HLA for narcolepsy and HLA DQ2/8 (Coeliac HLA)\\r\\nAt Austin Health this test must be ordered on a paper request form. It cannot be ordered via Cerner. \",\"Alternate names\":\"HLA\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HLA\",\"Specimen types\":\"Blood\",\"Container types\":\"9ml ACD (yellow)\",\"Collection Instructions\":\"ACD tubes available from Specimen CollectionADULT: 2 x 10 mL specimens in ACD tubes requiredCHILD (\\u003c12 yrs): 2 - 5 mL blood in ACD tube requiredBABY: Collect a buccal swab (inside cheek) using a sterile dry swab.  Rub inside cheek solidly for 10 secs on both cheeks using the same swab.  The baby should not have food or milk for half an hour beforehand, however water can be given.Please collect Mon - Thurs only.  Do not use these specimens for any other tests.  Place specimens into separate transport bag\",\"Notes\":\"Results are sent to the Requesting Doctor\",\"External Laboratory\":\"Tissue Typing Laboratory, Red Cross Blood Bank\"},\"lab_test_id\":\"IVVV\",\"lab_test_name\":\"Tissue Typing\",\"id\":\"58a67e976b4ef218c7e73523\",\"search_score\":0.026911458},{\"alternate_name\":\"A1ATP\",\"lab_test_data\":{\"Ordering information\":\"Serum Alpha 1 anti-trypsin should be performed prior to phenotyping.\\r\\nPhenotyping only indicated when total alpha 1 anti-trypsin level is low.\",\"Alternate names\":\"A1ATP\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"A1ATP1\",\"Specimen types\":\"Blood\",\"Container types\":\"Serum tube (white top)\",\"Collection Instructions\":\"Can combine collection with other tests requiring the same tube type.\",\"Minimum Adult Volume\":\"1 mL\",\"Paediatric Minimum Volume\":\"0.5 mL\",\"Frequency\":\"Once a week\",\"Storage Instructions\":\"Store at 4 deg C\",\"External Laboratory\":\"Biochemistry, Monash Health Pathology\"},\"lab_test_id\":\"164\",\"lab_test_name\":\"Alpha 1 Antitrypsin Phenotype\",\"id\":\"58a67e9f6b4ef218c7e73c93\",\"search_score\":0.026911458},{\"alternate_name\":\"HAVPCR, HAVRNA, Hep A\",\"lab_test_data\":{\"Ordering information\":\"Prior to ordering, please contact the Microbiology Registrar on Tel: 03 9496 5295\",\"Alternate names\":\"HAVPCR, HAVRNA, Hep A\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HAVPCR\",\"Cerner Test Name\":\"Hepatitis A NAD\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"Collect at room temperaturePlease collect in a 9 mL tube.\\r\\nThis test can be collected in the same tube with all Hepatitis PCR/NAD/genotype/resistance testing, EXCEPT Hepatitis B and C Viral Loads.\\r\\nAll these tests cannot be added on to previously collected serum tubes.\\r\\n \",\"Minimum Adult Volume\":\"9 mL\",\"Frequency\":\"As required\",\"Reference Interval\":\"Negative\",\"Storage Instructions\":\"Store at 4 deg C\",\"External Laboratory\":\"VIDRL (Victorian Infectious Diseases Reference Laboratory)\"},\"lab_test_id\":\"IQ34\",\"lab_test_name\":\"Hepatitis A PCR\",\"id\":\"58a67e9c6b4ef218c7e73a35\",\"search_score\":0.026877979},{\"alternate_name\":\"Pl Hb, Pl HGB, PLHB\",\"lab_test_data\":{\"Alternate names\":\"Pl Hb, Pl HGB, PLHB\",\"Laboratory\":\"Haematology\",\"Test Code\":\"PLHB\",\"Specimen types\":\"Blood\",\"Container types\":\"Lithium Heparin - Gel (green and yellow)\",\"Collection Instructions\":\"Collect specimen without using tourniquet.\",\"Minimum Adult Volume\":\"5 mL\",\"Frequency\":\"Monday - Friday\",\"Reference Interval\":\"\\u003c 4 mg/dL\"},\"lab_test_id\":\"I4V4\",\"lab_test_name\":\"Plasma Haemoglobin\",\"id\":\"58a67e946b4ef218c7e732f5\",\"search_score\":0.023547526},{\"alternate_name\":\"Haemoglobin H, Hb H\",\"lab_test_data\":{\"Ordering information\":\"Morphological detection of hbH bodies in supravital stained blood smear\",\"Alternate names\":\"Haemoglobin H, Hb H\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HBH\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"Can combine with other tests for Haemoglobinopathies requiring an EDTA tube.\",\"Minimum Adult Volume\":\"4 mL\",\"Paediatric Minimum Volume\":\"1 mL\",\"Notes\":\"Blood must be fresh (ie same day).\",\"Frequency\":\"As required\",\"Reference Interval\":\"Negative\"},\"lab_test_id\":\"IIVz\",\"lab_test_name\":\"Haemoglobin H\",\"id\":\"58a67e906b4ef218c7e72ea4\",\"search_score\":0.02343132}]"}],"_postman_id":"29c07aea-c350-646b-7f41-ca7185527e40"},{"name":"All Lab Tests","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","postman.setGlobalVariable(\"lab_test_id\", jsonData[0].lab_test_id);"]}}],"id":"b2cc007f-2b28-c60e-a190-052930a71e5b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/lab_tests?page=1&size=10","description":"<p>Get all lab tests</p>\n","urlObject":{"protocol":"http","path":["api","v1","lab_tests"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"9ffd84ce-4119-e996-0b1c-39266cc59a0f","name":"All Lab Tests","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/lab_tests?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","lab_tests"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"8942","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:57:27 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"f45177827e2dfb88af54c5f05cddfa1f\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"794","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"442bb374-1eae-4c01-9716-b3d99915f3fc","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.165967","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"638","body":"[{\"lab_test_name\":\"CKMB\",\"alternate_name\":\"\",\"lab_test_id\":\"IGGG\",\"lab_test_data\":{\"Ordering information\":\"CKMB assay is no longer available. c-Troponin I is a more specific test for myocardial infarction.  \",\"Laboratory\":\"Biochemistry\",\"Test Code\":\"Not available\",\"Specimen types\":\"See collection instructions\",\"Container types\":\"See collection instructions\",\"Collection Instructions\":\"This test is no longer available\",\"Frequency\":\"Not available\"}},{\"lab_test_name\":\"Clonazepam\",\"alternate_name\":\"Rivotril\",\"lab_test_id\":\"IGGI\",\"lab_test_data\":{\"Alternate names\":\"Rivotril\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"CLON\",\"Medicare details\":\"MBS number: 66812\",\"\":\"100% MBS price: $35.05\",\"Specimen types\":\"Blood\",\"Container types\":\"Lithium Heparin - No Gel (green)\",\"Collection Instructions\":\"Collect on ice\",\"Minimum Adult Volume\":\"5 mL\",\"Notes\":\"Half life: 35 hours (mid range)\",\"Frequency\":\"Once a week\",\"Reference Interval\":\"\\u003ctable border=\\\"1\\\" cellspacing=\\\"1\\\" summary=\\\"\\\" cellpadding=\\\"1\\\" width=\\\"100%\\\"\\u003e\\r\\n    \\u003ctbody\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eTherapeutic\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e32 - 158 nmol/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eToxic\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e\\u0026gt; 315 nmol/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n    \\u003c/tbody\\u003e\\r\\n\\u003c/table\\u003e\",\"Storage Instructions\":\"Store frozen at -20 deg C\",\"External Laboratory\":\"Royal Prince Alfred Hospital, Pathology\"}},{\"lab_test_name\":\"Clostridium difficile Toxin\",\"alternate_name\":\"\",\"lab_test_id\":\"IGG6\",\"lab_test_data\":{\"Ordering information\":\"Please mention in Clinical Notes that C. difficile testing is required.\",\"Laboratory\":\"Molecular Diagnostics\",\"Test Code\":\"CDPCR\",\"Specimen types\":\"Faeces\",\"Container types\":\"Faecal Pot (Brown topped)\",\"Collection Instructions\":\"Specimen should be 5 grams of semiformed or liquid faeces\",\"Frequency\":\"Daily\"}},{\"lab_test_name\":\"Clotting Profile\",\"alternate_name\":\"Coagulation Profile\",\"lab_test_id\":\"IGG4\",\"lab_test_data\":{\"Ordering information\":\"Tests for APTT, Prothrombin Time (PT), INR and Fibrinogen (FIB).\",\"Alternate names\":\"Coagulation Profile\",\"Laboratory\":\"Haematology\",\"Test Code\":\"COAG\",\"Specimen types\":\"Blood\",\"Container types\":\"Sodium Citrate (Blue top)\",\"Minimum Adult Volume\":\"4 mL\",\"Frequency\":\"Daily\",\"Reference Interval\":\"\\u003ctable border=\\\"1\\\" cellspacing=\\\"1\\\" summary=\\\"\\\" cellpadding=\\\"1\\\" width=\\\"100%\\\"\\u003e\\r\\n    \\u003ctbody\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eAPTT\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e22 - 38 secs\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003ePT\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e11 - 15 secs\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n        \\u003ctr\\u003e\\r\\n            \\u003ctd\\u003eFIB\\u003c/td\\u003e\\r\\n            \\u003ctd\\u003e2.0 - 4.0 g/L\\u003c/td\\u003e\\r\\n        \\u003c/tr\\u003e\\r\\n    \\u003c/tbody\\u003e\\r\\n\\u003c/table\\u003e\"}},{\"lab_test_name\":\"Clozapine\",\"alternate_name\":\"\",\"lab_test_id\":\"IGGV\",\"lab_test_data\":{\"Laboratory\":\"Clinical Pharmacology\",\"Test Code\":\"CLOZ\",\"Specimen types\":\"Blood\",\"Container types\":\"Lithium Heparin - No Gel (green)9ml PLAIN (red top)EDTA (purple)\",\"Collection Instructions\":\"Collection time prior to next dose (trough).\",\"Minimum Adult Volume\":\"3 mL\",\"Paediatric Minimum Volume\":\"0.5 mL\",\"Notes\":\"Time to peak:  2.5 hrs post doseHalf life:  12 hrs (6 - 33 hrs)\\r\\nAssay performed every Wednesday and Friday.\\r\\nDose determination for Clozapine is primarily based upon clinical response/haematological state/metabolic adverse events/cardiac adverse events. Wide inter- and intra-patient variability in plasma Clozapine levels exists and monitoring is useful for assessing compliance or assessing toxic levels. \\r\\nWhilst some studies have recommended a ‘therapeutic range’ evidence from multiple prospective, randomised, controlled clinical studies on a role for Clozapine TDM in determining dose is lacking. Similarly rigorous evidence of a specific toxic level is not available. Therefore, the reference range quoted with results (100 to 800 µg/L) is deliberately wider than most proposed ‘therapeutic ranges’ (of between approx 350 to 600 µg/L) and it is based on a range of evidence from different literature reports and on data from our laboratory. Levels \\u003e 800 µg/L are flagged as high, \\u003c 100 µg/L are flagged as low and levels \\u003e 1500 µg/L warrant urgent (telephone) reporting. These ranges have been endorsed by the Director of Mental Health and the Chemical Pathologist at Austin Health. Further reading: Stark A and Scott J 2012, ANZJPsych 46:816-825\\r\\n\\r\\nAssay performed Wednesdays and Fridays\",\"Frequency\":\"Twice a week\",\"Reference Interval\":\"100 - 800 ug/L\"}},{\"lab_test_name\":\"CMV Avidity Testing\",\"alternate_name\":\"\",\"lab_test_id\":\"IGGz\",\"lab_test_data\":{\"Laboratory\":\"Referred Test\",\"Test Code\":\"CMVAT\",\"Specimen types\":\"Blood\",\"Container types\":\"Serum tube (white top)\",\"Collection Instructions\":\"Collect at room temperature\",\"Minimum Adult Volume\":\"5 mL\",\"Frequency\":\"Once a week\",\"Storage Instructions\":\"Store at 4 deg C\",\"External Laboratory\":\"VIDRL (Victorian Infectious Diseases Reference Laboratory)\"}},{\"lab_test_name\":\"CMV PCR Quantitative\",\"alternate_name\":\"CMV Viral Load, CMVPCR, Cytomegalovirus viral load\",\"lab_test_id\":\"IGGQ\",\"lab_test_data\":{\"Ordering information\":\"This test detects Cytomegalovirus DNA. \\r\\nThis is a quantitative test for the detection of Cytomegalovirus in blood by PCR.\\r\\nFor CMVPCR requests on other samples besides blood, please refer to the following test \\\"CMV PCR Qualitative\\\".\\r\\nA dedicated 1 x 4mL EDTA blood tube is required.\\r\\nThis test cannot be performed on the same specimen as for an FBE or any other test unless an aliquot is made in the Molecular Diagnostics Lab prior to any other test being performed on the blood sample.\",\"Alternate names\":\"CMV Viral Load, CMVPCR, Cytomegalovirus viral load\",\"Laboratory\":\"Molecular Diagnostics\",\"Test Code\":\"CMVPCR\",\"Specimen types\":\"Blood\",\"Container types\":\"EDTA (purple)\",\"Collection Instructions\":\"Collect at room temperature\",\"Minimum Adult Volume\":\"0.3 mL\",\"Paediatric Minimum Volume\":\"0.3 mL\",\"Frequency\":\"Mon, Wed, Fri\",\"Storage Instructions\":\"Store specimen at Room Temperature\"}},{\"lab_test_name\":\"CMV Serology\",\"alternate_name\":\"\",\"lab_test_id\":\"IGG1\",\"lab_test_data\":{\"Ordering information\":\"Both IgG and IgM antibody tests are performed.\",\"Laboratory\":\"Biochemistry\",\"Test Code\":\"CMV\",\"Specimen types\":\"Blood\",\"Container types\":\"Serum tube (white top)\",\"Collection Instructions\":\"Can combine with other Chemistry tests requiring same tube type.\",\"Minimum Adult Volume\":\"5 mL\",\"Frequency\":\"Daily\",\"Reference Interval\":\"Negative for both IgG and IgM\"}},{\"lab_test_name\":\"Coeliac Disease HLA Genotyping\",\"alternate_name\":\"HLA for Narcolepsy, HLADQ2/8\",\"lab_test_id\":\"IGGw\",\"lab_test_data\":{\"Alternate names\":\"HLA for Narcolepsy, HLADQ2/8\",\"Laboratory\":\"Referred Test\",\"Test Code\":\"HLADQ\",\"Specimen types\":\"See collection instructions\",\"Container types\":\"See collection instructions\",\"Collection Instructions\":\"ADULT:  20 mL blood (2 x 10 mL) special tissue typing YELLOW top ACD tubes available from Specimen CollectionCHILD (2-12 yrs):  2.5 mL blood in special tissue typing YELLOW top ACD tube.  Can use 1 x 5 mL ACD tube if available or 1 x 5 mL EDTA tube.BABY:  1 - 2 mL whole blood in an EDTA tube. This is the preferred specimen.\\r\\nIf an EDTA specimen cannot be collected from the baby, a buccal swab (inside of cheek) may be acceptable. Use a sterile dry swab.  Rub inside of cheek solidly for 10 secs, each cheek, with same swab.  Send to the Laboratory immediately.  Do NOT collect on Fridays.  The baby must not be given any food or milk for half an hour prior to swabbing, as swab will not contain baby DNA.  The baby may have some water.\\r\\nIf other tests are requested and use the same tube types, another specimen in a separate tube must be collected.\",\"Frequency\":\"Monday - Friday\",\"Storage Instructions\":\"Store specimen at Room TemperatureDo not centriguge specimen. Store whole blood.\",\"External Laboratory\":\"Tissue Typing Laboratory, Red Cross Blood Bank\"}},{\"lab_test_name\":\"Cold Agglutinins Test\",\"alternate_name\":\"Cold agglutinins, Cold Aggs\",\"lab_test_id\":\"IGIG\",\"lab_test_data\":{\"Alternate names\":\"Cold agglutinins, Cold Aggs\",\"Laboratory\":\"Blood Bank\",\"Test Code\":\"CAGGS (Screen), CAGGT (Titre)\",\"Specimen types\":\"Blood\",\"Container types\":\"9ml PLAIN (red top)\",\"Collection Instructions\":\"Tubes, needles and syringes must be pre-warmed to 37 deg C and specimen placed into \\\"hot box\\\" and transported to the laboratory immediately.  Call laboratory for the \\\"hot box\\\"\",\"Minimum Adult Volume\":\"9 mL\",\"Paediatric Minimum Volume\":\"1 mL\",\"Frequency\":\"As required\"}}]"}],"_postman_id":"b2cc007f-2b28-c60e-a190-052930a71e5b"},{"name":"Lab Test","id":"becf848b-98bd-cd66-1d5a-e9c939122996","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/lab_tests/{{lab_test_id}}","description":"<p>Get a lab test by <strong>lab_test_id</strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","lab_tests","{{lab_test_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"291abf1b-201e-f876-0176-2359c4f3f636","name":"Lab Test","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/lab_tests/{{lab_test_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"452","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:57:39 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"c3a817e3746223b3b041eab2a834adc3\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"793","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"90b8040f-cb86-4b1e-b645-753a4a8aa9a3","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.087432","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"859","body":"{\"lab_test_name\":\"CKMB\",\"alternate_name\":\"\",\"lab_test__id\":\"IGGG\",\"lab_test_data\":{\"Ordering information\":\"CKMB assay is no longer available. c-Troponin I is a more specific test for myocardial infarction.  \",\"Laboratory\":\"Biochemistry\",\"Test Code\":\"Not available\",\"Specimen types\":\"See collection instructions\",\"Container types\":\"See collection instructions\",\"Collection Instructions\":\"This test is no longer available\",\"Frequency\":\"Not available\"}}"}],"_postman_id":"becf848b-98bd-cd66-1d5a-e9c939122996"}],"id":"8b1a306b-e45b-a319-eb13-651aa8343fbb","_postman_id":"8b1a306b-e45b-a319-eb13-651aa8343fbb","description":""},{"name":"05- Diseases","item":[{"name":"Search Diseases","id":"c42da019-1805-d8cd-0ccb-65c41cff36da","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/diseases/{{disease_query}}","description":"<p>Search a disease by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","diseases","{{disease_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"54880b3d-dea3-2a7d-648d-2876a7098aa6","name":"Search Diseases","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/diseases/{{disease_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"4086","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 18:58:10 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"d87ac950d70522fd33e7069823681abd\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"791","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"e318f950-0054-48e1-bd65-53d64fc6ccd9","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.208317","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"1737","body":"[{\"disease_name\":\"Malaria\",\"disease_cat\":\"Rare diseases, Infectious diseases\",\"disease_info\":\"Malaria is a serious disease caused by a parasite. you get it when an infected mosquito bites you. malaria is a major cause of death worldwide, but it is almost wiped out in the united states. the disease is mostly a problem in developing countries with warm climates. if you travel to these countries, you are at risk. there are four different types of malaria caused by four related parasites. the most deadly type occurs in africa south of the sahara desert. malaria symptoms include chills, flu-like symptoms, fever, vomiting, diarrhea, and jaundice. a blood test can diagnose it. it can be life-threatening. however, you can treat malaria with drugs. the type of drug depends on which kind of malaria you have and where you were infected. malaria can be prevented. when traveling to malaria-prone regions see your doctor for medicines that protect you wear insect repellent with deet cover up sleep under mosquito netting centers for disease control and prevention\",\"disease_id\":\"I13V1\",\"search_score\":12.985109},{\"disease_name\":\"Malaria Prevention (Malaria Prophylaxis)\",\"disease_cat\":\"\",\"disease_info\":\"Action taken to prevent Malaria, a parasitic disease characterized by fever, chills, and anemia.\",\"disease_id\":\"64z4I\",\"search_score\":8.483103},{\"disease_name\":\"Plasmodium Malariae Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria caused by a parasite plasmodium malariae, which is marked by recurrence of paroxysms at 72-hour intervals.\",\"disease_id\":\"6G1V1\",\"search_score\":7.9121737},{\"disease_name\":\"Mixed Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"Mixed Malaria, also known as malaria fever by more than one parasite, is related to malaria and acalculous cholecystitis. An important gene associated with Mixed Malaria is LRSAM1 (leucine rich repeat and sterile alpha motif containing 1).\",\"disease_id\":\"6G1GV\",\"search_score\":6.9934397},{\"disease_name\":\"Malaria, Severe\",\"disease_cat\":\"Infectious diseases, Rare diseases\",\"disease_info\":\"Malaria, Severe, also known as malaria, is related to malaria and sepsis. An important gene associated with Malaria, Severe is CR1 (complement component (3b/4b) receptor 1 (Knops blood group)), and among its related pathways are Tuberculosis and Leishmaniasis. The drugs hydroxychloroquine and hydroxychloroquine sulfate and the compounds prednisolone and mannose have been mentioned in the context of this disorder. Affiliated tissues include liver.\",\"disease_id\":\"Iw1VV\",\"search_score\":6.9934397},{\"disease_name\":\"Cerebral Malaria (CM)\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria that involves neurologic damage resulting from blockage of the blood vessels, caused due to the infection of the red blood cells by plasmodium species.\",\"disease_id\":\"6G634\",\"search_score\":5.99846},{\"disease_name\":\"Plasmodium Ovale Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria characaterized as a relatively mild form caused by a parasite plasmodium ovale, which is characterized by tertian chills and febrile paroxysms, and that ends spontaneously.\",\"disease_id\":\"6G1V6\",\"search_score\":5.99846},{\"disease_name\":\"Plasmodium Vivax Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria that is caused by the protozoan parasite plasmodium vivax, which induces paroxysms at 48-hour intervals.\",\"disease_id\":\"6G6z3\",\"search_score\":5.594752},{\"disease_name\":\"Plasmodium Falciparum Malaria\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"A malaria described as a severe form of the disease caused by a parasite plasmodium falciparum, which is marked by irrregular recurrence of paroxysms and prolonged or continuous fever.\",\"disease_id\":\"6G4G6\",\"search_score\":5.594752},{\"disease_name\":\"Malaria Due to G6pd Deficiency\",\"disease_cat\":\"Infectious diseases\",\"disease_info\":\"Malaria Due to G6pd Deficiency An important gene associated with Malaria Due to G6pd Deficiency is G6PD (glucose-6-phosphate dehydrogenase).\",\"disease_id\":\"6Gw3w\",\"search_score\":4.8954077}]"}],"_postman_id":"c42da019-1805-d8cd-0ccb-65c41cff36da"},{"name":"All Diseases","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","","postman.setGlobalVariable(\"disease_id\", jsonData[0].disease_id);"]}}],"id":"cdc44b3b-cc9f-9c60-39f9-352a3da32914","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/diseases?page=1&size=10","description":"<p>Get all diseases</p>\n","urlObject":{"protocol":"http","path":["api","v1","diseases"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"e1bbc380-8577-0b97-28d5-de555e372377","name":"All Diseases","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/diseases?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","diseases"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"8715","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:02:33 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"52a0845e9b048077cc68f309c1486e18\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"786","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"02c30da0-6b3d-4232-a80f-2c8769519553","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"13.782827","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"13921","body":"[{\"disease_name\":\"Neurofibromatosis\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases, Eye diseases, Cardiovascular diseases, Nephrological diseases, Ear diseases, Skin diseases, Fetal diseases, Cancer diseases, Gastrointestinal diseases\",\"disease_info\":\"Neurofibromatosis is a genetic disorder of the nervous system. it mainly affects how nerve cells form and grow. it causes tumors to grow on nerves. you can get neurofibromatosis from your parents, or it can happen because of a mutation (change) in your genes. once you have it, you can pass it along to your children. usually the tumors are benign, but sometimes they can become cancerous. there are three types of neurofibromatosis: type 1 (nf1) causes skin changes and deformed bones. it usually starts in childhood. sometimes the symptoms are present at birth. type 2 (nf2) causes hearing loss, ringing in the ears, and poor balance. symptoms often start in the teen years. schwannomatosis causes intense pain. it is the rarest type. doctors diagnose the different types based on the symptoms. genetic testing is also used to diagnose nf1 and nf2. there is no cure. treatment can help control symptoms. depending on the type of disease and how bad it is, treatment may include surgery to remove tumors, radiation therapy, and medicines. nih: national institute of neurological disorders and stroke\",\"disease_id\":\"IG\"},{\"disease_name\":\"Hereditary Sensory and Autonomic Neuropathy Type Ii\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases, Gastrointestinal diseases\",\"disease_info\":\"Hereditary sensory and autonomic neuropathy type II (HSAN2) is a condition that primarily affects the sensory nerve cells (sensory neurons), which transmit information about sensations such as pain, temperature, and touch. These sensations are impaired in people with HSAN2. In some affected people, the condition may also cause mild abnormalities of the autonomic nervous system, which controls involuntary body functions such as heart rate, digestion, and breathing. The signs and symptoms of HSAN2 typically begin in infancy or early childhood.\",\"disease_id\":\"I4\"},{\"disease_name\":\"Glycogen Storage Disease Iv\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases, Liver diseases, Cardiovascular diseases, Blood diseases, Endocrine diseases, Muscle diseases, Nephrological diseases\",\"disease_info\":\"Glycogen storage disease type 4 (gsd 4) is part of a group of disorders which lead to abnormal accumulation of glycogen (a storage form of glucose) in various parts of the body. symptoms of gsd 4 usually begin in infancy and typically include failure to thrive; enlarged liver and spleen (hepatosplenomegaly); and in many cases, progressive liver cirrhosis and liver failure. in rare cases individuals may have a form with non-progressive liver disease, or a severe neuromuscular form. gsd 4 is caused by mutations in the gbe1 gene and is inherited in an autosomal recessive manner. treatment typically focuses on the specific symptoms that are present in each individual.\",\"disease_id\":\"I6\"},{\"disease_name\":\"Brain Cancer\",\"disease_cat\":\"Rare diseases, Cancer diseases, Neuronal diseases\",\"disease_info\":\"Cancer of the brain is usually called a brain tumor. there are two main types. a primary brain tumor starts in the brain. a metastatic brain tumor starts somewhere else in the body and moves to the brain. brain tumors can be benign, with no cancer cells, or malignant, with cancer cells that grow quickly. brain tumors can cause many symptoms. some of the most common are headaches, usually worse in the morning nausea and vomiting changes in your ability to talk, hear, or see problems with balance or walking problems with thinking or memory muscle jerking or twitching numbness or tingling in arms or legs doctors diagnose brain tumors by doing a neurologic exam and tests including an mri, ct scan, and biopsy. people with brain tumors have several treatment options. the options are surgery, radiation therapy, and chemotherapy. many people get a combination of treatments. nih: national cancer instituteBrain Tumor Cancer\",\"disease_id\":\"Iz\"},{\"disease_name\":\"Autosomal Dominant Neuronal Ceroid Lipofuscinosis 4b\",\"disease_cat\":\"Rare diseases, Neuronal diseases\",\"disease_info\":\"Autosomal Dominant Neuronal Ceroid Lipofuscinosis 4b, is also known as ceroid lipofuscinosis, neuronal, 4b, autosomal dominant\",\"disease_id\":\"V1\"},{\"disease_name\":\"Neuropathy Hereditary Sensory and Autonomic Type 1\",\"disease_cat\":\"Neuronal diseases\",\"disease_info\":\"Hereditary sensory neuropathy type 1 is a condition characterized by nerve abnormalities in the legs and feet (peripheral neuropathy). Many people with this condition have tingling, weakness, and a reduced ability to feel pain and sense hot and cold. Some affected individuals do not lose sensation, but instead feel shooting pains in their legs and feet. As the disorder progresses, the sensory abnormalities can affect the hands, arms, shoulders, and abdomen. Affected individuals may also experience muscle wasting and weakness as they get older, but this varies widely within families.\",\"disease_id\":\"I3\"},{\"disease_name\":\"Mitochondrial Neurogastrointestinal Encephalopathy Disease\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases, Gastrointestinal diseases, Muscle diseases\",\"disease_info\":\"Mitochondrial neurogastrointestinal encephalopathy (mngie) syndrome is a condition that particularly affects the digestive system and nervous system. signs and symptoms of this condition most often begin by age 20 and worsen with time. almost all people with mngie have gastrointestinal dysmotility, in which the muscles and nerves of the digestive system do not move food through the digestive tract efficiently. affected individuals also experience peripheral neuropathy, droopy eyelids (ptosis), weakness of the muscles that control eye movement (ophthalmoplegia), and hearing loss. leukoencephalopathy, which is the deterioration of a type of brain tissue known as white matter, is a hallmark of mngie; however it does not usually cause symptoms in people with this disorder. mutations in the tymp gene cause mngie, and this condition is inherited in an autosomal recessive pattern.Encephalopathy\",\"disease_id\":\"I1\"},{\"disease_name\":\"Dnmt1-Related Dementia, Deafness, and Sensory Neuropathy\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases, Ear diseases, Mental diseases\",\"disease_info\":\"Hereditary sensory neuropathy type ie (hsnie) is a degenerative disorder of the central and peripheral the nervous systems. it is characterized by sensory impairment of the feet and lower legs (affecting sensations such as pain, temperature, and touch), loss of the ability to sweat (sudomotor function) in the hands and feet, sensorineural hearing loss, and gradual loss of intellectual function (dementia). symptoms typically begin in the twenties or thirties, although age of onset and symptom severity are variable, even within families. hsnie is caused by mutations in the dnmt1 gene. this condition is inherited in an autosomal dominant pattern\",\"disease_id\":\"Iw\"},{\"disease_name\":\"Abducens Nerve Disease\",\"disease_cat\":\"Rare diseases, Eye diseases, Neuronal diseases\",\"disease_info\":\"Sixth nerve palsy is a nerve disorder due to damage of the sixth cranial nerve. the disorder prevents some of the muscles that control eye movement from working properly. affected people cannot turn the eye outwards toward the ear. other signs and symptoms may include double vision, headaches, and pain around the eye. sixth nerve palsy may be caused by many things, including stroke, brain aneurysm, diabetic neuropathy, trauma, infections, inflammation, tumors, migraine headaches or intracranial pressure. eye patches, glasses, corticosteroids, and/or botulinum toxin may be used to ease symptoms. some people may not need any treatment, while others may need surgery\",\"disease_id\":\"6G\"},{\"disease_name\":\"Neurogenic Diabetes Insipidus\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases\",\"disease_info\":\"Neurogenic diabetes insipidus is a disease that causes frequent urination. this type of diabetes insipidus results from damage to the pituitary gland, which disrupts the normal storage and release of antidiuretic hormone (adh). when this hormone reaches the kidneys, it directs them to make less urine. damage to the pituitary gland can be caused by different diseases as well as by head injuries, neurosurgery, or genetic disorders. to treat the adh deficiency that results from any kind of damage to the pituitary, a synthetic hormone called desmopressin can be taken by an injection, a nasal spray, or a pill.\",\"disease_id\":\"6I\"}]"}],"_postman_id":"cdc44b3b-cc9f-9c60-39f9-352a3da32914"},{"name":"Disease","id":"d9be37ab-31a6-a7f3-2d33-318de51aa651","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/diseases/{{disease_id}}","description":"<p>Get a disease by <strong>disease_id</strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","diseases","{{disease_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f2e65102-277e-927d-a028-e49742289366","name":"Disease","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/diseases/{{disease_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1392","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:06:05 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"d4b9e1441e05234aa5d270a2e532860e\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"783","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"4f3d8381-f86e-412a-a394-3cdbd62420d5","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"40.007076","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"40177","body":"{\"disease_name\":\"Neurofibromatosis\",\"disease_cat\":\"Genetic diseases, Rare diseases, Neuronal diseases, Eye diseases, Cardiovascular diseases, Nephrological diseases, Ear diseases, Skin diseases, Fetal diseases, Cancer diseases, Gastrointestinal diseases\",\"disease_info\":\"Neurofibromatosis is a genetic disorder of the nervous system. it mainly affects how nerve cells form and grow. it causes tumors to grow on nerves. you can get neurofibromatosis from your parents, or it can happen because of a mutation (change) in your genes. once you have it, you can pass it along to your children. usually the tumors are benign, but sometimes they can become cancerous. there are three types of neurofibromatosis: type 1 (nf1) causes skin changes and deformed bones. it usually starts in childhood. sometimes the symptoms are present at birth. type 2 (nf2) causes hearing loss, ringing in the ears, and poor balance. symptoms often start in the teen years. schwannomatosis causes intense pain. it is the rarest type. doctors diagnose the different types based on the symptoms. genetic testing is also used to diagnose nf1 and nf2. there is no cure. treatment can help control symptoms. depending on the type of disease and how bad it is, treatment may include surgery to remove tumors, radiation therapy, and medicines. nih: national institute of neurological disorders and stroke\",\"disease__id\":\"IG\"}"}],"_postman_id":"d9be37ab-31a6-a7f3-2d33-318de51aa651"}],"id":"cca9e528-1831-cbb3-30a1-8b5855f70774","_postman_id":"cca9e528-1831-cbb3-30a1-8b5855f70774","description":""},{"name":"06- Food","item":[{"name":"Search Food Items","id":"b317e557-69db-9683-74fc-44cd9a6ceca7","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/food/items/{{food_item_query}}","description":"<p>Search a food item by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","food","items","{{food_item_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"48db70a0-429a-09d5-6e7a-56df09b760d7","name":"Search Food Item","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/food/items/{{food_item_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1922","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:08:07 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"a98c32e54fc6fef4d4eb4244dd272aee\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"782","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"09d5553d-46e4-4755-906e-436803a4f6d2","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.217173","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"2124","body":"[{\"calories\":140,\"item_name\":\"Bombay Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zIqO43hMI3Q0mw3wGM1ww3M1\",\"food_item_id\":\"zQ343V1MO1hwGzMOIhV0413G\",\"search_score\":9.646431},{\"calories\":230,\"item_name\":\"Aloo Paratha\",\"serving_qty\":1.0,\"serving_unit\":\"piece\",\"food_brand_id\":\"zVz3hzmVhGhqqmzMQMOI1q14\",\"food_item_id\":\"z1V4O0I0Iqm63ImOImzhz403\",\"search_score\":9.646431},{\"calories\":100,\"item_name\":\"Aloo Palak\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zIqO43OzI3Q0mw3wGM1w11wM\",\"food_item_id\":\"zIq60OOVhhwO00IIIz1Gqmz4\",\"search_score\":9.323974},{\"calories\":150,\"item_name\":\"Aloo Matar\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zIqO43hMI3Q0mw3wGM1ww3M1\",\"food_item_id\":\"zIh40hmOw3h4mQq0MVq0Ih60\",\"search_score\":9.323974},{\"calories\":265,\"item_name\":\"Aloo Paratha\",\"serving_qty\":1.0,\"serving_unit\":\"piece\",\"food_brand_id\":\"zzII1Im6zQGV303630mq3zVO\",\"food_item_id\":\"zz10003q4mVIGzqh3qOOQ3V1\",\"search_score\":9.323974},{\"calories\":320,\"item_name\":\"Aloo Chaat\",\"serving_qty\":1.0,\"serving_unit\":\"pouch\",\"food_brand_id\":\"zIqO41IOI3Q0mw3wGM1wOz13\",\"food_item_id\":\"z6zmh4MwQww1MzGzGGGGGV64\",\"search_score\":9.323974},{\"calories\":107,\"item_name\":\"Saag Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"pouch portion\",\"food_brand_id\":\"zIqO43hwI3Q0mw3wGM1wwQqV\",\"food_item_id\":\"z1G46zm40MhMIIIG6IO4mz34\",\"search_score\":9.32207},{\"calories\":101,\"item_name\":\"Bombay Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"pack\",\"food_brand_id\":\"zzz1qQQOV34mMIG0Vqm6qVOh\",\"food_item_id\":\"z3MIw1I4q3mQ0qG06m1z4hwI\",\"search_score\":9.32207},{\"calories\":124,\"item_name\":\"Aloo Puri\",\"serving_qty\":1.0,\"serving_unit\":\"piece\",\"food_brand_id\":\"zVQ0Vh6GMzhVqh0zImGhOhV4\",\"food_item_id\":\"zzVMIOQOQG6V36VI64Vz310O\",\"search_score\":9.32207},{\"calories\":240,\"item_name\":\"Dum Aloo\",\"serving_qty\":0.5,\"serving_unit\":\"tray\",\"food_brand_id\":\"zVQ0Vh6GMzhVqh0zImGhOhV4\",\"food_item_id\":\"zQwqhwh3qV3hOqMq636zQmV6\",\"search_score\":9.32207}]"}],"_postman_id":"b317e557-69db-9683-74fc-44cd9a6ceca7"},{"name":"All Food Items","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","postman.setGlobalVariable(\"food_item_id\", jsonData[0].food_item_id);"]}}],"id":"3114d949-e2c0-98ab-0661-051a878725d8","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/items?page=1&size=10","description":"<p>Get all food items</p>\n","urlObject":{"protocol":"http","path":["api","v1","food","items"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"848bb0a0-c743-6d69-8f20-668eba9c9c7b","name":"All Food Items","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/food/items?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","food","items"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1707","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:15:32 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"7238337f5e321d828ca17808ccaecedd\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"781","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"4c440f87-560d-4558-9c12-b35729ae651d","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.234883","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"1247","body":"[{\"item_name\":\"+ Beer Braised Bacon\",\"calories\":170,\"serving_qty\":1.13,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11Q3wQ3hw4I06qq3Iq0\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"+ MACHO FRIES\",\"calories\":1370,\"serving_qty\":null,\"serving_unit\":\"\",\"food_item_id\":\"qqmm1VQwhqVQG6Q03OVMM00w\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"+ Sesame Ginger Beef\",\"calories\":110,\"serving_qty\":3.5,\"serving_unit\":\"oz\",\"food_item_id\":\"qqmm1V1QQV3wOOII1z0I4V4M\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"8 Grain Toast\",\"calories\":120,\"serving_qty\":1.5,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11QqOI0IM4OmM0IOzO4\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Aged Cheddar\",\"calories\":120,\"serving_qty\":1.0,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11Qq6q4G6GOmmIwwz3O\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Alfalfa\",\"calories\":10,\"serving_qty\":1.0,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11QI3Q4mVzVzq33MGVq\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"ALL NATURAL SODA\",\"calories\":170,\"serving_qty\":null,\"serving_unit\":\"\",\"food_item_id\":\"VQ4qQ11QVI6h4OVzwww6qzmm\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Amish Blue\",\"calories\":100,\"serving_qty\":1.0,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11Qw14MwMhQMMMmw3V6\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Amish Blue Cheese\",\"calories\":100,\"serving_qty\":0.98,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11QO4OQ044QzGzIq0Ow\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Apple Cider Viniagrette\",\"calories\":150,\"serving_qty\":1.0,\"serving_unit\":\"liq. oz\",\"food_item_id\":\"VQ4qQ11Qz3qhqwqwz6OzmV1I\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"}]"}],"_postman_id":"3114d949-e2c0-98ab-0661-051a878725d8"},{"name":"Food Item","id":"7730226b-05cd-6e20-2087-33e27fd0e0ef","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/items/{{food_item_id}}","description":"<p>Get a food item by <strong>food_item_id</strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","food","items","{{food_item_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c3a2135e-caff-76ae-eb97-917e3a4c7211","name":"Food Item","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/items/{{food_item_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1475","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:16:01 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"bd7a1dbe2c9975c1b722685d2ea69528\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"780","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"9c1b4c2e-0bd7-4f8a-b67d-700a574017f9","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.255277","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"760","body":"{\"food_item__id\":\"VQ4qQ11Q3wQ3hw4I06qq3Iq0\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\",\"food_restaurant_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\",\"brand_name\":\"Bareburger\",\"brand_logo\":null,\"item_type\":1,\"item_name\":\"+ Beer Braised Bacon\",\"upc\":null,\"ingredient_statement\":\"smoked pork belly (water, salt, turbinado sugar, celery powder, sea salt, no nitrates added except for the naturally occurring nitrates in celery powder \\u0026 sea salt), burger rub (natural smoke flavor, worcestershire sauce powder, tomato, salt, garlic, onion, cumin, mustard, black pepper) carrots, spanish onion, celery, veggie stock, chicken stock, stout beer (may or may not be gluten free), leeks, instant espresso\",\"serving_qty\":1.13,\"serving_unit\":\"oz\",\"metric_qty\":32,\"metric_unit\":\"g\",\"calories\":170,\"calories_from_fat\":150,\"total_fat\":17,\"saturated_fat\":6,\"trans_fat\":0,\"cholesterol\":25,\"sodium\":220,\"total_carb\":0,\"dietary_fiber\":0,\"sugars\":0,\"protein\":3,\"potassium\":null,\"vitamin_a\":null,\"vitamin_c\":null,\"calcium_dv\":null,\"iron_dv\":null,\"related\":[{\"food_item_id\":\"hQVGV3GwGhIIqQzhh04Mz0q0\",\"item_name\":\"BEER BACON SLIDERS\",\"calories\":null},{\"food_item_id\":\"VQ4qQ11QGmQOwOqV0m3GGO14\",\"item_name\":\"Root Beer Float 20oz\",\"calories\":null},{\"food_item_id\":\"VQ4qQ11QQQOwz4qI4mIGwwMh\",\"item_name\":\"Turkey Bacon\",\"calories\":null},{\"food_item_id\":\"VQ4qQ11QMMzMOMQ6Oz3V0qQ6\",\"item_name\":\"Country Bacon\",\"calories\":null},{\"food_item_id\":\"VQ4qQ11Qq6hIQqm3zI0mGG3z\",\"item_name\":\"Duck Bacon\",\"calories\":null}]}"}],"_postman_id":"7730226b-05cd-6e20-2087-33e27fd0e0ef"},{"name":"Search Food Brands","id":"d6d6df65-9bc8-eb12-eeef-5c2e69ec0282","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/food/brands/{{food_brand_query}}","description":"<p>Search food brands by its name, like Pepsi, Lays, Parle etc</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","food","brands","{{food_brand_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"f730407d-e4e9-85c1-0282-77b55607caf8","name":"Search Food Brands","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/food/brands/{{food_brand_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1029","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:17:07 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"aa851ef2532924b6fe4cd4e840a03153\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"778","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"0617e1ee-b605-4a1e-8894-e313b64df0ce","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.212510","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"715","body":"[{\"logo\":null,\"name\":\"Parle\",\"food_brand_id\":\"zV1zqQ00qV1Vm3V33VQhzQ1w\",\"search_score\":3.3269541},{\"logo\":null,\"name\":\"Marley's\",\"food_brand_id\":\"zIqO43hVI3Q0mw3wGM1ww4GQ\",\"search_score\":0.101224415},{\"logo\":null,\"name\":\"Parkers\",\"food_brand_id\":\"zIqO43O3I3Q0mw3wGM1w1M6Q\",\"search_score\":0.09796198},{\"logo\":null,\"name\":\"Palermo's\",\"food_brand_id\":\"zIqO43O4I3Q0mw3wGM1w1QO0\",\"search_score\":0.09489788},{\"logo\":null,\"name\":\"Paleo\",\"food_brand_id\":\"z6m3mG6GMMMOG0GOGGGGGGzq\",\"search_score\":0.09489788},{\"logo\":null,\"name\":\"Carley's\",\"food_brand_id\":\"zV3V11VzVGQQGzVMQwO1GmwQ\",\"search_score\":0.08905016},{\"logo\":null,\"name\":\"Paleokrunch\",\"food_brand_id\":\"zVwIw16qM1hOmwG43MwmMmqq\",\"search_score\":0.08348452},{\"logo\":null,\"name\":\"Paleonola\",\"food_brand_id\":\"zVOh1q4QV0wVQQ6VV30q0Vwm\",\"search_score\":0.08348452},{\"logo\":null,\"name\":\"Farley's Grocery\",\"food_brand_id\":\"z6hmOIwVOOMz6VmGQ1GGG6mh\",\"search_score\":0.06326526},{\"logo\":null,\"name\":\"Palermo's Flatbread\",\"food_brand_id\":\"zIqO41IqI3Q0mw3wGM1wOz01\",\"search_score\":0.057399593}]"}],"_postman_id":"d6d6df65-9bc8-eb12-eeef-5c2e69ec0282"},{"name":"All Food Brands","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","postman.setGlobalVariable(\"food_brand_id\", jsonData[0].food_brand_id);"]}}],"id":"84ac9a3f-70b1-d739-9f81-6b9065d1bcdf","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/brands?page=1&size=10","description":"<p>Get all availaible food brands</p>\n","urlObject":{"protocol":"http","path":["api","v1","food","brands"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"0899b1de-4148-8389-f9b7-ab8f312ee6a6","name":"All Food Brands","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/food/brands?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","food","brands"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"699","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:17:31 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"327202a6775948ac92b2c0bb7a646cdb\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"777","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"50498da2-a802-4d0c-8a07-89609c2683f1","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.169693","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"680","body":"[{\"brand_name\":\"Our Family\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"brand_name\":\"Raley's Fine Foods\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14O3\"},{\"brand_name\":\"Tops\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14O1\"},{\"brand_name\":\"Parade\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14Ow\"},{\"brand_name\":\"Safeway\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OM\"},{\"brand_name\":\"Vons\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OO\"},{\"brand_name\":\"Pampa\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14Oh\"},{\"brand_name\":\"Springfield\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14Oq\"},{\"brand_name\":\"Wegmans\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14Om\"},{\"brand_name\":\"Safeway Kitchens\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14O0\"}]"}],"_postman_id":"84ac9a3f-70b1-d739-9f81-6b9065d1bcdf"},{"name":"Food Items by Brand","id":"df0056d4-271d-1d19-58eb-e0de3c3da9b3","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/brands/{{food_brand_id}}/items?page=1&size=10","description":"<p>Get food items by a brand </p>\n","urlObject":{"protocol":"http","path":["api","v1","food","brands","{{food_brand_id}}","items"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"9ee57480-1e3e-fccf-8ea8-c808b326e14e","name":"Food Items by Brand","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/food/brands/{{food_brand_id}}/items?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","food","brands","{{food_brand_id}}","items"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1872","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:20:46 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"33b8f2e721b68934af51e0675a53d2d8\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"772","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"ece3b12b-ae07-4d81-9265-ee93c68d5380","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.169662","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"925","body":"[{\"item_name\":\"1% Lowfat Milk\",\"calories\":110,\"serving_qty\":1.0,\"serving_unit\":\"cup\",\"food_item_id\":\"zVhOOQ1hzqIQ6w3VzhMOVV6z\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"1/3 lb. Angus Burger\",\"calories\":380,\"serving_qty\":1.0,\"serving_unit\":\"patty\",\"food_item_id\":\"zQ01MzIMhGIOzwhG4Vzq0mm0\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Grated Cheese, Parmesan \\u0026 Romano\",\"calories\":25,\"serving_qty\":1.0,\"serving_unit\":\"tablespoon\",\"food_item_id\":\"zIhVGV33w3h4mQq0MVq0zzQQ\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Blend, Berry Flavor\",\"calories\":130,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hMIw3h4mQq0MVq0IwmM\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Blend, Cherry Punch Flavor\",\"calories\":130,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hMIw3h4mQq0MVq0Iwmh\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Blend, Fruit Punch Flavor\",\"calories\":120,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hwhw3h4mQq0MVq0IwhQ\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Blend, Grape\",\"calories\":130,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hwOw3h4mQq0MVq0Iwh4\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Blend, Grape Flavor\",\"calories\":130,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hM6w3h4mQq0MVq0Iwm0\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Blend, Orange Tangerine Flavor\",\"calories\":140,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hM6w3h4mQq0MVq0Iwmm\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"},{\"item_name\":\"100% Juice Tomato\",\"calories\":45,\"serving_qty\":8.0,\"serving_unit\":\"fl oz\",\"food_item_id\":\"zIh40hwhw3h4mQq0MVq0Iwh3\",\"food_brand_id\":\"zIqO43OGI3Q0mw3wGM1w14OQ\"}]"}],"_postman_id":"df0056d4-271d-1d19-58eb-e0de3c3da9b3"},{"name":"Search Food Restaurants","id":"1b3ecbb0-173e-343b-5a57-f4195fb251d0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/food/restaurants/{{food_restaurant_query}}","description":"<p>Search food restaurants like Subway, McDonalds, Dominos etc.</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","food","restaurants","{{food_restaurant_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"4af92647-c9f3-b0b3-dfac-c41974691538","name":"Search Food Restaurants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/food/restaurants/{{food_restaurant_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"168","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:21:01 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"eeb867b7becbb41f5a384dab1ff45b35\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"771","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"2b359329-4c38-427d-856f-1604ef372305","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.133711","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"660","body":"[{\"logo\":\"https://d1r9wva3zcpswd.cloudfront.net/533d7b89bf66c42a2eec2a92.png\",\"name\":\"Subway\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGz\",\"search_score\":8.8592205}]"}],"_postman_id":"1b3ecbb0-173e-343b-5a57-f4195fb251d0"},{"name":"All Food Restaurants","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","postman.setGlobalVariable(\"food_restaurant_id\", jsonData[0].food_restaurant_id);"]}}],"id":"c97893a7-3b72-bd0d-f2b5-6324fac93e9b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/restaurants?page=1&size=10","description":"<p>Get all restaurants</p>\n","urlObject":{"protocol":"http","path":["api","v1","food","restaurants"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"d6ecc2bf-be8d-424b-e44f-7238106a25a7","name":"All Food Restaurants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/food/restaurants?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","food","restaurants"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"806","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:21:33 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"b04ba03deead048c54d4548436e9a6bd\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"770","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"38898325-972a-4186-bf44-fc1b935c6037","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.028706","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"535","body":"[{\"restaurant_name\":\"Bareburger\",\"food_restaurant_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"restaurant_name\":\"Sbarro\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGI\"},{\"restaurant_name\":\"Chipotle\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGG6\"},{\"restaurant_name\":\"Domino's\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGG4\"},{\"restaurant_name\":\"Subway\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGz\"},{\"restaurant_name\":\"Pinkberry\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGG3\"},{\"restaurant_name\":\"Pizza Hut\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGw\"},{\"restaurant_name\":\"Burger King\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGM\"},{\"restaurant_name\":\"Pret A Manger US\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGO\"},{\"restaurant_name\":\"Panera Bread\",\"food_restaurant_id\":\"zI40OhI614MM6qh1GhGGGGGh\"}]"}],"_postman_id":"c97893a7-3b72-bd0d-f2b5-6324fac93e9b"},{"name":"Food Items by Restaurant","id":"33aee1b0-5485-b8d5-a0b8-d11d43c30bdc","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/food/restaurants/{{food_restaurant_id}}/items?page=1&size=10","description":"<p>Get all food items served by a restaurant</p>\n","urlObject":{"protocol":"http","path":["api","v1","food","restaurants","{{food_restaurant_id}}","items"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"c9a686a4-1f87-b9b0-bd9e-19270a63efae","name":"Food Items by Restaurant","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/food/restaurants/{{food_restaurant_id}}/items?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","food","restaurants","{{food_restaurant_id}}","items"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1707","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:21:46 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"7238337f5e321d828ca17808ccaecedd\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"769","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"a512577b-7a4a-4513-9ce9-47e863353a8a","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.028578","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"539","body":"[{\"item_name\":\"+ Beer Braised Bacon\",\"calories\":170,\"serving_qty\":1.13,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11Q3wQ3hw4I06qq3Iq0\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"+ MACHO FRIES\",\"calories\":1370,\"serving_qty\":null,\"serving_unit\":\"\",\"food_item_id\":\"qqmm1VQwhqVQG6Q03OVMM00w\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"+ Sesame Ginger Beef\",\"calories\":110,\"serving_qty\":3.5,\"serving_unit\":\"oz\",\"food_item_id\":\"qqmm1V1QQV3wOOII1z0I4V4M\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"8 Grain Toast\",\"calories\":120,\"serving_qty\":1.5,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11QqOI0IM4OmM0IOzO4\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Aged Cheddar\",\"calories\":120,\"serving_qty\":1.0,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11Qq6q4G6GOmmIwwz3O\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Alfalfa\",\"calories\":10,\"serving_qty\":1.0,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11QI3Q4mVzVzq33MGVq\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"ALL NATURAL SODA\",\"calories\":170,\"serving_qty\":null,\"serving_unit\":\"\",\"food_item_id\":\"VQ4qQ11QVI6h4OVzwww6qzmm\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Amish Blue\",\"calories\":100,\"serving_qty\":1.0,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11Qw14MwMhQMMMmw3V6\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Amish Blue Cheese\",\"calories\":100,\"serving_qty\":0.98,\"serving_unit\":\"oz\",\"food_item_id\":\"VQ4qQ11QO4OQ044QzGzIq0Ow\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"},{\"item_name\":\"Apple Cider Viniagrette\",\"calories\":150,\"serving_qty\":1.0,\"serving_unit\":\"liq. oz\",\"food_item_id\":\"VQ4qQ11Qz3qhqwqwz6OzmV1I\",\"food_brand_id\":\"VQ4qQQQ6QmzGwm0wIOm43wqG\"}]"}],"_postman_id":"33aee1b0-5485-b8d5-a0b8-d11d43c30bdc"}],"id":"37634101-56d8-ed7e-aa99-887a91e39f3e","description":"<p>HealthOS allows you access over 1 million food items from all over the world along with its nutritional value.</p>\n","_postman_id":"37634101-56d8-ed7e-aa99-887a91e39f3e"},{"name":"08- Exercises","item":[{"name":"Search Exercises","id":"38099933-46b1-1e1e-977c-95764fad4304","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/exercises/{{exercise_query}}","description":"<p>Search an exercise by its name</p>\n","urlObject":{"protocol":"http","path":["api","v1","search","exercises","{{exercise_query}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"92314696-f694-a24c-4e5c-9aa9081e5f1f","name":"Search Exercises","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/exercises/{{exercise_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1821","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 20:25:53 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"c4d9585e966b043e6e00d43476f46cb7\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"710","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"63e62be2-ad0f-4f2d-b6ad-7788353e9df2","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.054984","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"685","body":"[{\"name\":\"Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"51\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGGI\",\"search_score\":1.9117621},{\"name\":\"Side Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"55\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Obliques\",\"exercise_id\":\"IGGV\",\"search_score\":1.3183582},{\"name\":\"Reverse Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"98\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Lower Rectus Abdominis\",\"exercise_id\":\"IGIz\",\"search_score\":1.3183582},{\"name\":\"Ball Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"60\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGQz\",\"search_score\":1.3183582},{\"name\":\"Standing Crunches\",\"category\":\"Cardio\",\"calory_count\":\"34\",\"cardio_subcategory\":\"Other/Miscellaneous\",\"primary_muscle_group\":\"\",\"exercise_id\":\"441w\",\"search_score\":1.3183582},{\"name\":\"Negative Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"85\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"I4VG\",\"search_score\":1.2745243},{\"name\":\"Bench Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"94\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"I3V3\",\"search_score\":1.2745243},{\"name\":\"Clam Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"85\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"Iw4G\",\"search_score\":1.2745243},{\"name\":\"Bicycle Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"64\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGI4\",\"search_score\":1.1948513},{\"name\":\"Machine Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"81\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IG4G\",\"search_score\":1.1948513}]"},{"id":"99678674-16c8-aa9d-9816-ab3e5fedbc5e","name":"Search Excercises","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/search/excercises/{{excercise_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1831","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:22:12 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"f2744f3dc0ed2d0af116944aa23e5673\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"768","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"01b02183-8619-4a70-8fab-3bd67e5b72b4","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.085754","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"642","body":"[{\"name\":\"Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"51\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"IGGI\",\"search_score\":1.9117621},{\"name\":\"Side Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"55\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Obliques\",\"excercise_id\":\"IGGV\",\"search_score\":1.3183582},{\"name\":\"Reverse Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"98\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Lower Rectus Abdominis\",\"excercise_id\":\"IGIz\",\"search_score\":1.3183582},{\"name\":\"Ball Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"60\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"IGQz\",\"search_score\":1.3183582},{\"name\":\"Standing Crunches\",\"category\":\"Cardio\",\"calory_count\":\"34\",\"cardio_subcategory\":\"Other/Miscellaneous\",\"primary_muscle_group\":\"\",\"excercise_id\":\"441w\",\"search_score\":1.3183582},{\"name\":\"Negative Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"85\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"I4VG\",\"search_score\":1.2745243},{\"name\":\"Bench Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"94\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"I3V3\",\"search_score\":1.2745243},{\"name\":\"Clam Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"85\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"Iw4G\",\"search_score\":1.2745243},{\"name\":\"Bicycle Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"64\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"IGI4\",\"search_score\":1.1948513},{\"name\":\"Machine Crunches\",\"category\":\"Abdominals\",\"calory_count\":\"81\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"IG4G\",\"search_score\":1.1948513}]"}],"_postman_id":"38099933-46b1-1e1e-977c-95764fad4304"},{"name":"All Exercises","event":[{"listen":"test","script":{"type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","","postman.setGlobalVariable(\"exercise_id\",jsonData[0].exercise_id);"]}}],"id":"6e2a558e-0215-d364-fa09-2cae83438f97","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/exercises?page=1&size=10","description":"<p>List of all exercises</p>\n","urlObject":{"protocol":"http","path":["api","v1","exercises"],"host":["{{host}}"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}],"variable":[]}},"response":[{"id":"00a9c613-2c9b-3134-4af2-10640250e10b","name":"All Excercises","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/excercises?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","excercises"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1546","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:22:23 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"43ed30b6811e0e7345a2b14fb47f04e1\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"767","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"be922527-3be5-4b55-b7d8-e14ad00c5d6d","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.031509","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"585","body":"[{\"name\":\"Crunches\",\"calory_count\":\"51\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"excercise_id\":\"IGGI\"},{\"name\":\"Leg Extensions\",\"calory_count\":\"68\",\"category\":\"Thighs\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Quadriceps\",\"excercise_id\":\"IGG6\"},{\"name\":\"Barbell Bench Press\",\"calory_count\":\"115\",\"category\":\"Chest\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Pectorals\",\"excercise_id\":\"IGG4\"},{\"name\":\"Side Crunches\",\"calory_count\":\"55\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Obliques\",\"excercise_id\":\"IGGV\"},{\"name\":\"Standing Alternate Dumbbell Curls\",\"calory_count\":\"81\",\"category\":\"Biceps\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Biceps\",\"excercise_id\":\"IGGz\"},{\"name\":\"Bench Knee Tucks\",\"calory_count\":\"85\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Lower Rectus Abdominis\",\"excercise_id\":\"IGGQ\"},{\"name\":\"One-Arm Dumbbell Bent-Over Rows\",\"calory_count\":\"102\",\"category\":\"Back\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Latissimus Dorsi\",\"excercise_id\":\"IGG3\"},{\"name\":\"Seated Dumbbell Press\",\"calory_count\":\"102\",\"category\":\"Shoulders\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Deltoids\",\"excercise_id\":\"IGG1\"},{\"name\":\"Brisk Walk\",\"calory_count\":\"64\",\"category\":\"Cardio\",\"cardio_subcategory\":\"Walking\",\"primary_muscle_group\":\"\",\"excercise_id\":\"IGGw\"},{\"name\":\"Angled Leg Press\",\"calory_count\":\"102\",\"category\":\"Thighs\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Thighs\",\"excercise_id\":\"IGIG\"}]"},{"id":"20d1ce46-8dc6-49ae-7c21-a714143ffe89","name":"All Exercises","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://{{host}}/api/v1/exercises?page=1&size=10","protocol":"http","host":["{{host}}"],"path":["api","v1","exercises"],"query":[{"key":"page","value":"1"},{"key":"size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"1536","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 20:26:26 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"87515e68f56ec6c3e015c4f1509c5f90\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"709","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"aaa64611-1b6b-465a-aa29-e7d7846548a5","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.035223","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"630","body":"[{\"name\":\"Crunches\",\"calory_count\":\"51\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise_id\":\"IGGI\"},{\"name\":\"Leg Extensions\",\"calory_count\":\"68\",\"category\":\"Thighs\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Quadriceps\",\"exercise_id\":\"IGG6\"},{\"name\":\"Barbell Bench Press\",\"calory_count\":\"115\",\"category\":\"Chest\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Pectorals\",\"exercise_id\":\"IGG4\"},{\"name\":\"Side Crunches\",\"calory_count\":\"55\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Obliques\",\"exercise_id\":\"IGGV\"},{\"name\":\"Standing Alternate Dumbbell Curls\",\"calory_count\":\"81\",\"category\":\"Biceps\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Biceps\",\"exercise_id\":\"IGGz\"},{\"name\":\"Bench Knee Tucks\",\"calory_count\":\"85\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Lower Rectus Abdominis\",\"exercise_id\":\"IGGQ\"},{\"name\":\"One-Arm Dumbbell Bent-Over Rows\",\"calory_count\":\"102\",\"category\":\"Back\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Latissimus Dorsi\",\"exercise_id\":\"IGG3\"},{\"name\":\"Seated Dumbbell Press\",\"calory_count\":\"102\",\"category\":\"Shoulders\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Deltoids\",\"exercise_id\":\"IGG1\"},{\"name\":\"Brisk Walk\",\"calory_count\":\"64\",\"category\":\"Cardio\",\"cardio_subcategory\":\"Walking\",\"primary_muscle_group\":\"\",\"exercise_id\":\"IGGw\"},{\"name\":\"Angled Leg Press\",\"calory_count\":\"102\",\"category\":\"Thighs\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Thighs\",\"exercise_id\":\"IGIG\"}]"}],"_postman_id":"6e2a558e-0215-d364-fa09-2cae83438f97"},{"name":"Exercise","id":"97d0d762-240c-aab1-0d15-1331dadeeded","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/exercises/{{exercise_id}}","description":"<p>Get an exercise by <strong>exercise_id </strong></p>\n","urlObject":{"protocol":"http","path":["api","v1","exercises","{{exercise_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5dc73a91-e234-462c-4c05-432f2537ca81","name":"Exercise","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/exercises/{{exercise_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"151","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 20:26:43 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"8af5f7b08a23d369fde9506a620b88a5\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"708","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"fcc96e1a-1e60-420e-b700-325b2ac8150d","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.028575","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"536","body":"{\"name\":\"Crunches\",\"calory_count\":\"51\",\"category\":\"Abdominals\",\"cardio_subcategory\":\"\",\"primary_muscle_group\":\"Rectus Abdominis\",\"exercise__id\":\"IGGI\"}"}],"_postman_id":"97d0d762-240c-aab1-0d15-1331dadeeded"}],"id":"6167fd1b-e3b7-8bed-a7c4-b42d60486332","_postman_id":"6167fd1b-e3b7-8bed-a7c4-b42d60486332","description":""},{"name":"09- Drug Interactions","item":[{"name":"Medicine Interactions","id":"76a6405d-3585-fa16-1767-c4217d84ad06","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/interactions/medicines/{{medicine_id}}","description":"<p>Find all interactions of a medicine.Set the parameter <strong>severity</strong> as high, low or medium to filter the results</p>\n","urlObject":{"protocol":"http","path":["api","v1","interactions","medicines","{{medicine_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"0d70b1b0-031a-9fdc-73da-5d8a65cfd625","name":"Medicine Interactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/interactions/medicines/{{medicine_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"keep-alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"53270","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:22:52 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"5041d64addf1cc57ca6df60a83b26af5\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.2.6/2016-11-15)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"Via","key":"Via","value":"1.1 vegur","description":"Informs the client of proxies through which the response was sent."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"765","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"e90a9356-94f5-422c-8f0e-7c7e8a054168","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"0.735263","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"2848","body":"[{\"generic\":\"Clobetasol Topical\",\"interactions\":[{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Etanercept\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etanercept is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Aldesleukin\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may decrease the antineoplastic activities of Aldesleukin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Hyaluronidase\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Hyaluronidase can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"hyaluronidase, ovine\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Hyaluronidase can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Calcitriol\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Calcitriol can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Masoprocol\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Masoprocol is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"adapalene\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Adapalene is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"torsemide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Torasemide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"moxifloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Moxifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nelfinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Nelfinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"INDINAVIR ANHYDROUS\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Indinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Indinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Indinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Methyclothiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Methyclothiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aminosalicylic acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Aminosalicylic Acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nevirapine\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Nevirapine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"mesalamine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mesalazine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Phenytoin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Phenytoin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Diethylstilbestrol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Diethylstilbestrol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chlorotrianisene\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Chlorotrianisene.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estrogens, Conjugated (USP)\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Conjugated Equine Estrogens.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chlorthalidone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Chlorthalidone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pentobarbital\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Pentobarbital.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Indomethacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Indomethacin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pimecrolimus\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Pimecrolimus is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mefloquine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Mefloquine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"grepafloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Grepafloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Colestipol\"}],\"severity\":\"N/A\",\"description\":\"Colestipol can cause a decrease in the absorption of Clobetasol propionate resulting in a reduced serum concentration and potentially a decrease in efficacy.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Tacrine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Tacrine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Bendroflumethiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Bendroflumethiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nabumetone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Nabumetone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ketorolac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Ketorolac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Enoxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Enoxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tenoxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tenoxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"celecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Celecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Gallamine Triethiodide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gallamine Triethiodide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pefloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Pefloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Tolmetin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tolmetin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ritonavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Ritonavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Metolazone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Metolazone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rofecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Rofecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ciprofloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ciprofloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pyridostigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Pyridostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pyridostigmine Bromide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Pyridostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Piroxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Piroxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Carbamazepine\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Carbamazepine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Fenoprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Fenoprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"valdecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Valdecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"voriconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Voriconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Diclofenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Diclofenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Sulindac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Sulindac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chloroquine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Chloroquine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Rifabutin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Rifabutin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Oxandrolone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Oxandrolone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Testosterone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Testosterone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mitotane\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Mitotane.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estrone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Estrone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aprepitant\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Aprepitant.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Galantamine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Galantamine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Isoflurophate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Isoflurophate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"amphotericin B liposomal\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Amphotericin B.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Amphotericin B\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Amphotericin B.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Warfarin\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the anticoagulant activities of Warfarin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"trovafloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Trovafloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"mycophenolate mofetil\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mycophenolate mofetil is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Furosemide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Furosemide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Flurbiprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Flurbiprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Atracurium Besylate\"}],\"severity\":\"N/A\",\"description\":\"Atracurium besylate may increase the adverse neuromuscular activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"naftifine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Naftifine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"zileuton\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Zileuton is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Etodolac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etodolac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"olopatadine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Olopatadine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Malathion\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Malathion.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Hydroflumethiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Hydroflumethiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nalidixic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Nalidixic Acid.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estradiol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Estradiol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mefenamic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mefenamic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Naproxen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Naproxen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Primidone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Primidone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Sulfasalazine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Sulfasalazine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"minaprine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Minaprine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Indapamide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Indapamide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Phenylbutazone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Phenylbutazone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"meloxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Meloxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rosoxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Rosoxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"carprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Carprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Cinoxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Cinoxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mifepristone\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Clobetasol propionate can be decreased when used in combination with Mifepristone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"donepezil\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Donepezil.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Diflunisal\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Diflunisal is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Suprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Suprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chlorothiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Chlorothiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Bumetanide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Bumetanide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Dienestrol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Dienestrol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ethacrynate\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Etacrynic acid.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ethacrynic Acid\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Etacrynic acid.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"colesevelam\"}],\"severity\":\"N/A\",\"description\":\"Colesevelam can cause a decrease in the absorption of Clobetasol propionate resulting in a reduced serum concentration and potentially a decrease in efficacy.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Salicylic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Salicylic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Meclofenamate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Meclofenamic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Meclofenamic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Meclofenamic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Demecarium\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Demecarium.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Aspirin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Acetylsalicylic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Acetyl salicylate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Acetylsalicylic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"isoniazid\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Isoniazid can be decreased when it is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"bromfenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Bromfenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"azelastine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Azelastine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"telithromycin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Telithromycin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ethinyl Estradiol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Ethinyl Estradiol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lomefloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Lomefloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Physostigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Physostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rivastigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Rivastigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"oxaprozin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Oxaprozin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Hydrochlorothiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Hydrochlorothiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ketoprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Ketoprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Edrophonium\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Edrophonium.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aceclofenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Aceclofenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Aluminum Hydroxide\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Aluminum hydroxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aluminum hydroxide, dried (USP)\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Aluminum hydroxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ambenonium\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ambenonium.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Amiodarone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Amiodarone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Antipyrine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Antipyrine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"apremilast\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Apremilast is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Atazanavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Atazanavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Apazone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Azapropazone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"balsalazide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Balsalazide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"bazedoxifene\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Bazedoxifene.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Benzoic Acid\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Benzoic Acid can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"bismuth subcitrate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Bismuth Subcitrate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"boceprevir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Boceprevir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Calcium Carbonate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Calcium carbonate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"CALCIUM CARBONATE, PRECIPITATED\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Calcium carbonate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"ceritinib\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hyperglycemic activities of Ceritinib.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Cholestyramine Resin\"}],\"severity\":\"N/A\",\"description\":\"Cholestyramine can cause a decrease in the absorption of Clobetasol propionate resulting in a reduced serum concentration and potentially a decrease in efficacy.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Clarithromycin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Clarithromycin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Clonixin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clonixin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"cobicistat\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Cobicistat.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"corticorelin ovine triflutate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Corticorelin ovine triflutate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"corticorelin ovine\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Corticorelin ovine triflutate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"darunavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Darunavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"deferasirox\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Deferasirox.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"droxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Droxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Echothiophate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Echothiophate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"enzalutamide\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Enzalutamide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estriol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Estriol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"etofenamate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etofenamate is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"etoricoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etoricoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"fenbufen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Fenbufen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Fleroxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Fleroxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"floctafenine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Floctafenine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"flumequine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Flumequine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Fluoxymesterone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Fluoxymesterone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"fosaprepitant\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Fosaprepitant.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"fosphenytoin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Fosphenytoin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gatifloxacin anhydrous\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gatifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gatifloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gatifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gemifloxacin mesylate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gemifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gemifloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gemifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Genistein\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Genistein.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ginkgo biloba extract\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ginkgo biloba.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"glycerol phenylbutyrate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Glycerol Phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ibuprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Ibuprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"icatibant\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Icatibant is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"idelalisib\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Idelalisib.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"indacaterol\"}],\"severity\":\"N/A\",\"description\":\"Indacaterol may increase the hypokalemic activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Itraconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Itraconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"kebuzone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Kebuzone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ketoconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Ketoconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"leflunomide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Leflunomide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Levofloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Levofloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lopinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Lopinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lornoxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Lornoxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"loxoprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Loxoprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lumacaftor\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Lumacaftor.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"magaldrate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magaldrate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"magnesium carbonate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium carbonate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Magnesium Hydroxide\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium hydroxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Magnesium Oxide\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium oxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Magnesium Salicylate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Magnesium salicylate is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"magnesium trisilicate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium Trisilicate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Memantine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Memantine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mestranol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Mestranol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Dipyrone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Metamizole is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Methyltestosterone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Methyltestosterone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"mivacurium\"}],\"severity\":\"N/A\",\"description\":\"Mivacurium may increase the adverse neuromuscular activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"MYCOPHENOLATE\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mycophenolic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mycophenolic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mycophenolic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nefazodone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Nefazodone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Neostigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Neostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nepafenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Nepafenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nicorandil\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Nicorandil.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Niflumic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Niflumic Acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nimesulide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Nimesulide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Norfloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Norfloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ofloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ofloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"olsalazine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Olsalazine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Oxymetholone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Oxymetholone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Oxyphenbutazone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Oxyphenbutazone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"parecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Parecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Phenobarbital\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Phenobarbital.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"phenylacetic acid\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Phenylacetic acid can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"piretanide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Piretanide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"pirfenidone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Pirfenidone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Polythiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Polythiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"posaconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Posaconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Quinestrol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Quinestrol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"quinethazone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Quinethazone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rapacuronium\"}],\"severity\":\"N/A\",\"description\":\"Rapacuronium may increase the adverse neuromuscular activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"resveratrol\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Resveratrol is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Rifampin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Rifampicin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rifapentine\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Rifapentine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"salicylamide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Salicylamide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Salsalate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Salsalate is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Saquinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Saquinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"saquinavir mesylate\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Saquinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Sodium phenylbutyrate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Sodium phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"phenylbutyrate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Sodium phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"4-phenylbutyric acid\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Sodium phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"sparfloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Sparfloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"ST. JOHN'S WORT EXTRACT\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with St. John\\u0026#39;s Wort.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Stanozolol\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Stanozolol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"synthetic conjugated estrogens, A\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Synthetic Conjugated Estrogens, A.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"synthetic conjugated estrogens, B\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Synthetic Conjugated Estrogens, B.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"telaprevir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Telaprevir can be decreased when it is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"temafloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Temafloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"teriflunomide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Teriflunomide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tiaprofenic acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tiaprofenic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tibolone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Tibolone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tolfenamic acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tolfenamic Acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tranilast\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tranilast is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Trichlormethiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Trichlormethiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Tubocurarine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Tubocurarine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"zomepirac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Zomepirac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"}]}]"}],"_postman_id":"76a6405d-3585-fa16-1767-c4217d84ad06"},{"name":"Generics Interactions","id":"7c819251-3448-74cb-bf0c-8c93a72f252d","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/interactions/generics/{{generic_id}}","description":"<p>Find all interactions of a generic.Set the parameter <strong>severity</strong> as high, low or medium to filter the results</p>\n","urlObject":{"protocol":"http","path":["api","v1","interactions","generics","{{generic_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a52d5963-4942-9f26-c4e8-cc510828515a","name":"Generics Interations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/interactions/generics/404322"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Cache-Control","key":"Cache-Control","value":"max-age=0, private, must-revalidate","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"name":"Connection","key":"Connection","value":"Keep-Alive","description":"Options that are desired for the connection"},{"name":"Content-Length","key":"Content-Length","value":"53268","description":"The length of the response body in octets (8-bit bytes)"},{"name":"Content-Type","key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content"},{"name":"Date","key":"Date","value":"Sat, 18 Feb 2017 19:52:23 GMT","description":"The date and time that the message was sent"},{"name":"Etag","key":"Etag","value":"W/\"05589d44352669ebbbdf9a2baf5b7152\"","description":"An identifier for a specific version of a resource, often a message digest"},{"name":"Server","key":"Server","value":"WEBrick/1.3.1 (Ruby/2.1.1/2014-02-24)","description":"A name for the server"},{"name":"Vary","key":"Vary","value":"Origin","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"name":"X-Content-Type-Options","key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"name":"X-Frame-Options","key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"name":"X-Ratelimit-Limit","key":"X-Ratelimit-Limit","value":"1000","description":"Custom header"},{"name":"X-Ratelimit-Remaining","key":"X-Ratelimit-Remaining","value":"726","description":"Custom header"},{"name":"X-Request-Id","key":"X-Request-Id","value":"ca5be750-627e-4ef0-9538-a2e893b2dea8","description":"Custom header"},{"name":"X-Runtime","key":"X-Runtime","value":"8.978040","description":"Custom header"},{"name":"X-Xss-Protection","key":"X-Xss-Protection","value":"1; mode=block","description":"Cross-site scripting (XSS) filter"}],"cookie":[],"responseTime":"9244","body":"{\"generic\":\"Clobetasol Topical\",\"interactions\":[{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Etanercept\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etanercept is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Aldesleukin\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may decrease the antineoplastic activities of Aldesleukin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Hyaluronidase\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Hyaluronidase can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"hyaluronidase, ovine\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Hyaluronidase can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Calcitriol\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Calcitriol can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Masoprocol\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Masoprocol is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"adapalene\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Adapalene is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"torsemide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Torasemide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"moxifloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Moxifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nelfinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Nelfinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"INDINAVIR ANHYDROUS\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Indinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Indinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Indinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Methyclothiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Methyclothiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aminosalicylic acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Aminosalicylic Acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nevirapine\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Nevirapine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"mesalamine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mesalazine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Phenytoin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Phenytoin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Diethylstilbestrol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Diethylstilbestrol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chlorotrianisene\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Chlorotrianisene.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estrogens, Conjugated (USP)\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Conjugated Equine Estrogens.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chlorthalidone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Chlorthalidone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pentobarbital\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Pentobarbital.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Indomethacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Indomethacin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pimecrolimus\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Pimecrolimus is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mefloquine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Mefloquine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"grepafloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Grepafloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Colestipol\"}],\"severity\":\"N/A\",\"description\":\"Colestipol can cause a decrease in the absorption of Clobetasol propionate resulting in a reduced serum concentration and potentially a decrease in efficacy.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Tacrine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Tacrine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Bendroflumethiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Bendroflumethiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nabumetone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Nabumetone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ketorolac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Ketorolac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Enoxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Enoxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tenoxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tenoxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"celecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Celecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Gallamine Triethiodide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gallamine Triethiodide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pefloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Pefloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Tolmetin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tolmetin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ritonavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Ritonavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Metolazone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Metolazone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rofecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Rofecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ciprofloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ciprofloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pyridostigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Pyridostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Pyridostigmine Bromide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Pyridostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Piroxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Piroxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Carbamazepine\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Carbamazepine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Fenoprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Fenoprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"valdecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Valdecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"voriconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Voriconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Diclofenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Diclofenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Sulindac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Sulindac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chloroquine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Chloroquine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Rifabutin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Rifabutin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Oxandrolone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Oxandrolone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Testosterone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Testosterone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mitotane\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Mitotane.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estrone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Estrone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aprepitant\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Aprepitant.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Galantamine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Galantamine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Isoflurophate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Isoflurophate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"amphotericin B liposomal\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Amphotericin B.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Amphotericin B\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Amphotericin B.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Warfarin\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the anticoagulant activities of Warfarin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"trovafloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Trovafloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"mycophenolate mofetil\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mycophenolate mofetil is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Furosemide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Furosemide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Flurbiprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Flurbiprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Atracurium Besylate\"}],\"severity\":\"N/A\",\"description\":\"Atracurium besylate may increase the adverse neuromuscular activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"naftifine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Naftifine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"zileuton\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Zileuton is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Etodolac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etodolac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"olopatadine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Olopatadine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Malathion\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Malathion.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Hydroflumethiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Hydroflumethiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nalidixic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Nalidixic Acid.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estradiol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Estradiol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mefenamic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mefenamic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Naproxen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Naproxen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Primidone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Primidone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Sulfasalazine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Sulfasalazine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"minaprine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Minaprine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Indapamide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Indapamide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Phenylbutazone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Phenylbutazone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"meloxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Meloxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rosoxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Rosoxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"carprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Carprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Cinoxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Cinoxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mifepristone\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Clobetasol propionate can be decreased when used in combination with Mifepristone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"donepezil\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Donepezil.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Diflunisal\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Diflunisal is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Suprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Suprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Chlorothiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Chlorothiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Bumetanide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Bumetanide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Dienestrol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Dienestrol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ethacrynate\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Etacrynic acid.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ethacrynic Acid\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Etacrynic acid.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"colesevelam\"}],\"severity\":\"N/A\",\"description\":\"Colesevelam can cause a decrease in the absorption of Clobetasol propionate resulting in a reduced serum concentration and potentially a decrease in efficacy.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Salicylic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Salicylic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Meclofenamate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Meclofenamic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Meclofenamic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Meclofenamic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Demecarium\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Demecarium.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Aspirin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Acetylsalicylic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Acetyl salicylate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Acetylsalicylic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"isoniazid\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Isoniazid can be decreased when it is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"bromfenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Bromfenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"azelastine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Azelastine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"telithromycin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Telithromycin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ethinyl Estradiol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Ethinyl Estradiol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lomefloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Lomefloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Physostigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Physostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rivastigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Rivastigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"oxaprozin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Oxaprozin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Hydrochlorothiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Hydrochlorothiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ketoprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Ketoprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Edrophonium\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Edrophonium.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aceclofenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Aceclofenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Aluminum Hydroxide\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Aluminum hydroxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"aluminum hydroxide, dried (USP)\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Aluminum hydroxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ambenonium\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ambenonium.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Amiodarone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Amiodarone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Antipyrine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Antipyrine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"apremilast\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Apremilast is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Atazanavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Atazanavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Apazone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Azapropazone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"balsalazide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Balsalazide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"bazedoxifene\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Bazedoxifene.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Benzoic Acid\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Benzoic Acid can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"bismuth subcitrate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Bismuth Subcitrate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"boceprevir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Boceprevir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Calcium Carbonate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Calcium carbonate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"CALCIUM CARBONATE, PRECIPITATED\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Calcium carbonate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"ceritinib\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hyperglycemic activities of Ceritinib.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Cholestyramine Resin\"}],\"severity\":\"N/A\",\"description\":\"Cholestyramine can cause a decrease in the absorption of Clobetasol propionate resulting in a reduced serum concentration and potentially a decrease in efficacy.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Clarithromycin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Clarithromycin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Clonixin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clonixin is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"cobicistat\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Cobicistat.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"corticorelin ovine triflutate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Corticorelin ovine triflutate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"corticorelin ovine\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Corticorelin ovine triflutate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"darunavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Darunavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"deferasirox\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Deferasirox.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"droxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Droxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Echothiophate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Echothiophate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"enzalutamide\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Enzalutamide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Estriol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Estriol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"etofenamate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etofenamate is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"etoricoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Etoricoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"fenbufen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Fenbufen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Fleroxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Fleroxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"floctafenine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Floctafenine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"flumequine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Flumequine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Fluoxymesterone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Fluoxymesterone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"fosaprepitant\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Fosaprepitant.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"fosphenytoin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Fosphenytoin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gatifloxacin anhydrous\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gatifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gatifloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gatifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gemifloxacin mesylate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gemifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"gemifloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Gemifloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Genistein\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Genistein.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ginkgo biloba extract\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ginkgo biloba.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"glycerol phenylbutyrate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Glycerol Phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ibuprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Ibuprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"icatibant\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Icatibant is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"idelalisib\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Idelalisib.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"indacaterol\"}],\"severity\":\"N/A\",\"description\":\"Indacaterol may increase the hypokalemic activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Itraconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Itraconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"kebuzone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Kebuzone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ketoconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Ketoconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"leflunomide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Leflunomide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Levofloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Levofloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lopinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Lopinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lornoxicam\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Lornoxicam is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"loxoprofen\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Loxoprofen is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"lumacaftor\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Lumacaftor.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"magaldrate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magaldrate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"magnesium carbonate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium carbonate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Magnesium Hydroxide\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium hydroxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Magnesium Oxide\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium oxide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Magnesium Salicylate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Magnesium salicylate is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"magnesium trisilicate\"}],\"severity\":\"N/A\",\"description\":\"The bioavailability of Clobetasol propionate can be decreased when combined with Magnesium Trisilicate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Memantine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Memantine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mestranol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Mestranol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Dipyrone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Metamizole is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Methyltestosterone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Methyltestosterone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"mivacurium\"}],\"severity\":\"N/A\",\"description\":\"Mivacurium may increase the adverse neuromuscular activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"MYCOPHENOLATE\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mycophenolic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Mycophenolic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Mycophenolic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nefazodone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Nefazodone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Neostigmine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Neostigmine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nepafenac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Nepafenac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Nicorandil\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Nicorandil.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Niflumic Acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Niflumic Acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"nimesulide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Nimesulide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Norfloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Norfloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Ofloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Ofloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"olsalazine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Olsalazine is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Oxymetholone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Oxymetholone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Oxyphenbutazone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Oxyphenbutazone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"parecoxib\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Parecoxib is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Phenobarbital\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Phenobarbital.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"phenylacetic acid\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Phenylacetic acid can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"piretanide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Piretanide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"pirfenidone\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Pirfenidone is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Polythiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Polythiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"posaconazole\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Posaconazole.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Quinestrol\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Quinestrol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"quinethazone\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Quinethazone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rapacuronium\"}],\"severity\":\"N/A\",\"description\":\"Rapacuronium may increase the adverse neuromuscular activities of Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"resveratrol\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Resveratrol is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Rifampin\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Rifampicin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"rifapentine\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with Rifapentine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"salicylamide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Salicylamide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Salsalate\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Salsalate is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Saquinavir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Saquinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"saquinavir mesylate\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Saquinavir.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Sodium phenylbutyrate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Sodium phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"phenylbutyrate\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Sodium phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"4-phenylbutyric acid\"}],\"severity\":\"N/A\",\"description\":\"The therapeutic efficacy of Sodium phenylbutyrate can be decreased when used in combination with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"sparfloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Sparfloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"ST. JOHN'S WORT EXTRACT\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be decreased when it is combined with St. John\\u0026#39;s Wort.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Stanozolol\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the fluid retaining activities of Stanozolol.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"synthetic conjugated estrogens, A\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Synthetic Conjugated Estrogens, A.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"synthetic conjugated estrogens, B\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Synthetic Conjugated Estrogens, B.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"telaprevir\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Telaprevir can be decreased when it is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"temafloxacin\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Temafloxacin.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"teriflunomide\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Teriflunomide is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tiaprofenic acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tiaprofenic acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tibolone\"}],\"severity\":\"N/A\",\"description\":\"The serum concentration of Clobetasol propionate can be increased when it is combined with Tibolone.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tolfenamic acid\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tolfenamic Acid is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"tranilast\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Tranilast is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Trichlormethiazide\"}],\"severity\":\"N/A\",\"description\":\"Clobetasol propionate may increase the hypokalemic activities of Trichlormethiazide.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"Tubocurarine\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Clobetasol propionate is combined with Tubocurarine.\",\"source\":\"DrugBank\"},{\"items\":[{\"name\":\"Clobetasol Propionate\"},{\"name\":\"zomepirac\"}],\"severity\":\"N/A\",\"description\":\"The risk or severity of adverse effects can be increased when Zomepirac is combined with Clobetasol propionate.\",\"source\":\"DrugBank\"}]}"}],"_postman_id":"7c819251-3448-74cb-bf0c-8c93a72f252d"}],"id":"87c0bc58-b544-fb24-9185-fcef6fa3de38","_postman_id":"87c0bc58-b544-fb24-9185-fcef6fa3de38","description":""},{"name":"10- Chat","item":[{"name":"Medicine Chat","id":"69b4f2c2-1354-6f23-0c00-017a4dd6cfb1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/chat/medicines/what is combiflam used for","description":"<p>Search a medicine by name or any other feilds</p>\n","urlObject":{"protocol":"http","path":["api","v1","chat","medicines","what is combiflam used for"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"69b4f2c2-1354-6f23-0c00-017a4dd6cfb1"},{"name":"Food Items Chat","id":"4a0c21fc-3013-93ff-79df-b7bd1cd3ff4e","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/chat/food/i ate 2 aloo parathas","description":"<p>Search a medicine by name or any other feilds</p>\n","urlObject":{"protocol":"http","path":["api","v1","chat","food","i ate 2 aloo parathas"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a0c21fc-3013-93ff-79df-b7bd1cd3ff4e"},{"name":"Excercises Chat","id":"236c8e0e-5cb2-181c-a185-86b979713062","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"raw","raw":""},"url":"http://{{host}}/api/v1/chat/excercises/i did swimming for 1 hour","description":"<p>Search a medicine by name or any other feilds</p>\n","urlObject":{"protocol":"http","path":["api","v1","chat","excercises","i did swimming for 1 hour"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"236c8e0e-5cb2-181c-a185-86b979713062"}],"id":"039ea006-9d8e-6eed-c667-8d025f2f4cb2","_postman_id":"039ea006-9d8e-6eed-c667-8d025f2f4cb2","description":""}]}