Live
get_product_details
nanoreview.netReturns full specifications, review scores, benchmark sections, sub-test scores, and user-submitted benchmark entries for a product slug from https://nanoreview.net.
Parameters1
Runs12
Updated3d ago
Operational12 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_product_details?
Returns full specifications, review scores, benchmark sections, sub-test scores, and user-submitted benchmark entries for a product slug from https://nanoreview.net. 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
{
"id": 0,
"name": "<string>",
"slug": "<string>",
"source": "<string>",
"summary": "<string>",
"image_url": "<string>",
"highlights": {},
"source_url": "<string>",
"content_type": "<string>",
"review_scores": {},
"specifications": [
{
"name": "<string>",
"specs": {}
}
],
"user_benchmarks": [
{
"values": {},
"benchmark": "<string>",
"detail_url": "<string>"
}
],
"benchmark_sections": [
{
"name": "<string>",
"scores": {},
"metadata": {}
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/0dfce109-0c8b-4bc2-a22d-0f23d25adb2f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0dfce109-0c8b-4bc2-a22d-0f23d25adb2f",
"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="0dfce109-0c8b-4bc2-a22d-0f23d25adb2f") — the "get_product_details" function, which returns full specifications, review scores, benchmark sections, sub-test scores, and user-submitted benchmark entries for a product slug from https://nanoreview.net.. It takes slug (str). Return the result as structured JSON.