list_category_products
carrefour.beBrowses paginated products in a Carrefour Belgium category on https://www.carrefour.be. Returns up to 36 products per page with the same listing fields as search_carrefour_products, including pricing, promotions, and live availability.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_category_products?
Browses paginated products in a Carrefour Belgium category on https://www.carrefour.be. Returns up to 36 products per page with the same listing fields as search_carrefour_products, including pricing, promotions, and live availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_id, page, page_size, language and get the result back without maintaining a scraper.
Response
{
"page": 0,
"language": "<string>",
"products": [
{}
],
"page_size": 0,
"category_id": "<string>",
"total_pages": 0,
"has_next_page": true,
"total_results": 0,
"returned_count": 0,
"has_previous_page": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/0b3eac63-ce0e-4cf2-900f-159139d9f20f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0b3eac63-ce0e-4cf2-900f-159139d9f20f",
"variables": {
"category_id": "ros002",
"page": 1,
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="0b3eac63-ce0e-4cf2-900f-159139d9f20f") — the "list_category_products" function, which browses paginated products in a Carrefour Belgium category on https://www.carrefour.be. Returns up to 36 products per page with the same listing fields as search_carrefour_products, including pricing, promotions, and live availability.. It takes category_id (str), page (int), page_size (int), language (str). Return the result as structured JSON.