Marketplace
No threads yet
Live

list_category_products

shop.lululemon.com

Returns paginated products for a category on https://shop.lululemon.com with complete non-empty product records, facets, sort options, and total counts.

Parameters6
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

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 products for a category on https://shop.lululemon.com with complete non-empty product records, facets, sort options, and total counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, n_value, page, page_size, sort, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "facets": [
    {}
  ],
  "offset": 0,
  "n_value": "<string>",
  "category": {},
  "products": [
    {}
  ],
  "page_size": 0,
  "breadcrumbs": [
    {}
  ],
  "total_count": 0,
  "sort_options": [
    {}
  ],
  "category_slug": "<string>",
  "selected_sort": "<string>",
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e25fab2f-bdf1-4147-8f6e-3af52ee3f756/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e25fab2f-bdf1-4147-8f6e-3af52ee3f756",
    "variables": {
        "category": "women-leggings",
        "n_value": "n1udsq",
        "page": 1,
        "page_size": 40,
        "sort": "featured",
        "timeout_seconds": 45
    }
}'

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="e25fab2f-bdf1-4147-8f6e-3af52ee3f756") — the "list_category_products" function, which returns paginated products for a category on https://shop.lululemon.com with complete non-empty product records, facets, sort options, and total counts..

It takes category (str), n_value (str), page (int), page_size (int), sort (str), timeout_seconds (int). Return the result as structured JSON.