Marketplace
No threads yet
Live

search_products

victory.co.il

Searches the full Victory online product catalog from https://www.victory.co.il and returns automatically paginated products with pricing, stock status, categories, and all non-empty product fields.

Parameters4
Runs14
Updated10d ago
Operational14 runs · 100% succeeded
30 days agotoday

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 full Victory online product catalog from https://www.victory.co.il and returns automatically paginated products with pricing, stock status, categories, and all non-empty product fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, start_page, page_size, max_pages and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "query": "<string>",
  "products": [
    {}
  ],
  "pagination": {
    "has_more": true,
    "returned": 0,
    "max_pages": 0,
    "next_page": 0,
    "page_size": 0,
    "start_page": 0,
    "pages_fetched": 0,
    "total_available": 0
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/04ba0ac2-de02-4d63-80cc-1b12c54cfd5e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "04ba0ac2-de02-4d63-80cc-1b12c54cfd5e",
    "variables": {
        "query": "חלב",
        "start_page": 1,
        "page_size": 10,
        "max_pages": 2
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="04ba0ac2-de02-4d63-80cc-1b12c54cfd5e") — the "search_products" function, which searches the full Victory online product catalog from https://www.victory.co.il and returns automatically paginated products with pricing, stock status, categories, and all non-empty product fields..

It takes query (str), start_page (int), page_size (int), max_pages (int). Return the result as structured JSON.