Marketplace
No threads yet
Live

list_promotional_offers

carrefour.es

Returns current promoted supermarket products from https://www.carrefour.es with prices, stock, product links, and complete active promotion details.

Parameters2
Runs4
Updated1d ago
Operational4 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_promotional_offers?

Returns current promoted supermarket products from https://www.carrefour.es with prices, stock, product links, and complete active promotion details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass postal_code, sale_point and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "products": [
    {}
  ],
  "sale_point": "<string>",
  "category_id": "<string>",
  "postal_code": "<string>",
  "category_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/63a44ca7-9e73-40df-add2-59906b481f29/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "63a44ca7-9e73-40df-add2-59906b481f29",
    "variables": {
        "postal_code": "28232",
        "sale_point": "005290"
    }
}'

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="63a44ca7-9e73-40df-add2-59906b481f29") — the "list_promotional_offers" function, which returns current promoted supermarket products from https://www.carrefour.es with prices, stock, product links, and complete active promotion details..

It takes postal_code (str), sale_point (str). Return the result as structured JSON.