search_products
netmeds.comSearches medicines and health products on https://www.netmeds.com by keyword and Indian PIN code. Returns up to 20 popularity-sorted products with complete source fields, current local prices, stock, prescription status, images, product links, and delivery promises.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches medicines and health products on https://www.netmeds.com by keyword and Indian PIN code. Returns up to 20 popularity-sorted products with complete source fields, current local prices, stock, prescription status, images, product links, and delivery promises. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, pincode, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"results": [
{
"uid": 0,
"name": "<string>",
"rank": 0,
"brand": "<string>",
"images": [
"<string>"
],
"seller": "<string>",
"category": "<string>",
"marketer": "<string>",
"available": true,
"item_code": "<string>",
"pack_size": "<string>",
"local_price": {},
"product_url": "<string>",
"source_data": {},
"availability": "<string>",
"manufacturer": "<string>",
"product_type": "<string>",
"catalog_price": {},
"delivery_promise": {},
"fulfillment_store": "<string>",
"location_offer_data": {},
"prescription_status": "<string>",
"local_stock_quantity": 0,
"prescription_required": true
}
],
"location": {
"city": "<string>",
"state": "<string>",
"country": "<string>",
"pincode": "<string>"
},
"sorted_by": "<string>",
"total_matches": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/871caea0-76f4-4817-9abd-1b4ad445e4c5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "871caea0-76f4-4817-9abd-1b4ad445e4c5",
"variables": {
"query": "crocin",
"pincode": "110001",
"limit": 20
}
}'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="871caea0-76f4-4817-9abd-1b4ad445e4c5") — the "search_products" function, which searches medicines and health products on https://www.netmeds.com by keyword and Indian PIN code. Returns up to 20 popularity-sorted products with complete source fields, current local prices, stock, prescription status, images, product links, and delivery promises.. It takes query (str), pincode (str), limit (int). Return the result as structured JSON.