Marketplace
No threads yet
Live

list_population_categories

psacard.com

Returns every Population Report category from https://psacard.com with its numeric category ID or route code, slug, page URL, and image.

Parameters1
Runs7
Updated3d ago
Operational7 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_population_categories?

Returns every Population Report category from https://psacard.com with its numeric category ID or route code, slug, page URL, and image. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "categories": [
    {
      "name": "<string>",
      "slug": "<string>",
      "image_url": "<string>",
      "category_id": 0,
      "category_url": "<string>"
    }
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/f25e350c-1330-4b22-820e-e8e6fe7740b8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "f25e350c-1330-4b22-820e-e8e6fe7740b8",
    "variables": {
        "timeout_seconds": 30
    }
}'

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="f25e350c-1330-4b22-820e-e8e6fe7740b8") — the "list_population_categories" function, which returns every Population Report category from https://psacard.com with its numeric category ID or route code, slug, page URL, and image..

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