en
Feedback
CyberTron Bots

CyberTron Bots

Open in Telegram

OUR APIS: @CyberTronAPIs SUPPORT: @RealOptimusPrimeBot

Show more
The country is not specifiedTechnologies & Applications47 059
322
Subscribers
No data24 hours
+97 days
+2430 days
Posts Archive
Telegram Star Payment Accept & Refund BJS
Command: /purchase
Api.sendInvoice({
  chat_id: chat.chatid, //chat id to send invoice at
  title: "Product",
  //add a product name
  description: "This is a Digital Product",
  //add a description of your product here
  payload: `Order${user.telegramid}`,
  //add a payload, which you want after successful of payment. for example order id...
  currency: "XTR", //for telegram stars
  provider_token: "", //empty string for telegram stars
  //protect_content: true,
  //uncomment if you don't want forwarding post
  start_parameter: "star",
  //if the invoice messgae is forwarded, in place of Pay button it will show a deep link to your bot with this parameter
  prices: [
    {
      label: "test", //add a label
      amount: 1 //Amount of Telegram Stars
    }
  ],
  reply_markup: {
    inline_keyboard: [[{ text: "Buy for ⭐️ 1", pay: true }]]
    //the first star emoji in text of pay button of keyboard will be converted to Telegram star icon
  }
})
Command: *
(Master Command)
if(!request) return;

if(typeof request == ‘string’){
  try {
    request = JSON.parse(request)
  } catch (e) { return; }
}

if (request.pre_checkout_query) {
  //check for pre checkout query update and answer it to let the user complete payment

  Api.answerPreCheckoutQuery({
    pre_checkout_query_id: request.pre_checkout_query.id,
    ok: true //false if need to cancel payment when uses confirms to pay
    //error: 'error message in human readable form'
    //^ required if ok is set to false
  })

  //Here is inspected request.pre_checkout_query for other details:
  //{
  //  "id": "32802642947578352877",
  //  "from": {
  //    "id": 5058713343,
  //    "is_bot": false,
  //    "first_name": "Mr Devendra 🇮🇳",
  //    "username": "devendra",
  //    "language_code": "en",
  //    "is_premium": true
  //  },
  //  "currency": "XTR",
  //  "total_amount": 1,
  //  "invoice_payload": "Order582758386" //payload provided by you
  //}

  //Note: here update is received with pre_checkout_query field


} else if (request.successful_payment) {
  //check for a received payment and respond accordingly 

  Bot.sendMessage(
    `Payment of ⭐️${request.successful_payment.total_amount} is successful`
  )

  //Here is inspected request.successful_payment for other details:
  //{
  //  "currency": "XTR",
  //  "total_amount": 1,
  //  "invoice_payload": "Order58375828", //payload which you provided
  //  "shipping_option_id": null,
  //  "order_info": null,
  //  "telegram_payment_charge_id": "charge id",
  //  "provider_payment_charge_id": "5058713343_12"
  //}

  //Note: here update is received with message field, so you can can user,chat details with request.from/request.chat etc...
  //refer to message field at https://core.telegram.org/bots/api#message
}
Command: /refund
var chargeId = "charge ID"//telegram payment charge id, to send a refund
//this is provide through successful_payment parameter of message update

var userId = "user telegram id" //telegram id of user who made the star payment

API.call(‘refundStarPayment’,{
  user_id: userId,
  telegram_payment_charge_id: chargeId
})
API.sendMessage({
  user_id: userId,
  text:’We are refunding your Star Payment’
})
🧑‍💻Coded by @devendra © Copyright @BjsCodes

🤖 Update on the Views/Reactions Telegram Bot 🤖 I've been receiving messages from users requesting the code for the Views/Re
🤖 Update on the Views/Reactions Telegram Bot 🤖 I've been receiving messages from users requesting the code for the Views/Reactions Telegram bot. While the bot codes are still operational, the API it used is no longer functional. Due to the high volume of daily messages, I have decided to redeploy a new bot with the same code and functionality. This will allow users to clone the bot and address any errors on their own. If you come across a similar API that can be used, please share it with me so that I can update others accordingly. 💡 To Claim: Watch this tutorial (different bots, same steps): https://youtu.be/7RWuJ8d7n60?si=WhRxpGcpaYhd3sfa 🤖 Bot Link: @InfinityViewsRobot For further clarification, holla me at @RealOptimusPrimeBot or @Real_OptimusPrime ©️ @InfinityTechHub @InfinityTechBots

Repost from INFINITY COURSES
🌟 Explore InfinityTechCoursesBot - Your Ultimate Learning Companion! 🌟 🚀 Introduction Tutorial: If you're feeling stuck while using InfinityTechCoursesBot, we've got you covered! Check out our comprehensive introductory tutorial to enhance your bot experience. 📹 Watch Tutorial: Click here to watch the tutorial now and unlock the full potential of InfinityTechCoursesBot. ❓ Have Questions or Need Assistance?: Simply message me at @RealOptimusPrimeBot for any queries or support related to the InfinityTechCoursesBot.

