Live
list_collection_products
scuffers.comReturns one paginated page of up to 30 complete product records from a collection handle on https://scuffers.com, preserving every non-empty source field.
Parameters4
Runs7
Updated3d ago
Operational7 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_collection_products?
Returns one paginated page of up to 30 complete product records from a collection handle on https://scuffers.com, preserving every non-empty source field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_id, page, limit, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"count": 0,
"limit": 0,
"products": [
{}
],
"category_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/4dc3534f-95d8-4271-9c0c-cbdb42f42cbf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4dc3534f-95d8-4271-9c0c-cbdb42f42cbf",
"variables": {
"category_id": "accessories",
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="4dc3534f-95d8-4271-9c0c-cbdb42f42cbf") — the "list_collection_products" function, which returns one paginated page of up to 30 complete product records from a collection handle on https://scuffers.com, preserving every non-empty source field.. It takes category_id (str), page (int), limit (int), timeout_seconds (int). Return the result as structured JSON.