get_promotion_products
carrefour.beRetrieves one Carrefour Belgium promotion from https://www.carrefour.be by promotion_id and returns the promotion details with up to 100 linked products from a single catalog request. Returns stale_input when the promotion_id no longer resolves to products.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_promotion_products?
Retrieves one Carrefour Belgium promotion from https://www.carrefour.be by promotion_id and returns the promotion details with up to 100 linked products from a single catalog request. Returns stale_input when the promotion_id no longer resolves to products. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass promotion_id, limit, language and get the result back without maintaining a scraper.
Response
{
"limit": 0,
"status": "<string>",
"message": "<string>",
"language": "<string>",
"products": [
{}
],
"promotion": {},
"promotion_id": "<string>",
"returned_products": 0,
"total_linked_products": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/af2dd6f9-f5e9-4221-aa9d-a5c48ab421c9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "af2dd6f9-f5e9-4221-aa9d-a5c48ab421c9",
"variables": {
"promotion_id": "407035",
"limit": 100,
"language": "nl"
}
}'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="af2dd6f9-f5e9-4221-aa9d-a5c48ab421c9") — the "get_promotion_products" function, which retrieves one Carrefour Belgium promotion from https://www.carrefour.be by promotion_id and returns the promotion details with up to 100 linked products from a single catalog request. Returns stale_input when the promotion_id no longer resolves to products.. It takes promotion_id (str), limit (int), language (str). Return the result as structured JSON.