🚀 Welcome to Infinity Tech Courses Bot! 🚀 Are you ready to elevate your skills and knowledge in the tech world? Look no further! Introducing @InfinityTechCoursesBot, your go-to destination for accessing and downloading a wide range of FREE tech courses. 📚 Explore and Learn: Dive into our collection of high-quality courses covering programming languages, web development, data science, cybersecurity, and much more. 🔗 Download for Offline Learning: Download your favourite courses to study on-the-go, even when offline. ⤵️ Stay Updated: Stay tuned for regular updates and new course additions to keep your learning journey dynamic and exciting. ⚡️ How to Get Started: Simply start a chat with @InfinityTechCoursesBot to discover a world of free educational opportunities waiting for you.
/start - To test if the bot is alive
/search - To search through all the available courses 
/listcourses - To list all the courses available on the bot's database
📦 Note: For the best experience, ensure you have the latest Telegram version installed. Get ready to unlock new possibilities and level up your tech skills with Infinity Tech Courses Bot! 🚀 ✅Start Exploring Now: @InfinityTechCoursesBot

I will release the bot tomorrow after I have addressed some issues and added more courses🍷

New bot coming today🥳🥳
New bot coming today🥳🥳

Repost from BotNews
Bot API 7.11 Bots can now participate in revenue sharing from Telegram Ads ⭐️ – unlocking a new way to help support their development. Introduced Paid Broadcasts ⭐️ – allowing bots to broadcast up to 1000 messages per second. Bots can now send and receive chat-specific hashtags that only show posts and stories from a specific chat when tapped. Added a new inline button to let users copy text in one tap. Bots can now add media to existing text messages. And more, see the full changelog for details: https://core.telegram.org/bots/api-changelog#october-31-2024 ⚠️ Warning: Starting December 1, 2024 messages with video posted in big communities can be delayed by the server until the respective video is reencoded. Read more here.

📝LIST OF ACTIVE BOTS🤖 🧳@OptimusStoreRobot - Permanent single file storage bot. 📱@InfinityVirtualNumbersBot -Virtual numbers provider bot ⛓@linkpal_robot - A bot for shortening url(ads free) 🥳@OptimusGiveAwaysBot - A bot for conducting giveaways on Telegram Channels 📤@TeleUploaderRoBot - A simple bot for Image hosting. 🌐@StringSessionMasterBot - Telethon & Pyrogram string session generator bot For any support, bot suggestion, or any other business, feel free to contact me here: @RealOptimusPrimeBot.

📸 How to Join a Giveaway 🎉 Follow the steps shown in the image to enter! The giveaway code and the range within which your
📸 How to Join a Giveaway 🎉 Follow the steps shown in the image to enter! The giveaway code and the range within which your lucky number must fall are listed in the post above. 🎯 Note: You can only participate in one giveaway at a time. Joining a new giveaway will automatically remove you from any previous one. For Admins: To host a giveaway in your channel, add the bot with permissions to send, delete, and edit messages. 🔧

🎉 Introducing Optimus Giveaways Bot! 🎉 Are you ready to bring more excitement to your Telegram community? 🤖✨ With Optimus Giveaways Bot, admins can easily set up their own giveaways, and users can join exclusive giveaways with a join code! 💸 🛠 Features for Admins: Create Giveaways Instantly 🛠 – Set up customized giveaways directly in your Telegram group! Flexible Settings 🔧 – Choose the number of winners, entry range, and more. Automated Winner Selection 🏆 – Let the bot handle winner selection and notifications! 👥 Features for Regular Users: Join Giveaways with a Code 🔑 – Enter any active giveaway if you have a valid join code. Get Notified if You Win 🎉 – Winners are notified directly with a special message from the bot. Easy & Fair 💯 – Every user has a fair chance, and the process is simple! 🎯 How It Works: 1. Admins can start their own giveaways with custom settings. 2. Users can join any active giveaway by entering a valid join code. 3.Winners are selected automatically, and everyone is kept in the loop! 📢 Start using Optimus Giveaways Bot today and make your group more interactive and fun! 🏆 How to join a giveaway: https://t.me/InfinityTechHub/1041 Bot Username: @OptimusGiveAwaysBot Bot By: @InfinityTechBots @InfinityTechHub Support: @RealOptimusPrimeBot

New Bot coming soon 🔥
New Bot coming soon 🔥

🚀 Exciting News! Introducing @linkpal_robot - Your Ultimate Link Shortening Companion! 🌐 🔗 LinkPal Bot leverages the LinkPal API service to shorten links effortlessly. It's FREE and SECURE! 🐹 ✂️ To shorten links, simply forward a link to the bot and get the shortened link instantly! 👍 🔗 Start shortening your links with ease and safety. Start @linkpal_robot today! 🌟🔗

To Prevent This bot from crashing due to multi instances , We have decided to remove the tempmail part and make it a different bot where we will give its public source code on github.

VIDEOS DOWNLOADER BOT CODE IN PYTHON ENSURE THAT THE VIDEO URL ENDS IN .mp4 Eg: https://www.example.com/videos/your-video.mp4 BOT CODE:
import telebot
import requests
from time import sleep
from clint.textui import progress

