Marketplace
No threads yet
Live

list_collection_products

mechanicalkeyboards.com

Returns paginated mechanical-keyboard collection products from https://mechanicalkeyboards.com with brand, handle, pricing, availability, images, tags, and source metadata.

Parameters2
Runs9
Updated3d ago
Operational9 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_collection_products?

Returns paginated mechanical-keyboard collection products from https://mechanicalkeyboards.com with brand, handle, pricing, availability, images, tags, and source metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, brand and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "has_more": true,
  "products": [
    {}
  ],
  "page_size": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/371a8623-ff7e-49fb-aa3f-8b59a0aed8e5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "371a8623-ff7e-49fb-aa3f-8b59a0aed8e5",
    "variables": {
        "page": 1,
        "brand": ""
    }
}'

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="371a8623-ff7e-49fb-aa3f-8b59a0aed8e5") — the "list_collection_products" function, which returns paginated mechanical-keyboard collection products from https://mechanicalkeyboards.com with brand, handle, pricing, availability, images, tags, and source metadata..

It takes page (int), brand (str). Return the result as structured JSON.