Marketplace
No threads yet
Live

get_news_digest

worldmonitor.app

Returns the categorized live news digest from https://worldmonitor.app across politics, US, Europe, Middle East, tech, AI, finance, energy, and other tracked categories. Supports category filtering while preserving all non-empty record fields from each source item.

Parameters5
Runs8
Updated8d ago
Operational8 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 get_news_digest?

Returns the categorized live news digest from https://worldmonitor.app across politics, US, Europe, Middle East, tech, AI, finance, energy, and other tracked categories. Supports category filtering while preserving all non-empty record fields from each source item. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass categories, variant, language, limit_per_category, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "source": "<string>",
  "variant": "<string>",
  "endpoint": "<string>",
  "language": "<string>",
  "categories": {},
  "generated_at": "<string>",
  "total_records": 0,
  "category_count": 0,
  "available_categories": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b4eb2e1b-1e14-459e-8129-57a8134eb1eb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b4eb2e1b-1e14-459e-8129-57a8134eb1eb",
    "variables": {
        "categories": "",
        "variant": "full",
        "language": "en",
        "limit_per_category": 20,
        "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="b4eb2e1b-1e14-459e-8129-57a8134eb1eb") — the "get_news_digest" function, which returns the categorized live news digest from https://worldmonitor.app across politics, US, Europe, Middle East, tech, AI, finance, energy, and other tracked categories. Supports category filtering while preserving all non-empty record fields from each source item..

It takes categories (str), variant (str), language (str), limit_per_category (int), timeout_seconds (int). Return the result as structured JSON.