Telegram Bot

Telegram is a cloud-based instant messaging and voice over IP service

Go to site
Explore
/
Apps
/
Telegram Bot

Telegram Bot API Integrations

Build and run workflows using the Telegram Bot API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Telegram Bot API, you can build bots that perform a variety of tasks, including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    telegram_bot_api: {
      type: "app",
      app: "telegram_bot_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
    })
  },
})

Choose an API to Connect with Telegram Bot API

1
-
12
of
1000+
apps by most popular

Delete a Message with Telegram Bot API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Telegram Bot
 
Try it
Send Message (Advanced) with Discord Webhook API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + Discord Webhook
 
Try it
Get Values in Range with Google Sheets API on Channel Updates (Instant) from Telegram Bot API
Telegram Bot + Google Sheets
 
Try it
Delete a Message with Telegram Bot API on New Item in Feed from RSS API
RSS + Telegram Bot
 
Try it
Delete a Message with Telegram Bot API on New Message from Discord API
Discord + Telegram Bot
 
Try it
New Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
New Channel Updates (Instant) from the Telegram Bot API

Emit new event each time a channel post is created or updated.

 
Try it
New Message Updates (Instant) from the Telegram Bot API

Emit new event each time a Telegram message is created or updated.

 
Try it
New Updates (Instant) from the Telegram Bot API

Emit new event for each new Telegram event.

 
Try it
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Edit a Media Message with the Telegram Bot API

Edits photo or video messages. See the docs for more information

 
Try it
Edit a Text Message with the Telegram Bot API

Edits text or game messages. See the docs for more information

 
Try it
Export Chat Invite Link with the Telegram Bot API

Generate a new primary invite link for a chat, See the docs for more information

 
Try it

Authentication

Telegram Bot uses API keys for authentication. When you connect your Telegram Bot account, Pipedream securely stores the keys so you can easily authenticate to Telegram Bot APIs in both code and no-code steps.

To use the Telegram Bot API, you must first create a new bot by chatting with the BotFather.


Telegram Bot how to

After you create your bot, copy the bot token and add it below.