Discover/MechanicalKeyboards API
live

MechanicalKeyboards APImechanicalkeyboards.com

Access mechanical keyboard switch specs, keyboard listings, prices, availability, and customer reviews from mechanicalkeyboards.com via 7 structured endpoints.

Endpoint health
verified 1h ago
get_keyboards
search_products
get_keyboard_detail
get_switch_brands
get_switch_detail
5/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the MechanicalKeyboards API?

The mechanicalkeyboards.com API exposes 7 endpoints covering the site's full catalog of keyboard switches and complete keyboards, including specs, pricing, availability, variants, and customer reviews. The get_switch_detail endpoint returns granular switch specs — actuation force, pretravel, total travel, and feel type — alongside variant-level pricing and image arrays. search_products lets you query the entire catalog by keyword across both switches and keyboards.

Try it
Page number for pagination.
api.parse.bot/scraper/9a982982-bc27-4674-af7e-385a0e781685/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9a982982-bc27-4674-af7e-385a0e781685/get_switches?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace mechanicalkeyboards-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Mechanical Keyboards Catalog — browse switches, search, drill into details and reviews."""
from parse_apis.mechanical_keyboards_catalog_api import MechanicalKeyboards, ProductNotFound

client = MechanicalKeyboards()

# Browse available switch brands
for brand in client.brands.list(limit=5):
    print(brand.name)

# List switches from the catalog and inspect specs
switch_summary = client.switchsummaries.list(limit=1).first()
if switch_summary:
    print(switch_summary.name, switch_summary.price, switch_summary.specs.actuation_force)

    # Drill into full detail from the summary
    switch = switch_summary.details()
    print(switch.feel, switch.brand, len(switch.variants), "variants")

    # Read customer reviews for this switch
    for review in switch.reviews.list(limit=3):
        print(review.author, review.rating, review.title)

# Search the catalog by keyword
result = client.searchresults.search(query="gateron", limit=3).first()
if result:
    print(result.name, result.vendor, result.price)

# Get a keyboard by handle with typed-error handling
try:
    keyboard = client.keyboards.get(handle="ducky-origin-vintage")
    print(keyboard.name, keyboard.price, keyboard.available)
    for variant in keyboard.variants[:2]:
        print(variant.title, variant.sku, variant.available)
except ProductNotFound as exc:
    print(f"Keyboard not found: {exc.handle}")

print("exercised: brands.list / switchsummaries.list / details / reviews.list / searchresults.search / keyboards.get")
All endpoints · 7 totalmissing one? ·

Retrieve a paginated list of keyboard switches from the keyboard-switches collection. Each page returns up to 30 products with basic info, tags, and parsed specs (actuation force, pretravel, total travel). Use page parameter to advance through the catalog.

Input
ParamTypeDescription
pageintegerPage number for pagination.
Response
{
  "type": "object",
  "fields": {
    "page": "integer indicating current page number",
    "products": "array of switch product objects with id, name, brand, handle, price, available, thumbnail, tags, and specs"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "id": 8928336806188,
          "name": "Greetech Blue 55g Clicky Switch",
          "tags": [
            "55g",
            "blue",
            "clicky"
          ],
          "brand": "Greetech",
          "price": "0.09",
          "specs": {
            "actuation_force": "55g actuation force"
          },
          "handle": "greetech-blue-55g-clicky",
          "available": true,
          "thumbnail": "https://cdn.shopify.com/s/files/1/0835/9706/6540/files/5298-MFPII-Greetech-Blue-Switch.png?v=1707268208"
        }
      ]
    },
    "status": "success"
  }
}

About the MechanicalKeyboards API

Switch Data

get_switches returns a paginated list of switches from the keyboard-switches collection. Each product object includes id, name, brand, handle, price, available, thumbnail, and tags. The handle field is the slug you pass to get_switch_detail for full spec data. get_switch_detail expands that record with a specs object containing parsed fields like actuation_force, pretravel, and total_travel, plus a feel string (linear, tactile, or clicky), multiple images, and a variants array with per-variant id, title, price, sku, and available status. get_switch_brands returns an alphabetically sorted list of all vendor names currently in the switches collection — useful for building filters without iterating through paginated results.

Keyboard Data

get_keyboards returns a paginated list of complete keyboard products with name, brand, handle, price, available, and thumbnail. Passing a handle to get_keyboard_detail fetches the full record: id, tags, images, variants, and a specs object (which may be sparse for some keyboard listings). The available boolean on the detail response reflects overall in-stock status, while the variants array breaks down availability at the configuration level (e.g., layout or color variant).

Search and Reviews

search_products accepts a query string — such as 'gateron' or 'linear switch' — and an optional limit, returning matching products across the entire catalog with name, handle, price, available, image, url, and vendor. This is the fastest way to locate a handle before calling detail endpoints. get_switch_reviews accepts a handle and returns an array of review objects — each with id, author, rating, title, body, and date — plus an aggregate object containing the mean rating and total review count.

Reliability & maintenanceVerified

The MechanicalKeyboards API is a managed, monitored endpoint for mechanicalkeyboards.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mechanicalkeyboards.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official mechanicalkeyboards.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1h ago
Latest check
5/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a switch comparison tool using actuation_force, pretravel, and total_travel from get_switch_detail.
  • Track in-stock status for specific switches or keyboards by polling the available field on detail endpoints.
  • Aggregate customer sentiment by collecting rating and body fields from get_switch_reviews across multiple switch handles.
  • Populate a brand-filtered switch browser using the alphabetical list from get_switch_brands.
  • Cross-reference variant-level pricing from the variants array to compare per-unit switch costs across pack sizes.
  • Index the full catalog for search using search_products with brand-name queries like 'cherry' or 'kailh'.
  • Monitor price changes over time by periodically calling get_switches and recording the price field per product id.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does mechanicalkeyboards.com offer an official developer API?+
No. mechanicalkeyboards.com does not publish an official public developer API or documented data feed.
What does `get_switch_detail` return that `get_switches` does not?+
get_switches returns summary fields: id, name, brand, handle, price, available, thumbnail, and tags. get_switch_detail adds the parsed specs object (with actuation_force, pretravel, total_travel), the feel classification string, a full images array, and the variants array with per-variant sku, price, and available status.
Are keycaps, cables, or other accessories covered by the API?+
Not currently. The API covers keyboard switches (via get_switches and get_switch_detail) and complete keyboards (via get_keyboards and get_keyboard_detail). search_products may surface accessories as part of keyword results, but there are no dedicated listing or detail endpoints for keycaps, cables, or cases. You can fork this API on Parse and revise it to add collection-specific endpoints for those product types.
How does pagination work across list endpoints?+
Both get_switches and get_keyboards accept an optional page integer parameter. The response includes a page field confirming the current page returned. There is no total-page-count or cursor field in the response, so you iterate by incrementing page until the products array is empty or shorter than a full page.
Does `get_switch_reviews` include review filtering by rating or date?+
No filter parameters are exposed. get_switch_reviews returns all available reviews for a given handle in a single response, along with the aggregate object. Filtering by rating or sorting by date would need to be done client-side against the returned reviews array. You can fork this API on Parse and revise it to add server-side filter parameters if needed.
Page content last updated . Spec covers 7 endpoints from mechanicalkeyboards.com.
Related APIs in EcommerceSee all →
novelkeys.xyz API
Browse and search NovelKeys' complete catalog of mechanical keyboard products—including switches, keyboards, keycaps, and their availability status—to find exactly what you need. Check preorder options, discover new arrivals, and get detailed product information across all collections in one place.
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.
megekko.nl API
Search and browse products from Megekko's electronics catalog, getting detailed specifications, pricing, and category information to compare items and find exactly what you're looking for. Explore the full product hierarchy to discover items across all categories and subcategories available on the store.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.
backmarket.com API
Search and browse refurbished electronics across Back Market's catalog, compare pricing by condition, and read seller and product reviews to find the best deals. Filter by product categories and access detailed information about listings to make informed purchasing decisions.
pcpartpicker.com API
Search and retrieve detailed PC component data including motherboards, specifications, and pricing across all part categories from PCPartPicker. Build custom PC configurations by looking up individual parts and comparing their specs and costs.