list_sale_products
scuffers.comReturns one page of up to 30 products from the All Sales collection on https://scuffers.com. Each product includes all non-empty source product fields plus a computed discount_percent based on variant compare_at_price and price.
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 one page of up to 30 products from the All Sales collection on https://scuffers.com. Each product includes all non-empty source product fields plus a computed discount_percent based on variant compare_at_price and price. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"limit": 0,
"source": "<string>",
"products": [
{}
],
"collection_id": 0,
"collection_title": "<string>",
"collection_handle": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d08d88df-f160-429c-a64e-5cdc09900080/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d08d88df-f160-429c-a64e-5cdc09900080",
"variables": {
"page": 1,
"limit": 30,
"timeout_seconds": 20
}
}'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="d08d88df-f160-429c-a64e-5cdc09900080") — the "list_sale_products" function, which returns one page of up to 30 products from the All Sales collection on https://scuffers.com. Each product includes all non-empty source product fields plus a computed discount_percent based on variant compare_at_price and price.. It takes page (int), limit (int), timeout_seconds (int). Return the result as structured JSON.