Marketplace
No threads yet
Live

list_popular_comparisons

nanoreview.net

Returns popular product comparison pairs by category from https://nanoreview.net with display text, product slugs, list position, and comparison URL.

Parameters1
Runs13
Updated3d ago
Degraded13 runs · 92.3% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_popular_comparisons?

Returns popular product comparison pairs by category from https://nanoreview.net with display text, product slugs, list position, and comparison URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "title": "<string>",
  "source": "<string>",
  "category": "<string>",
  "source_url": "<string>",
  "comparisons": [
    {
      "slug1": "<string>",
      "slug2": "<string>",
      "position": 0,
      "display_text": "<string>",
      "comparison_url": "<string>"
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1253fb8a-b6d9-4b46-b007-13e7e0308be9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1253fb8a-b6d9-4b46-b007-13e7e0308be9",
    "variables": {
        "category": "cpu"
    }
}'

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="1253fb8a-b6d9-4b46-b007-13e7e0308be9") — the "list_popular_comparisons" function, which returns popular product comparison pairs by category from https://nanoreview.net with display text, product slugs, list position, and comparison URL..

It takes category (str). Return the result as structured JSON.