Skip to main content

At a glance

Credentials

Set these per environment. See Connect an integration.
VariableRequiredDescription
TELEGRAM_BOT_TOKENYesTelegram bot token issued by @BotFather, in the form 123456789:ABC-DEF… Docs.

Setup

  1. Create a bot with @BotFather: In any Telegram client (a regular free Telegram account works), open a chat with @BotFather, send /newbot, and follow the prompts to pick a display name and a unique username ending in ‘bot’. BotFather replies with the bot token.
  2. Store the token: Set the token from BotFather as TELEGRAM_BOT_TOKEN. You can regenerate it at any time with /revoke in @BotFather, which invalidates the old token.
  3. Open a chat with the bot: Bots cannot message users first. Start a direct chat with your bot (or add it to a group) and send it a message; the chat then appears in getUpdates, where you can read the numeric chat_id used to address messages.
Provider API reference: https://core.telegram.org/bots/api

Tools

ToolAccessDescription
Send MessageWriteSend a text message to a chat, group, or channel the bot has access to
Get UpdatesReadReceive incoming updates (messages sent to the bot) via long polling; use it to discover chat ids
Get MeReadReturn basic information about the bot itself; useful for verifying the token works
Send PhotoWriteSend a photo to a chat by passing a publicly reachable HTTP URL or an existing Telegram file_id
Edit Message TextWriteEdit the text of a message previously sent by the bot