Data × Communication
Google SheetsTelegramAGNT

Automate Google Sheets + Telegram

The database every team already has open. The fastest channel between your agents and your phone. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.

Install Report Assembler → Get AGNT free

Report Assembler is a ready-made agent built around Google Sheets; point its last step at Telegram to finish this hand-off.

Automations teams run

Unlike field-mapping automation, the step in the middle is an agent: it can summarise, classify, judge and draft, not merely copy values from Google Sheets into Telegram.

When a row is added or edited in Google Sheets…

…an agent can send messages and alerts in Telegram — after reading the context and deciding it should.

When a sheet crosses a threshold in Google Sheets…

…an agent can reply to commands in Telegram — after reading the context and deciding it should.

When a schedule fires in Google Sheets…

…an agent can deliver files and reports in Telegram — after reading the context and deciding it should.

When a message arrives in Telegram…

…an agent can append and update rows in Google Sheets — with the reasoning recorded in the run’s receipt.

When a command is sent in Telegram…

…an agent can read ranges for reporting in Google Sheets — with the reasoning recorded in the run’s receipt.

When a schedule fires in Telegram…

…an agent can maintain a rolling dashboard tab in Google Sheets — with the reasoning recorded in the run’s receipt.

The Google Sheets and Telegram hand-off, setup template

Start with the google-sheets-api node and the telegram-api node. Configure the Google Sheets source payload, the agent input, and the Telegram operation. The sequential template does not implement conditional writes or approval by itself.

Google Sheets to Telegram: watch google sheets → review source and draft → configure destination in telegram TRIGGER google-sheets-new-row Watch Google Sheets Configure activation ACTION agnt-agent Review source and draft Configure inputs ACTION telegram-api Configure destination in Telegram Configure inputs
Setup template for Google Sheets and Telegram; verify data mapping and authorization using test accounts.
Google Sheets → TelegramSetup template · configure before activation

This is a schema-checked starting point, not an end-to-end tested automation. Replace every CONFIGURE_ value, choose the operations you intend, connect credentials and map source outputs into later inputs. An edge orders steps; it does not supply a condition, an approval gate or a field mapping. Add and test those controls explicitly before any write. Cloud APIs and model providers may receive data. Keep the workflow inactive until tested with fixtures.

{
  "id": "a32ff01a-23ff-4c96-adad-34b84195c870",
  "name": "Google Sheets → Telegram",
  "nodes": [
    {
      "id": "c5b3b531-f73a-41ce-a94d-21e5634ea538",
      "text": "Watch Google Sheets",
      "x": 512,
      "y": 144,
      "isEditing": false,
      "type": "google-sheets-new-row",
      "icon": "connect",
      "category": "trigger",
      "isSelected": false,
      "parameters": {
        "spreadsheetId": "CONFIGURE_SPREADSHEETID",
        "sheetName": "CONFIGURE_SHEETNAME"
      },
      "description": "Setup template for Google Sheets New Row. Listen for new rows added to a specified Google Sheet and trigger the workflow when a new row is detected. Configure credentials, inputs and output mapping before use.",
      "error": null,
      "isActive": false,
      "output": null,
      "outputs": {}
    },
    {
      "id": "50c66ecc-f584-4aa8-a616-b6f4c5500a58",
      "text": "Review source and draft",
      "x": 512,
      "y": 336,
      "isEditing": false,
      "type": "agnt-agent",
      "icon": "connect",
      "category": "action",
      "isSelected": false,
      "parameters": {
        "agentId": "CONFIGURE_AGENTID",
        "message": "Read the Google Sheets item. Decide whether it warrants action in Telegram, and explain why.\nSource input: CONFIGURE_SOURCE_INPUT. Produce a reviewable draft only; do not take external actions."
      },
      "description": "Setup template for Agent Chat. Chat with an AI agent from your agent library. Select an agent and send messages to interact with it within your workflow. Configure credentials, inputs and output mapping before use.",
      "error": null,
      "isActive": false,
      "output": null,
      "outputs": {}
    },
    {
      "id": "90b7725f-afd1-408f-a59e-377c2292bb66",
      "text": "Configure destination in Telegram",
      "x": 512,
      "y": 528,
      "isEditing": false,
      "type": "telegram-api",
      "icon": "connect",
      "category": "action",
      "isSelected": false,
      "parameters": {
        "action": "GET_ME",
        "botToken": "CONFIGURE_BOTTOKEN",
        "apiBaseUrl": "CONFIGURE_APIBASEURL",
        "includeRaw": false
      },
      "description": "Setup template for Telegram API. Use Telegram Bot API from a single AGNT node. Choose an action to validate a bot, send messages/media, edit/delete messages, download files, or call any raw Bot API method. Configure credentials, inputs and output mapping before use.",
      "error": null,
      "isActive": false,
      "output": null,
      "outputs": {}
    }
  ],
  "edges": [
    {
      "id": "a17c0d76-d4b6-43c4-a38a-f3842260d154",
      "start": {
        "id": "c5b3b531-f73a-41ce-a94d-21e5634ea538",
        "type": "output"
      },
      "end": {
        "id": "50c66ecc-f584-4aa8-a616-b6f4c5500a58",
        "type": "input"
      },
      "startX": 800,
      "startY": 168,
      "endX": 512,
      "endY": 360
    },
    {
      "id": "006e9093-274c-499b-a98b-d3b286897a5e",
      "start": {
        "id": "50c66ecc-f584-4aa8-a616-b6f4c5500a58",
        "type": "output"
      },
      "end": {
        "id": "90b7725f-afd1-408f-a59e-377c2292bb66",
        "type": "input"
      },
      "startX": 800,
      "startY": 360,
      "endX": 512,
      "endY": 552
    }
  ],
  "zoomLevel": 1,
  "canvasOffsetX": 0,
  "canvasOffsetY": 0,
  "isTinyNodeMode": false
}

