Live
list_category_products
carrefour.esReturns paginated supermarket products for a category ID from https://www.carrefour.es with prices, stock, promotions, restrictions, images, and product links.
Parameters4
Runs6
Updated2d ago
Operational6 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_category_products?
Returns paginated supermarket products for a category ID from https://www.carrefour.es with prices, stock, promotions, restrictions, images, and product links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_id, page, postal_code, sale_point and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"offset": 0,
"products": [
{}
],
"page_size": 0,
"sale_point": "<string>",
"category_id": "<string>",
"postal_code": "<string>",
"total_pages": 0,
"category_url": "<string>",
"category_name": "<string>",
"total_category_products": 0,
"total_paginated_products": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/8b7a0dc0-5494-47b4-a277-064c92725c1f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8b7a0dc0-5494-47b4-a277-064c92725c1f",
"variables": {
"category_id": "cat20003",
"page": 1,
"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="8b7a0dc0-5494-47b4-a277-064c92725c1f") — the "list_category_products" function, which returns paginated supermarket products for a category ID from https://www.carrefour.es with prices, stock, promotions, restrictions, images, and product links.. It takes category_id (str), page (int), postal_code (str), sale_point (str). Return the result as structured JSON.