search_products
pricez.co.ilSearches the grocery and pharmacy catalog on https://www.pricez.co.il and returns every matching product with its national price range, category, supplier, rating, badges, and product metadata. All 53-item result pages are followed automatically.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches the grocery and pharmacy catalog on https://www.pricez.co.il and returns every matching product with its national price range, category, supplier, rating, badges, and product metadata. All 53-item result pages are followed automatically. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, sort and get the result back without maintaining a scraper.
Response
{
"sort": "<string>",
"query": "<string>",
"products": [
{
"name": "<string>",
"badges": [
"<string>"
],
"rating": 0,
"category": "<string>",
"currency": "<string>",
"supplier": "<string>",
"image_url": "<string>",
"product_id": 0,
"category_id": 0,
"product_url": "<string>",
"supplier_id": 0,
"category_url": "<string>",
"rating_scale": 0,
"supplier_url": "<string>",
"is_general_product": true,
"national_max_price": 0,
"national_min_price": 0,
"is_price_controlled": true,
"controlled_max_price": 0
}
],
"page_size": 0,
"pages_fetched": 0,
"total_results": 0,
"returned_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/8d61febe-86fc-4a64-aa02-d901cf699799/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8d61febe-86fc-4a64-aa02-d901cf699799",
"variables": {
"query": "חלב טרי 3% תנובה 1 ליטר",
"sort": "relevance"
}
}'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="8d61febe-86fc-4a64-aa02-d901cf699799") — the "search_products" function, which searches the grocery and pharmacy catalog on https://www.pricez.co.il and returns every matching product with its national price range, category, supplier, rating, badges, and product metadata. All 53-item result pages are followed automatically.. It takes query (str), sort (str). Return the result as structured JSON.