Marketplace
No threads yet
Live

get_belgium_promotions

aldi.be

Fetches current or next week's grouped promotions from https://www.aldi.be. Returns offer periods and categories enriched with complete product details, prices, strike prices, promotional text, and images.

Parameters1
Runs13
Updated10d ago
Operational13 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 get_belgium_promotions?

Fetches current or next week's grouped promotions from https://www.aldi.be. Returns offer periods and categories enriched with complete product details, prices, strike prices, promotional text, and images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass week and get the result back without maintaining a scraper.

Response

{
  "week": "<string>",
  "title": "<string>",
  "groupCount": 0,
  "weekSwitchPer": "<string>",
  "promotionGroups": [
    {}
  ],
  "uniqueProductCount": 0,
  "resolvedProductCount": 0,
  "upstreamRequestCount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/140e30b4-0df8-44b8-8f0c-49b5d7b8c513/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "140e30b4-0df8-44b8-8f0c-49b5d7b8c513",
    "variables": {
        "week": "current"
    }
}'

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="140e30b4-0df8-44b8-8f0c-49b5d7b8c513") — the "get_belgium_promotions" function, which fetches current or next week's grouped promotions from https://www.aldi.be. Returns offer periods and categories enriched with complete product details, prices, strike prices, promotional text, and images..

It takes week (str). Return the result as structured JSON.