header
login

Quick Start

Let's create a simple Telegram bot that responds to the /start command.

1. Create a Project

  1. Go to your dashboard
  2. Click "Create Project"
  3. Enter a name and click "Create"

2. Add a Trigger

Open the project in the visual editor. A trigger block will already be on the canvas. Select Telegram type and paste your bot token (get one from @BotFather).

3. Add Functions

Add a Step block and inside it — an if function:

Condition: "{=message=}" == "/start"

In the then branch, add a send_message function:

Text: Hello! I'm your bot.

4. Save and Launch

Press Ctrl+S to save. The bot will automatically start receiving messages.

What's Next

  • Explore functions to extend your bot's capabilities
  • Add conditions, variables, and integrations