# Netmeds — 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 health products across India's largest online pharmacy while viewing real-time pricing and availability based on your location. Find exactly what you need with instant access to product details and local delivery options.

**Category:** Healthcare | **Website:** [www.netmeds.com/](https://www.netmeds.com/) | **Docs:** [parse.bot/marketplace/e474084a-453b-4027-af4f-acce556264eb/netmeds-com-api](https://parse.bot/marketplace/e474084a-453b-4027-af4f-acce556264eb/netmeds-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-netmeds-com-api-e474084a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_medicines

Search for medicines and health products by name or keyword, scoped to a delivery location. Returns up to 20 results per call sorted by popularity, including pricing, availability, manufacturer, pack size, prescription status, images, and product URLs. Results reflect location-specific availability and pricing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | Yes | Delivery location as a 6-digit Indian PIN code (e.g. '110001') or city name (e.g. 'Mumbai'). |
| `query` | string | Yes | Medicine name or search keyword (e.g. 'paracetamol', 'crocin', 'vitamin d'). |

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