Marketplace
No threads yet
Live

list_belgium_promotions

carrefour.be

Lists current Carrefour Belgium promotions from https://www.carrefour.be in one page batch request and groups visible products by promotion observation. Returns per-promotion product groups plus total promotional item count metadata.

Parameters3
Runs15
Updated8d ago
Degraded15 runs · 80% 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_belgium_promotions?

Lists current Carrefour Belgium promotions from https://www.carrefour.be in one page batch request and groups visible products by promotion observation. Returns per-promotion product groups plus total promotional item count metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass start, page_size, language and get the result back without maintaining a scraper.

Response

{
  "start": 0,
  "groups": [
    {
      "products": [
        {}
      ],
      "promotion": {
        "valid_until": "<string>",
        "promotion_id": "<string>",
        "promotion_name": "<string>",
        "similar_offers_url": "<string>"
      },
      "product_count": 0
    }
  ],
  "language": "<string>",
  "page_size": 0,
  "total_items": 0,
  "has_next_page": true,
  "returned_items": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a5c89f2c-dd86-47a1-9a5c-f1ca97b52115/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a5c89f2c-dd86-47a1-9a5c-f1ca97b52115",
    "variables": {
        "start": 0,
        "page_size": 36,
        "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="a5c89f2c-dd86-47a1-9a5c-f1ca97b52115") — the "list_belgium_promotions" function, which lists current Carrefour Belgium promotions from https://www.carrefour.be in one page batch request and groups visible products by promotion observation. Returns per-promotion product groups plus total promotional item count metadata..

It takes start (int), page_size (int), language (str). Return the result as structured JSON.