get_new_arrivals
scuffers.comReturns one page of up to 30 latest products from the New Arrivals collection on https://scuffers.com. Results are ordered by recency and include full non-empty product fields from the source.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_new_arrivals?
Returns one page of up to 30 latest products from the New Arrivals collection on https://scuffers.com. Results are ordered by recency and include full non-empty product fields from the source. 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/0573aad5-f706-44d4-ad5f-669f580a2fb9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0573aad5-f706-44d4-ad5f-669f580a2fb9",
"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="0573aad5-f706-44d4-ad5f-669f580a2fb9") — the "get_new_arrivals" function, which returns one page of up to 30 latest products from the New Arrivals collection on https://scuffers.com. Results are ordered by recency and include full non-empty product fields from the source.. It takes page (int), limit (int), timeout_seconds (int). Return the result as structured JSON.