Marketplace
No threads yet
Live

search_catalog_products

littletoncoin.com

Searches or browses Littleton Coin Company products from https://www.littletoncoin.com by keyword and/or category. Returns paginated totals plus complete non-empty product details, prices, specifications, images, variants, and availability.

Parameters4
Runs11
Updated10d ago
Operational11 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 search_catalog_products?

Searches or browses Littleton Coin Company products from https://www.littletoncoin.com by keyword and/or category. Returns paginated totals plus complete non-empty product details, prices, specifications, images, variants, and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category_id, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "query": "<string>",
  "total": 0,
  "has_next": true,
  "products": [
    {}
  ],
  "returned": 0,
  "page_size": 0,
  "category_id": "<string>",
  "total_pages": 0,
  "has_previous": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2371e58b-ef76-424f-9c95-eebab1952137/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2371e58b-ef76-424f-9c95-eebab1952137",
    "variables": {
        "query": "Morgan dollar",
        "category_id": "",
        "page": 1,
        "page_size": 6
    }
}'

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="2371e58b-ef76-424f-9c95-eebab1952137") — the "search_catalog_products" function, which searches or browses Littleton Coin Company products from https://www.littletoncoin.com by keyword and/or category. Returns paginated totals plus complete non-empty product details, prices, specifications, images, variants, and availability..

It takes query (str), category_id (str), page (int), page_size (int). Return the result as structured JSON.