Live
get_product_comparison
nanoreview.netCompares two product slugs side by side on https://nanoreview.net, returning review, benchmark, and specification sections with values for both products.
Parameters2
Runs6
Updated3d ago
Degraded6 runs · 83.3% 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_comparison?
Compares two product slugs side by side on https://nanoreview.net, returning review, benchmark, and specification sections with values for both products. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass first_slug, second_slug and get the result back without maintaining a scraper.
Response
{
"title": "<string>",
"source": "<string>",
"summary": "<string>",
"products": [
{
"name": "<string>",
"slug": "<string>",
"image_url": "<string>",
"final_score": "<string>",
"product_url": "<string>"
}
],
"sections": [
{
"name": "<string>",
"items": [
{
"property": "<string>",
"annotations": {},
"first_value": "<string>",
"second_value": "<string>"
}
],
"category": "<string>",
"metadata": {}
}
],
"source_url": "<string>",
"comparison_type": "<string>",
"key_differences": [
{
"label": "<string>",
"advantages": [
"<string>"
]
}
],
"requested_slugs": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/18280a46-750d-46d7-9cb2-32fddd93dfa9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "18280a46-750d-46d7-9cb2-32fddd93dfa9",
"variables": {
"first_slug": "apple-m4-max-16-core",
"second_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="18280a46-750d-46d7-9cb2-32fddd93dfa9") — the "get_product_comparison" function, which compares two product slugs side by side on https://nanoreview.net, returning review, benchmark, and specification sections with values for both products.. It takes first_slug (str), second_slug (str). Return the result as structured JSON.