Live
list_product_categories
carrefour.beLists Carrefour Belgium top-level product categories from https://www.carrefour.be and returns category IDs, names, and category URLs for catalog browsing.
Parameters1
Runs13
Updated8d ago
Degraded13 runs · 76.9% 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_product_categories?
Lists Carrefour Belgium top-level product categories from https://www.carrefour.be and returns category IDs, names, and category URLs for catalog browsing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass language and get the result back without maintaining a scraper.
Response
{
"language": "<string>",
"categories": [
{
"url": "<string>",
"name": "<string>",
"category_id": "<string>"
}
],
"total_categories": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/34106ae7-09d9-4cdf-bfc3-2a1b7874f883/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "34106ae7-09d9-4cdf-bfc3-2a1b7874f883",
"variables": {
"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="34106ae7-09d9-4cdf-bfc3-2a1b7874f883") — the "list_product_categories" function, which lists Carrefour Belgium top-level product categories from https://www.carrefour.be and returns category IDs, names, and category URLs for catalog browsing.. It takes language (str). Return the result as structured JSON.