Marketplace
No threads yet
Live

get_tech_rankings

nanoreview.net

Gets paginated product ranking tables from https://nanoreview.net, including all non-empty row columns, product slugs, ratings, benchmark scores, and key specs. Supports SoC, phone AnTuTu/battery, CPU, GPU, and ARM/MUX laptop categories; vendor is a case-insensitive client-side filter.

Parameters4
Runs9
Updated10d ago
Operational9 runs · 100% 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 get_tech_rankings?

Gets paginated product ranking tables from https://nanoreview.net, including all non-empty row columns, product slugs, ratings, benchmark scores, and key specs. Supports SoC, phone AnTuTu/battery, CPU, GPU, and ARM/MUX laptop categories; vendor is a case-insensitive client-side filter. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, page, page_size, vendor and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "items": [
    {
      "url": "<string>",
      "name": "<string>",
      "rank": 0,
      "slug": "<string>",
      "values": {},
      "content_type": "<string>"
    }
  ],
  "title": "<string>",
  "columns": [
    "<string>"
  ],
  "category": "<string>",
  "page_size": 0,
  "total_items": 0,
  "total_pages": 0,
  "vendor_filter": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4adc2f0c-0465-4a5c-8bfa-7d9920f7435c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4adc2f0c-0465-4a5c-8bfa-7d9920f7435c",
    "variables": {
        "category": "soc",
        "page": 1,
        "page_size": 25,
        "vendor": ""
    }
}'

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="4adc2f0c-0465-4a5c-8bfa-7d9920f7435c") — the "get_tech_rankings" function, which gets paginated product ranking tables from https://nanoreview.net, including all non-empty row columns, product slugs, ratings, benchmark scores, and key specs. Supports SoC, phone AnTuTu/battery, CPU, GPU, and ARM/MUX laptop categories; vendor is a case-insensitive client-side filter..

It takes category (str), page (int), page_size (int), vendor (str). Return the result as structured JSON.