Marketplace
No threads yet
Live

list_offer_groups

aldi.be

Lists current or next-week ALDI Belgium offer groups from https://www.aldi.be using the promotions collection endpoint. Returns shallow group and category metadata with linked product IDs only, without per-product enrichment.

Parameters2
Runs10
Updated8d ago
Operational10 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 list_offer_groups?

Lists current or next-week ALDI Belgium offer groups from https://www.aldi.be using the promotions collection endpoint. Returns shallow group and category metadata with linked product IDs only, without per-product enrichment. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass week, language and get the result back without maintaining a scraper.

Response

{
  "site": "<string>",
  "week": "<string>",
  "title": "<string>",
  "language": "<string>",
  "offer_groups": [
    {}
  ],
  "week_switch_day": "<string>",
  "cost_credits_per_call": 0,
  "upstream_request_count": 0,
  "does_not_represent_all_promotions": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e68e2bae-e929-4ec3-a03c-ff1a6ee5302c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e68e2bae-e929-4ec3-a03c-ff1a6ee5302c",
    "variables": {
        "week": "current",
        "language": "nl"
    }
}'

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="e68e2bae-e929-4ec3-a03c-ff1a6ee5302c") — the "list_offer_groups" function, which lists current or next-week ALDI Belgium offer groups from https://www.aldi.be using the promotions collection endpoint. Returns shallow group and category metadata with linked product IDs only, without per-product enrichment..

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