list_promotions
delhaize.beLists currently active product promotions from https://delhaize.be with pagination, complete product metadata, structured pricing and package quantities, deterministic promotion mechanics, Brussels-local validity timestamps, and linked product codes.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_promotions?
Lists currently active product promotions from https://delhaize.be with pagination, complete product metadata, structured pricing and package quantities, deterministic promotion mechanics, Brussels-local validity timestamps, and linked product codes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<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>"
],
"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>"
]
}
],
"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": {},
"partially_in_stock": true
}
],
"page_size": 0,
"source_url": "<string>",
"total_pages": 0,
"source_scope": "<string>",
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/331cd882-b497-4206-95a9-480e8d86ebc3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "331cd882-b497-4206-95a9-480e8d86ebc3",
"variables": {
"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="331cd882-b497-4206-95a9-480e8d86ebc3") — the "list_promotions" function, which lists currently active product promotions from https://delhaize.be with pagination, complete product metadata, structured pricing and package quantities, deterministic promotion mechanics, Brussels-local validity timestamps, and linked product codes.. It takes page (int), page_size (int). Return the result as structured JSON.