Live
list_sale_products
shop.lululemon.comReturns paginated We Made Too Much sale products from https://shop.lululemon.com with complete non-empty product records, facets, sort options, and total counts.
Parameters4
Runs6
Updated3d 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_sale_products?
Returns paginated We Made Too Much sale products from 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 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/f1ee6645-247c-4716-8e3f-c1d28038ea96/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f1ee6645-247c-4716-8e3f-c1d28038ea96",
"variables": {
"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="f1ee6645-247c-4716-8e3f-c1d28038ea96") — the "list_sale_products" function, which returns paginated We Made Too Much sale products from https://shop.lululemon.com with complete non-empty product records, facets, sort options, and total counts.. It takes page (int), page_size (int), sort (str), timeout_seconds (int). Return the result as structured JSON.