Live
list_categories
carrefour.esReturns top-level supermarket product categories or direct subcategories from https://www.carrefour.es, including category identifiers, names, URLs, icons, and navigation metadata.
Parameters1
Runs5
Updated1d ago
Operational5 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_categories?
Returns top-level supermarket product categories or direct subcategories from https://www.carrefour.es, including category identifiers, names, URLs, icons, and navigation metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass parent_category_id and get the result back without maintaining a scraper.
Response
{
"categories": [
{
"id": "<string>",
"url": "<string>",
"food": true,
"name": "<string>",
"url_rel": "<string>",
"language": "<string>",
"web_view": true,
"icon_path": "<string>",
"custom_link": true,
"show_next_level": true,
"featured_category": true,
"sale_point_default": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/8698f6da-2dc9-46c4-8fec-ab57e29778d7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8698f6da-2dc9-46c4-8fec-ab57e29778d7",
"variables": {
"parent_category_id": ""
}
}'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="8698f6da-2dc9-46c4-8fec-ab57e29778d7") — the "list_categories" function, which returns top-level supermarket product categories or direct subcategories from https://www.carrefour.es, including category identifiers, names, URLs, icons, and navigation metadata.. It takes parent_category_id (str). Return the result as structured JSON.