Marketplace
No threads yet
Live

get_telegram_feed

worldmonitor.app

Returns the monitored Telegram early-signal feed from https://worldmonitor.app, including breaking news and OSINT channel posts with full non-empty per-record fields. Supports optional topic, channel, and text filtering while preserving source metadata.

Parameters5
Runs8
Updated8d ago
Failing8 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 get_telegram_feed?

Returns the monitored Telegram early-signal feed from https://worldmonitor.app, including breaking news and OSINT channel posts with full non-empty per-record fields. Supports optional topic, channel, and text filtering while preserving source metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, topic, channel, text_query, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "items": [
    {}
  ],
  "source": "<string>",
  "enabled": true,
  "endpoint": "<string>",
  "updated_at": "<string>",
  "total_items": 0,
  "early_signal": true,
  "applied_topic": "<string>",
  "returned_items": 0,
  "applied_channel": "<string>",
  "applied_text_query": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/048dd203-4ce0-4afa-bbb7-3c98f601130a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "048dd203-4ce0-4afa-bbb7-3c98f601130a",
    "variables": {
        "limit": 50,
        "topic": "",
        "channel": "",
        "text_query": "",
        "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="048dd203-4ce0-4afa-bbb7-3c98f601130a") — the "get_telegram_feed" function, which returns the monitored Telegram early-signal feed from https://worldmonitor.app, including breaking news and OSINT channel posts with full non-empty per-record fields. Supports optional topic, channel, and text filtering while preserving source metadata..

It takes limit (int), topic (str), channel (str), text_query (str), timeout_seconds (int). Return the result as structured JSON.