# MedPlus Mart — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Healthcare | **Website:** [www.medplusmart.com/](https://www.medplusmart.com/) | **Docs:** [parse.bot/marketplace/f6213ec2-f9c4-4fea-bb53-3c7c931e38f2/medplusmart-com-api](https://parse.bot/marketplace/f6213ec2-f9c4-4fea-bb53-3c7c931e38f2/medplusmart-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-medplusmart-com-api-f6213ec2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

List all top-level product categories with their subcategories. Returns category name, ID, slug, image URL, page URL, and nested subcategories. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-medplusmart-com-api-f6213ec2/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Fetch full product details by product ID. Returns product name, composition, manufacturer, pricing (MRP, regular price, membership price), discount percentage, pack size, prescription requirement, description (uses), side effects, images, and product URL. The product_id can be obtained from search_medicines results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | MedPlus product ID (e.g. 'DOLO0023'). Available from search_medicines results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-medplusmart-com-api-f6213ec2/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_medicines

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting from 1. |
| `query` | string | Yes | Search term for medicine or product name (e.g. 'dolo 650', 'paracetamol'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-medplusmart-com-api-f6213ec2/search_medicines \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```

### search_medicines_by_location

Search medicines and products by name within a specific location context. Resolves the location (city name or pincode) to a MedPlus delivery area, then returns paginated product results showing availability for that area. Each page returns up to 30 results. Makes 5 upstream requests: token generation, locality suggestion lookup, locality resolution, token validation, and product search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | City name or pincode for delivery area (e.g. 'Mumbai', '400070', 'Hyderabad'). |
| `page` | integer | No | Page number for pagination, starting from 1. |
| `query` | string | Yes | Search term for medicine or product name (e.g. 'dolo 650', 'paracetamol'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-medplusmart-com-api-f6213ec2/search_medicines_by_location \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","query":"<string>"}'
```