Configure Google Sheets New Row

Listen for new rows added to a specified Google Sheet and trigger the workflow when a new row is detected.

  • spreadsheetId — The ID of the Google Spreadsheet to monitor Current example: CONFIGURE_SPREADSHEETID.
  • sheetName — The name of the sheet within the spreadsheet to monitor Current example: CONFIGURE_SHEETNAME.

Configure Telegram API

Use Telegram Bot API from a single AGNT node. Choose an action to validate a bot, send messages/media, edit/delete messages, download files, or call any raw Bot API method.

  • action — Telegram operation to perform. Current example: GET_ME.
  • botToken — Optional fallback Telegram bot token from @BotFather. If omitted, AGNT uses the connected Telegram provider token from Settings → Connections. Current example: CONFIGURE_BOTTOKEN.
  • apiBaseUrl — Optional Bot API base URL. Use https://api.telegram.org by default, or a local Bot API server URL. Current example: CONFIGURE_APIBASEURL.
  • includeRaw — Include the full raw Telegram API response when available. Current example: false.

Install Report Assembler

Report Assembler is a working agent built around Google Sheets. Install it, point its last step at Telegram, and you have this hand-off without building it from an empty canvas.

Runs on your own machine · See what it does

Wiring Google Sheets to Telegram

  1. Get AGNT Community Core. Free, local, no sign-up needed to run a workflow.
  2. Add both connections to the vault — Google Sheets takes one OAuth sign-in, Telegram takes an API key pasted into the vault.
  3. Configure the nodes above, or start from a marketplace workflow and edit it. The agent in the middle is the part worth spending time on.
  4. Run it once with an approval gate in place. The receipt tells you what it read, what it concluded, and what it changed in Telegram.

Google Sheets and Telegram — common questions

Can I connect Google Sheets to Telegram without writing code?

Yes. Google Sheets connects with one OAuth sign-in and Telegram with an API key pasted into the vault, both from the local credential vault. You then describe the job in plain language — “when a row is added or edited, send messages and alerts” — and the agent handles the rest.

How is this different from a field-mapping Google Sheets to Telegram automation?

Mapping tools move data; this reasons about it. Rather than copying a field into Telegram, the agent can weigh what arrived from Google Sheets, classify it against criteria you wrote in prose, draft something new, and act only when it is warranted.

Does my Google Sheets and Telegram data leave my machine?

Your credentials stay in a vault on your own disk rather than in someone else’s cloud. The only calls made are the ones the workflow needs: Google Sheets, Telegram, and your chosen model provider — which can be a local one.

What does a Google Sheets and Telegram run leave behind?

A receipt: what was read in Google Sheets, which tools ran with which arguments, what the agent concluded, and what it wrote to Telegram. Anything consequential can sit behind an approval gate so a person signs off before it happens.

Give AI a job. Get the proof.