Medplusmart APImedplusmart.com ↗
Search for medicines and browse product categories on MedPlus Mart online pharmacy, then view detailed information like pricing, availability, and specifications for any medication. Get instant access to organized pharmacy data to compare medicines and find exactly what you need.
curl -X GET 'https://api.parse.bot/scraper/8285ba5b-0a0a-4525-8706-4fed1d6fc5cc/search_medicines?page=1&query=paracetamol' \ -H 'X-API-Key: $PARSE_API_KEY'
Search medicines and general products by name. Returns paginated results with product name, price, discount, availability, pack size, manufacturer, composition, and URLs. Each page returns up to 30 results.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination, starting from 1. |
| queryrequired | string | Search term for medicine or product name (e.g. 'dolo 650', 'paracetamol'). |
{
"type": "object",
"fields": {
"page": "Current page number",
"query": "The search term used",
"products": "Array of matching products with product_id, product_name, mrp, discount_str, is_in_stock, pack_size, manufacturer, composition, image_url, product_url",
"total_results": "Number of products returned on this page"
},
"sample": {
"data": {
"page": 1,
"query": "dolo 650",
"products": [
{
"mrp": 32.28,
"image_url": "https://static2.medplusmart.com/products/_0911cd7_/DOLO0023_S.jpg",
"pack_size": 15,
"product_id": "DOLO0023",
"composition": "Paracetamol 650 MG",
"is_in_stock": true,
"product_url": "https://www.medplusmart.com/product/dolo-650mg-tab_dolo0023",
"discount_str": "Save upto 15%",
"manufacturer": "MICRO LABS LIMITED",
"product_name": "DOLO 650MG TAB",
"discount_percentage": null
}
],
"total_results": 2
},
"status": "success"
}
}About the Medplusmart API
The Medplusmart API on Parse exposes 3 endpoints for the publicly available data on medplusmart.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.