For the complete documentation index, see llms.txt. This page is also available as Markdown.

Glossary & Key Concepts

Telebot Creator Documentation — Platform v7.1.2 · Telegram Bot API 10.1

Last updated: June 2026 | Maintained by Telebot Creator Team

Quick reference for key terms and concepts used in Telebot Creator.


11.2 Key Terms

1. Bot API Token

  • Definition: A unique token provided by Telegram for authenticating and managing a bot. This token is required to link your bot with Telebot Creator.

  • Where to Get It: Use @BotFather on Telegram to create a new bot and retrieve its token.


2. TPY (Telebot Python)

  • Definition: A customized version of Python designed specifically for Telebot Creator. TPY simplifies bot development by offering built-in libraries, pre-defined variables, and a restricted, secure environment.

  • Example:

    bot.sendMessage("Welcome to my bot!")

3. Commands

  • Definition: Triggers in a bot that execute specific logic when a user sends a corresponding message. Commands typically start with a / (e.g., /start, /help).

  • Example:

    def start_command():
        bot.sendMessage("Hello! This is the start command.")

4. Points

  • Definition: The internal currency of Telebot Creator used to execute bot operations. Each command execution costs 1 point.

  • Monthly Allocation: Users receive 100,000 points per month for free.

  • Usage:


5. Broadcast

  • Definition: A feature that sends messages or executes commands across multiple users simultaneously.

  • Example:


6. Webhook

  • Definition: A URL that allows bots to receive real-time updates from external systems or trigger commands dynamically.

  • Example:


7. Transfer

  • Definition: The process of transferring ownership of a bot from one Telebot Creator account to another.

  • Example:


11.3 Libraries and Integrations

1. libs.CSV

  • Definition: A library for managing CSV files. Useful for storing and retrieving structured data like leaderboards or survey responses.

  • Example:


2. libs.Coinbase

  • Definition: A library for handling cryptocurrency payments using Coinbase.

  • Example:


3. libs.Webhook

  • Definition: A library for generating and managing webhook URLs.

  • Example:


4. libs.web3lib (EVM Blockchain)

  • Definition: A library for sending ETH/tokens on any EVM-compatible blockchain (Ethereum, Polygon, Arbitrum, BSC, etc.). Replaces deprecated libs.Polygon, libs.ARB, libs.TTcoin, and libs.Tomochain.

  • Example:


11.4 Advanced Concepts

1. Multi-Step Workflows

  • Definition: A sequence of commands executed step-by-step based on user input.

  • Example:


2. Callback URLs

  • Definition: URLs used in broadcasts and webhooks to receive execution feedback or trigger additional processes.

  • Example:


3. Sandbox Environment

  • Definition: A secure environment where bot commands are executed to prevent unauthorized actions or access.


4. Global Broadcast Limits

  • Definition: A system-wide limit of 5000 simultaneous broadcasts across all bots to ensure server stability, plus a per-user limit of 3 concurrent broadcasts.


11.5 Usage Examples

Broadcast Syntax

Webhook Generation

Dynamic Data Fetching


5. Account Class

  • Definition: A globally available class (since v4.8.0) for managing account-level operations across all bots — list bots, save/get shared data, get stats, and transfer data between bots.

  • Example:


6. libs.openai_lib / libs.gemini_lib

  • Definition: Built-in AI libraries for integrating OpenAI (GPT-4o, Assistants API) and Google Gemini models into your bots.

  • Example:

Last updated