Marketplace
No threads yet
Live

list_top_task_categories

theresanaiforthat.com

Returns up to 80 top task categories from https://theresanaiforthat.com, sorted by saves with identifiers, slugs, subscriber totals, and entity counts.

Parameters1
Runs6
Updated4d ago
Operational6 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 list_top_task_categories?

Returns up to 80 top task categories from https://theresanaiforthat.com, sorted by saves with identifiers, slugs, subscriber totals, and entity counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.

Response

{
  "tasks": [
    {
      "name": "<string>",
      "rank": 0,
      "slug": "<string>",
      "emoji": "<string>",
      "saves": 0,
      "task_id": 0,
      "page_url": "<string>",
      "tool_count": 0,
      "model_count": 0,
      "robot_count": 0,
      "subscribers": 0,
      "device_count": 0
    }
  ],
  "ordering": "<string>",
  "source_url": "<string>",
  "total_count": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/703f44e1-3e91-43d5-84bc-4f4d34821379/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "703f44e1-3e91-43d5-84bc-4f4d34821379",
    "variables": {
        "limit": 80
    }
}'

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="703f44e1-3e91-43d5-84bc-4f4d34821379") — the "list_top_task_categories" function, which returns up to 80 top task categories from https://theresanaiforthat.com, sorted by saves with identifiers, slugs, subscriber totals, and entity counts..

It takes limit (int). Return the result as structured JSON.