Getting Started¶
This guide walks you through creating and running your first Telegram bot on TeleBotHost.
1. Open TeleBotHost¶
Go to the TeleBotHost console.
2. Log In or Sign Up¶
- Log in to your existing account, or
- Create a new account if you are new
After logging in, you will see the dashboard.
3. Create a Telegram Bot¶
- Open Telegram
- Search for @BotFather
- Send
/newbot - Set a bot name and username
- Copy the bot token provided
4. Add the Bot on TeleBotHost¶
- Open the TeleBotHost dashboard
- Click Add Bot
- Paste your bot token
- Click Create
Your bot will appear in the bot list.
5. Open the Bot Panel¶
Click your bot in the dashboard to open its management panel.
From here you can:
- Add and edit commands
- Write TBL code
- Start or stop the bot
6. Start the Bot¶
Click Launch Bot to start your bot.
Your bot is now online and ready to respond on Telegram.
7. Add Your First Command¶
- Open the Commands section
- Add a command such as
/start - Save the command
Test it by sending /start to your bot on Telegram.
What's Next¶
- Tutorials — hands-on lessons from
/startto wildcards - Your First Bot — step-by-step TBL tutorial
- What is TBL? — how the language works
- Global Variables — built-in context in every command (
user,chat,update, …) - Official tutorial with screenshots