search_products
delhaize.beSearches https://delhaize.be for products by keyword and returns relevance-ordered, paginated product metadata with structured pricing, availability, Nutri-Score, parsed package quantities, promotions, and complete non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches https://delhaize.be for products by keyword and returns relevance-ordered, paginated product metadata with structured pricing, availability, Nutri-Score, parsed package quantities, promotions, and complete non-empty source fields. 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,
"sort": "<string>",
"query": "<string>",
"products": [
{
"code": "<string>",
"name": "<string>",
"brand": "<string>",
"pricing": {
"currency": "<string>",
"unit_code": "<string>",
"price_type": "<string>",
"unit_price": 0,
"current_price": 0,
"regular_price": 0,
"promotional_price": 0,
"package_description": "<string>",
"formatted_current_price": "<string>",
"approximate_price_symbol": "<string>",
"supplementary_unit_price": "<string>",
"formatted_promotional_price": "<string>"
},
"category": {},
"in_stock": true,
"available": true,
"sub_brand": "<string>",
"image_urls": [
"<string>"
],
"nutri_score": "<string>",
"product_url": "<string>",
"source_scope": "<string>",
"delivery_type": "<string>",
"parsed_weight": {
"raw": "<string>",
"unit": "<string>",
"approximate": true,
"package_count": 0,
"total_quantity": 0,
"normalized_unit": "<string>",
"normalized_quantity": 0,
"quantity_per_package": 0
},
"source_fields": {},
"relevance_rank": 0,
"active_promotions": [
{
"code": "<string>",
"title": "<string>",
"valid_from": "<string>",
"description": "<string>",
"member_only": true,
"valid_until": "<string>",
"bundle_price": 0,
"free_delivery": true,
"mechanic_type": "<string>",
"source_fields": {},
"simple_message": "<string>",
"amount_discount": 0,
"reward_quantity": 0,
"percentage_discount": 0,
"qualifying_quantity": 0,
"linked_product_codes": [
"<string>"
]
}
],
"partially_in_stock": true
}
],
"page_size": 0,
"source_url": "<string>",
"total_pages": 0,
"source_scope": "<string>",
"total_results": 0,
"semantic_search_used": true,
"spelling_suggestion_used": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/dc51ddbe-2bdf-45b1-b656-c3ff6b5201f3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "dc51ddbe-2bdf-45b1-b656-c3ff6b5201f3",
"variables": {
"query": "melk",
"page": 1,
"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="dc51ddbe-2bdf-45b1-b656-c3ff6b5201f3") — the "search_products" function, which searches https://delhaize.be for products by keyword and returns relevance-ordered, paginated product metadata with structured pricing, availability, Nutri-Score, parsed package quantities, promotions, and complete non-empty source fields.. It takes query (str), page (int), page_size (int). Return the result as structured JSON.