search_products
scuffers.comSearches https://scuffers.com products by keyword using the store's relevance-ranked suggestion engine, with an optional product-type category filter. Returns up to 10 matching product records.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches https://scuffers.com products by keyword using the store's relevance-ranked suggestion engine, with an optional product-type category filter. Returns up to 10 matching product records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, category, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"keyword": "<string>",
"category": "<string>",
"products": [
{
"id": 0,
"url": "<string>",
"tags": [
"<string>"
],
"type": "<string>",
"image": "<string>",
"price": "<string>",
"title": "<string>",
"handle": "<string>",
"vendor": "<string>",
"available": true,
"price_max": "<string>",
"price_min": "<string>",
"featured_image": {
"alt": "<string>",
"url": "<string>",
"width": 0,
"height": 0,
"aspect_ratio": 0
},
"compare_at_price_max": "<string>",
"compare_at_price_min": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/722e4355-efff-4d18-bc09-165be1cf33f0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "722e4355-efff-4d18-bc09-165be1cf33f0",
"variables": {
"keyword": "hoodie",
"category": "",
"limit": 10
}
}'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="722e4355-efff-4d18-bc09-165be1cf33f0") — the "search_products" function, which searches https://scuffers.com products by keyword using the store's relevance-ranked suggestion engine, with an optional product-type category filter. Returns up to 10 matching product records.. It takes keyword (str), category (str), limit (int). Return the result as structured JSON.