list_popular_categories
shop.lululemon.comLists a curated set of popular product categories from https://shop.lululemon.com, including each category slug and navigation state ID (n_value) for downstream category product browsing.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_popular_categories?
Lists a curated set of popular product categories from https://shop.lululemon.com, including each category slug and navigation state ID (n_value) for downstream category product browsing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass max_categories, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"categories": [
{
"href": "<string>",
"slug": "<string>",
"label": "<string>",
"n_value": "<string>"
}
],
"total_found": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/11c2cc5d-8a15-43c8-aeaa-0e65404c7082/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "11c2cc5d-8a15-43c8-aeaa-0e65404c7082",
"variables": {
"max_categories": 20,
"timeout_seconds": 40
}
}'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="11c2cc5d-8a15-43c8-aeaa-0e65404c7082") — the "list_popular_categories" function, which lists a curated set of popular product categories from https://shop.lululemon.com, including each category slug and navigation state ID (n_value) for downstream category product browsing.. It takes max_categories (int), timeout_seconds (int). Return the result as structured JSON.