search_products
yochananof.co.ilFull-text search across the Yochananof product catalog at https://www.yochananof.co.il. Returns auto-paginated product records with prices, stock status, images, and category details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Full-text search across the Yochananof product catalog at https://www.yochananof.co.il. Returns auto-paginated product records with prices, stock status, images, and category details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page_size, start_page, max_pages and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"products": [
{
"sku": "<string>",
"uid": "<string>",
"name": "<string>",
"type": "<string>",
"image": {
"url": "<string>",
"label": "<string>",
"disabled": true,
"position": 0
},
"price": {
"final": {
"value": 0,
"currency": "<string>"
},
"regular": {
"value": 0,
"currency": "<string>"
},
"discount": {
"amount_off": 0,
"percent_off": 0
}
},
"gallery": [
{
"url": "<string>",
"label": "<string>",
"disabled": true,
"position": 0
}
],
"url_key": "<string>",
"thumbnail": {
"url": "<string>",
"label": "<string>",
"disabled": true,
"position": 0
},
"categories": [
{
"uid": "<string>",
"name": "<string>",
"path": "<string>",
"level": 0,
"url_path": "<string>",
"breadcrumbs": [
"<string>"
]
}
],
"url_suffix": "<string>",
"small_image": {
"url": "<string>",
"label": "<string>",
"disabled": true,
"position": 0
},
"stock_status": "<string>",
"canonical_url": "<string>",
"primary_category": {
"uid": "<string>",
"name": "<string>",
"path": "<string>",
"level": 0,
"url_path": "<string>",
"breadcrumbs": [
"<string>"
]
}
}
],
"next_page": 0,
"page_size": 0,
"truncated": true,
"start_page": 0,
"total_count": 0,
"total_pages": 0,
"pages_fetched": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/a96c857a-602c-4530-9c42-ca9c969625ba/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a96c857a-602c-4530-9c42-ca9c969625ba",
"variables": {
"query": "חלב",
"page_size": 20,
"start_page": 1,
"max_pages": 3
}
}'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="a96c857a-602c-4530-9c42-ca9c969625ba") — the "search_products" function, which full-text search across the Yochananof product catalog at https://www.yochananof.co.il. Returns auto-paginated product records with prices, stock status, images, and category details.. It takes query (str), page_size (int), start_page (int), max_pages (int). Return the result as structured JSON.