search_products
arogga.comSearch medicines and healthcare products by keyword on https://www.arogga.com. Returns paginated product records with complete non-empty source metadata, MRP, discounted price, discount percentage, stock status, and availability-first/popularity-second ordering.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Search medicines and healthcare products by keyword on https://www.arogga.com. Returns paginated product records with complete non-empty source metadata, MRP, discounted price, discount percentage, stock status, and availability-first/popularity-second ordering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, per_page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"query": "<string>",
"total": 0,
"results": [
{}
],
"per_page": 0,
"suggestions": [
"<string>"
],
"total_pages": 0,
"has_next_page": true,
"has_previous_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/22f3410e-e239-4de2-b5cd-8151814862fc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "22f3410e-e239-4de2-b5cd-8151814862fc",
"variables": {
"query": "paracetamol",
"page": 1,
"per_page": 10
}
}'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="22f3410e-e239-4de2-b5cd-8151814862fc") — the "search_products" function, which search medicines and healthcare products by keyword on https://www.arogga.com. Returns paginated product records with complete non-empty source metadata, MRP, discounted price, discount percentage, stock status, and availability-first/popularity-second ordering.. It takes query (str), page (int), per_page (int). Return the result as structured JSON.