Marketplace
No threads yet
Live

get_keyboard_specifications

mechanicalkeyboards.com

Returns technical keyboard specifications and all site-listed characteristics by handle from https://mechanicalkeyboards.com, including layout, dimensions, weight, and switch options.

Parameters2
Runs6
Updated3d ago
Operational6 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 get_keyboard_specifications?

Returns technical keyboard specifications and all site-listed characteristics by handle from https://mechanicalkeyboards.com, including layout, dimensions, weight, and switch options. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass handle, brand and get the result back without maintaining a scraper.

Response

{
  "brand": "<string>",
  "handle": "<string>",
  "dimensions": {
    "width_mm": 0,
    "height_mm": 0,
    "length_mm": 0
  },
  "model_name": "<string>",
  "weight_grams": 0,
  "characteristics": {},
  "form_factor_layout": "<string>",
  "available_switch_options": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d4037fdb-a137-4aeb-8df2-c69ca4859ee4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d4037fdb-a137-4aeb-8df2-c69ca4859ee4",
    "variables": {
        "handle": "ducky-origin-vintage",
        "brand": "Ducky"
    }
}'

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="d4037fdb-a137-4aeb-8df2-c69ca4859ee4") — the "get_keyboard_specifications" function, which returns technical keyboard specifications and all site-listed characteristics by handle from https://mechanicalkeyboards.com, including layout, dimensions, weight, and switch options..

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