get_tech_rankings
nanoreview.netGets 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.
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.
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.