Live
get_user_benchmark_results
nanoreview.netReturns the full user-submitted benchmark result list for a product slug from https://nanoreview.net, preserving every non-empty score and submission field for each benchmark type.
Parameters1
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_user_benchmark_results?
Returns the full user-submitted benchmark result list for a product slug from https://nanoreview.net, preserving every non-empty score and submission field for each benchmark type. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"total": 0,
"source": "<string>",
"results": [
{
"values": {},
"benchmark": "<string>",
"submission": {},
"benchmark_code": "<string>"
}
],
"source_url": "<string>",
"product_name": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/0e2fa8fa-9f1c-4a35-b7f3-89367250ddbe/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0e2fa8fa-9f1c-4a35-b7f3-89367250ddbe",
"variables": {
"slug": "apple-m4-max-14-core"
}
}'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="0e2fa8fa-9f1c-4a35-b7f3-89367250ddbe") — the "get_user_benchmark_results" function, which returns the full user-submitted benchmark result list for a product slug from https://nanoreview.net, preserving every non-empty score and submission field for each benchmark type.. It takes slug (str). Return the result as structured JSON.