Marketplace
No threads yet
Live

search_tech_products

nanoreview.net

Searches CPUs, GPUs, SoCs, phones, and laptops by name on https://nanoreview.net. Returns each matching product's id, slug, label, name, and content type.

Parameters3
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 search_tech_products?

Searches CPUs, GPUs, SoCs, phones, and laptops by name on https://nanoreview.net. Returns each matching product's id, slug, label, name, and content type. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, content_type, limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "query": "<string>",
  "results": [
    {
      "id": 0,
      "name": "<string>",
      "slug": "<string>",
      "label": "<string>",
      "content_type": "<string>"
    }
  ],
  "content_type": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a7ba2bfd-e538-4a1f-a947-d12a172b2a0b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a7ba2bfd-e538-4a1f-a947-d12a172b2a0b",
    "variables": {
        "query": "Apple",
        "content_type": "phone",
        "limit": 10
    }
}'

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="a7ba2bfd-e538-4a1f-a947-d12a172b2a0b") — the "search_tech_products" function, which searches CPUs, GPUs, SoCs, phones, and laptops by name on https://nanoreview.net. Returns each matching product's id, slug, label, name, and content type..

It takes query (str), content_type (str), limit (int). Return the result as structured JSON.