free telegram bot broadcast Here’s a professional, clear, and user-friendly README template for your Telegram Bot Broadcast platform, tailored to your website and API documentation.
Easily manage and broadcast messages to your Telegram bot subscribers without coding.
https://broadcast.findolucky.site
- Broadcast messages to all users of your Telegram bot
- No coding required – simple web interface
- Register multiple bots and manage them from one dashboard
- Export subscriber user IDs
- API access for advanced integrations
- Create a Telegram bot using @BotFather on Telegram ([How to create a bot?][5]).
- Copy your bot’s token from BotFather.
- Go to broadcast.findolucky.site.
- Sign up or log in.
- Register your bot by pasting your Telegram bot token.
- After registering your bot, click “Setup Webhook” in your bot’s dashboard.
- This connects your bot to the platform for message broadcasting.
- Use the web dashboard to send messages to all your bot subscribers.
- You can also export user IDs of your subscribers.
- Full API documentation is available at
https://broadcast.findolucky.site/api_doc.php?bot_id=YOUR_BOT_ID
Replace YOUR_BOT_ID
with your actual bot ID.
from telegram import Update
from telegram.ext import ApplicationBuilder, CommandHandler, ContextTypes
API_URL = "https://broadcast.findolucky.site/api.php"
BOT_TOKEN = "YOUR_BOT_TOKEN" # The token you registered on your site
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
user = update.effective_user
params = {
"token": BOT_TOKEN,
"user": user.id,
"first_name": user.first_name or "",
"last_name": user.last_name or "",
"username": user.username or ""
}
# Send the data to your API
try:
response = requests.get(API_URL, params=params, timeout=5)
print("API response:", response.text)
except Exception as e:
print("Error calling API:", e)
await update.message.reply_text("Welcome! You have been registered.")
if __name__ == "__main__":
app = ApplicationBuilder().token("YOUR_TELEGRAM_BOT_TOKEN").build()
app.add_handler(CommandHandler("start", start))
app.run_polling()
See the API documentation for all available endpoints and parameters.
Q: Do I need to host my own server?
A: No, everything runs on broadcast.findolucky.site.
Q: Is my bot token safe?
A: Your bot token is stored securely and used only to send messages you authorize.
Q: Can I export my subscribers?
A: Yes, you can export user IDs in CSV, JSON, or TXT format directly from your dashboard.
Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.
This project is licensed under the MIT License.
For support or questions, contact telegram group support. For support or questions, contact admin direct support.