API_TOKEN = 'YOUR_TELEGRAM_BOT_API_TOKEN'

bot = telebot.TeleBot(API_TOKEN)
#Code By @RealOptimusPrimeBot
@bot.message_handler(commands=['start'])
def send_welcome(message):
    bot.reply_to(message, "Hi there! Send me a video URL and I will download it for you.")
#code by @RealOptimusPrimeBot
@bot.message_handler(func=lambda message: True)
def download_video(message):
    url = message.text
    bot.reply_to(message, "Starting download...")

    status_msg = bot.send_message(message.chat.id, "Downloading... 0%")

    try:
        response = requests.get(url, stream=True)
        total_length = int(response.headers.get('content-length'))

        if response.status_code == 200:
            with open('downloaded_video.mp4', 'wb') as f:
                downloaded_length = 0
                for chunk in progress.bar(response.iter_content(chunk_size=1024), expected_size=(total_length / 1024) + 1):
                    if chunk:
                        f.write(chunk)
                        f.flush()
                        downloaded_length += len(chunk)
                        percentage = int((downloaded_length / total_length) * 100)
                        bot.edit_message_text(chat_id=message.chat.id, message_id=status_msg.message_id, text=f"Downloading... {percentage}%")
            
            bot.reply_to(message, "Download completed! Sending the video file...")
            video = open('downloaded_video.mp4', 'rb')
            bot.send_video(message.chat.id, video)
            video.close()
        else:
            bot.reply_to(message, "Failed to retrieve the video. Please ensure the URL is correct.")
    
    except requests.RequestException as e:
        bot.reply_to(message, f"An error occurred: {e}")

if __name__ == "__main__":
    bot.polling()
REPLACE "YOUR BOT TOKEN " WITH THE ACTUAL TOKEN FROM BOT FATHER CREDIT: Code By: @RealOptimusPrimeBot Channel: @InfinityTechHub @InfinityTechBots

Script for Auto Wallpapers bot. This is a bot that posts 10 random wallpapers to a channel after 1 hour. Check out this channel for demo: https://t.me/TrendingWallpapersHub
import requests
import random
import time
import telebot
from telebot.types import InputMediaPhoto, InlineKeyboardMarkup, InlineKeyboardButton

# Initialize the Telegram bot
bot = telebot.TeleBot("7161470475:YOUR_BOT_TOKEN")  # Replace with your actual API token

@bot.message_handler(commands=['start', 'help'])
def start_message(message):
    keyboard = InlineKeyboardMarkup()
    channel_butt = InlineKeyboardButton("VIEW WALLPAPERS", "https://t.me/TrendingWallpapersHub")
    folder_butt = InlineKeyboardButton("JOIN TECH CHANNELS", 'https://t.me/addlist/xo78H3epn8YyMTNk')
    keyboard.add(channel_butt)
    keyboard.add(folder_butt)

    photo_url = "https://te.legra.ph/file/12018b3df63319341bbce.jpg"
    fname = message.from_user.first_name
    start_caption = f"""
Hello {fname},
Thanks for starting me.
Am a telegram bot created to automate a channel where I post random wallpapers after an interval of 15 minutes. 
To join the channel, Please do so by clicking of the button Bellow.
You can Also join our other cool channels
"""
    bot.send_photo(message.chat.id, photo_url, start_caption, reply_markup=keyboard)
@bot.message_handler(commands=['post'])
def autosend_images(message):
    try:
        url = f"https://infinitywallpapersapi.vercel.app/YOUR_INFINITY_KEY/get?category=random-wallpapers/"
        response = requests.get(url)
        data = response.json()
        media_group = []

        for i in range(10):
            image_url = data[i]['image_url']
            media_group.append(InputMediaPhoto(media=image_url))
        bot.send_media_group(chat_id=CHANNELID, media=media_group)
        bot.send_message(chat_id=message.chat.id, text=f"WALLPAPERS POSTED SUCCESIFULLY")

    except Exception as e:
        bot.send_message(chat_id=message.chat.id, text=f"ERROR: {str(e)}")

    while True:
        time.sleep(60 * 60)
        autosend_images(message)

# Start the bot polling
bot.infinity_polling()
Things to Do.: Replace YOUR_BOT_TOKEN With the actual api key from botfather. Replace YOUR_INFINITY_KEY with your key from @InfinityAPIkeysBot Replace CHANNELID with the actual channel id in the format of -1001234567890 You can now run your bot by typing this on the cmd/terminal: python3 your-file-name.py You can Also host this code on seenode for free Share code with credits: @InfinityTechBots @InfinityTechHub Api and Code by @RealOptimusPrimeBot

Our very first bot😭 VIRTUAL NUMBERS BOT😢 Features: Provides free Virtual numbers Access to the virtual numbers Provides temporary Emails,(1 hour validity) Automatic email notification for a new email. BOTS USERNAME: @InfinityVirtualNumbersBot For Assistance: @RealOptimusPrimeBot