Marketplace
No threads yet
Live

get_top_recommendations

shop.lululemon.com

Retrieves the current sitewide top products recommended by lululemon's data-science service on https://shop.lululemon.com. Returns each product's id, productId, displayName, listPrice, salePrice, and pdpUrl.

Parameters1
Runs9
Updated10d ago
Operational9 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 get_top_recommendations?

Retrieves the current sitewide top products recommended by lululemon's data-science service on https://shop.lululemon.com. Returns each product's id, productId, displayName, listPrice, salePrice, and pdpUrl. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.

Response

{
  "products": [
    {
      "id": "<string>",
      "pdpUrl": "<string>",
      "listPrice": [
        0
      ],
      "productId": "<string>",
      "salePrice": [
        0
      ],
      "displayName": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c5609ac1-dd2f-4087-9452-f5768c8b7ade/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c5609ac1-dd2f-4087-9452-f5768c8b7ade",
    "variables": {
        "limit": 4
    }
}'

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="c5609ac1-dd2f-4087-9452-f5768c8b7ade") — the "get_top_recommendations" function, which retrieves the current sitewide top products recommended by lululemon's data-science service on https://shop.lululemon.com. Returns each product's id, productId, displayName, listPrice, salePrice, and pdpUrl..

It takes limit (int). Return the result as structured JSON.