How to Get Telegram Bot Token

Complete guide to create and manage Telegram bots for your trading platform

📝 What is a Telegram Bot Token?

A Telegram Bot Token is a unique identifier that allows your application to communicate with the Telegram Bot API. This token is required to send messages, receive updates, and manage your bot's functionality.

🔐 Security Note

Keep your bot token secure and never share it publicly. Anyone with access to your token can control your bot.

🤖 Method 1: Create a New Bot

Follow these steps to create a new Telegram bot and get its token:

  1. 1
    Open Telegram

    Open Telegram on your smartphone or desktop application.

  2. 2
    Find BotFather

    Search for the contact @BotFather. This is Telegram's official bot for creating and managing bots.

  3. 3
    Start Conversation

    Click on BotFather to start a conversation and send the command:

    /newbot
  4. 4
    Follow the Instructions

    BotFather will ask you for:

    • Bot Name: The display name of your bot (e.g., "My Buy Bot")
    • Bot Username: A unique username ending with "bot" (e.g., "mybuybot")
  5. 5
    Copy the Token

    Once created, BotFather will send you the bot token. It looks like this:

    123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11

    Copy this token and keep it safe!

🔍 Method 2: Get Token from Existing Bot

If you already have a bot and need to retrieve its token:

  1. 1
    Contact BotFather

    Start a conversation with @BotFather in Telegram.

  2. 2
    List Your Bots

    Send the command:

    /mybots
  3. 3
    Select Your Bot

    BotFather will show you a list of your bots. Click on the bot you want to manage.

  4. 4
    Get API Token

    Click on "API Token" to reveal and copy your bot's token.

⚙️ Additional BotFather Commands

Here are some useful BotFather commands for managing your bots:

/setname - Change bot name
/setdescription - Set bot description
/setuserpic - Set bot profile picture
/deletebot - Delete a bot
/cancel - Cancel current operation
← Back to Bot Creation Form