Marketplace
No threads yet
Live

list_popular_software

download.cnet.com

Returns one page of about 24 platform-specific software listings from https://download.com, ordered by download popularity with complete non-empty listing metadata.

Parameters3
Runs10
Updated3d ago
Failing10 runs · 50% 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_software?

Returns one page of about 24 platform-specific software listings from https://download.com, ordered by download popularity with complete non-empty listing metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass platform_slug, page, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "results": [
    {
      "title": "<string>",
      "rating": 0,
      "license": "<string>",
      "category": "<string>",
      "icon_url": "<string>",
      "platform": "<string>",
      "license_id": "<string>",
      "product_id": "<string>",
      "description": "<string>",
      "platform_id": "<string>",
      "product_url": "<string>",
      "rating_label": "<string>"
    }
  ],
  "sort_order": "<string>",
  "source_url": "<string>",
  "total_pages": 0,
  "result_count": 0,
  "platform_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9aa0121f-7cd8-4096-909a-10eec08dec77/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9aa0121f-7cd8-4096-909a-10eec08dec77",
    "variables": {
        "platform_slug": "windows",
        "page": 1,
        "timeout_seconds": 25
    }
}'

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="9aa0121f-7cd8-4096-909a-10eec08dec77") — the "list_popular_software" function, which returns one page of about 24 platform-specific software listings from https://download.com, ordered by download popularity with complete non-empty listing metadata..

It takes platform_slug (str), page (int), timeout_seconds (int). Return the result as structured JSON.