get_product_reviews_by_handle
mechanicalkeyboards.comRetrieves customer reviews for a product handle from https://mechanicalkeyboards.com. Returns individual review records plus aggregate rating and review count when the Judge.me widget is present.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_reviews_by_handle?
Retrieves customer reviews for a product handle from https://mechanicalkeyboards.com. Returns individual review records plus aggregate rating and review count when the Judge.me widget is present. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass handle, per_page, max_pages, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"handle": "<string>",
"reviews": [
{}
],
"aggregate": {},
"product_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/97461947-b797-46e5-8672-9d4679123e94/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "97461947-b797-46e5-8672-9d4679123e94",
"variables": {
"handle": "ttc-venus-45g-linear-pcb-mount",
"per_page": 50,
"max_pages": 8,
"timeout_seconds": 25
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="97461947-b797-46e5-8672-9d4679123e94") — the "get_product_reviews_by_handle" function, which retrieves customer reviews for a product handle from https://mechanicalkeyboards.com. Returns individual review records plus aggregate rating and review count when the Judge.me widget is present.. It takes handle (str), per_page (int), max_pages (int), timeout_seconds (int). Return the result as structured JSON.