search_medications
al-dawaa.comSearches https://www.al-dawaa.com for medications by name or keyword. Returns 0-indexed paginated product records with current stock status, pricing, prescription requirements, and all non-empty product fields exposed by Al-Dawaa.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_medications?
Searches https://www.al-dawaa.com for medications by name or keyword. Returns 0-indexed paginated product records with current stock status, pricing, prescription requirements, and all non-empty product fields exposed by Al-Dawaa. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"products": [
{}
],
"page_size": 0,
"pagination": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/b734abc4-fbe2-48e7-8d84-f50ff82b5d94/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b734abc4-fbe2-48e7-8d84-f50ff82b5d94",
"variables": {
"query": "panadol",
"page": 0,
"page_size": 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="b734abc4-fbe2-48e7-8d84-f50ff82b5d94") — the "search_medications" function, which searches https://www.al-dawaa.com for medications by name or keyword. Returns 0-indexed paginated product records with current stock status, pricing, prescription requirements, and all non-empty product fields exposed by Al-Dawaa.. It takes query (str), page (int), page_size (int). Return the result as structured JSON.