Marketplace
No threads yet
Live

search_medicine_products

pharmeasy.in

Searches https://pharmeasy.in for medicine and healthcare product listings using a keyword, page, and delivery pincode. Returns location-specific prices, stock availability, prescription requirements, manufacturers, images, and all populated product fields exposed by PharmEasy.

Parameters3
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_medicine_products?

Searches https://pharmeasy.in for medicine and healthcare product listings using a keyword, page, and delivery pincode. Returns location-specific prices, stock availability, prescription requirements, manufacturers, images, and all populated product fields exposed by PharmEasy. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, pincode, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "pincode": "<string>",
  "has_more": true,
  "location": {},
  "products": [
    {}
  ],
  "page_size": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/66a8f23c-d4d5-4b82-843f-99cbae1e7948/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "66a8f23c-d4d5-4b82-843f-99cbae1e7948",
    "variables": {
        "query": "paracetamol",
        "pincode": "400086",
        "page": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="66a8f23c-d4d5-4b82-843f-99cbae1e7948") — the "search_medicine_products" function, which searches https://pharmeasy.in for medicine and healthcare product listings using a keyword, page, and delivery pincode. Returns location-specific prices, stock availability, prescription requirements, manufacturers, images, and all populated product fields exposed by PharmEasy..

It takes query (str), pincode (str), page (int). Return the result as structured JSON.