search_medicine_products
pharmeasy.inSearches 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.
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.
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.