Marketplace
No threads yet
Live

list_collections

scuffers.com

Retrieves every non-Geosort product collection available from https://scuffers.com, following the store's paginated collection feed to completion. Each record includes its collection ID for use as category_id in product-category lookups.

Parameters1
Runs12
Updated10d ago
Operational12 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 list_collections?

Retrieves every non-Geosort product collection available from https://scuffers.com, following the store's paginated collection feed to completion. Each record includes its collection ID for use as category_id in product-category lookups. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page_size and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "collections": [
    {}
  ],
  "source_count": 0,
  "pages_fetched": 0,
  "excluded_geosort_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7d434e8c-162d-4da6-bc70-6b17b5197f31/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7d434e8c-162d-4da6-bc70-6b17b5197f31",
    "variables": {
        "page_size": 250
    }
}'

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="7d434e8c-162d-4da6-bc70-6b17b5197f31") — the "list_collections" function, which retrieves every non-Geosort product collection available from https://scuffers.com, following the store's paginated collection feed to completion. Each record includes its collection ID for use as category_id in product-category lookups..

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