4 years ago, I shared WordleBee. Today, I’m launching V2—Better UI/UX, Cloud-Hosted, and Unlimited play in group.
Hey everyone!About four years ago, I posted here about WordleBee, a telegram bot I built for people who couldn’t get enough of Wordle and wanted to play with friends. Since then, the community has grown way beyond what I expected, and V1 saw a massive amount of active players.Because so many of you were playing, the old infrastructure was starting to sweat. I’ve spent the last few weeks rebuilding the backend for V2.What’s new in V2?Cloud Infrastructure: No more downtime. The bot is now hosted on a scalable cloud setup to ensure it stays online even during peak hours.Improved Performance: Faster response times and better handling of concurrent games.Everything you loved about V1: Unlimited games in DM and Group (/play), challenges friends (/challenge), and the global leaderboard.Daily & Social: The main daily word is still there, and you can still share your tiles without spoilers.I want to thank everyone who played the original version. Your feedback is what pushed me to upgrade the infrastructure and keep this project alive.
Submitted March 7, 2026 at 05:51PM by suichora
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rnetum/4_years_ago_i_shared_wordlebee_today_im_launching/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hey everyone!About four years ago, I posted here about WordleBee, a telegram bot I built for people who couldn’t get enough of Wordle and wanted to play with friends. Since then, the community has grown way beyond what I expected, and V1 saw a massive amount of active players.Because so many of you were playing, the old infrastructure was starting to sweat. I’ve spent the last few weeks rebuilding the backend for V2.What’s new in V2?Cloud Infrastructure: No more downtime. The bot is now hosted on a scalable cloud setup to ensure it stays online even during peak hours.Improved Performance: Faster response times and better handling of concurrent games.Everything you loved about V1: Unlimited games in DM and Group (/play), challenges friends (/challenge), and the global leaderboard.Daily & Social: The main daily word is still there, and you can still share your tiles without spoilers.I want to thank everyone who played the original version. Your feedback is what pushed me to upgrade the infrastructure and keep this project alive.
Submitted March 7, 2026 at 05:51PM by suichora
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rnetum/4_years_ago_i_shared_wordlebee_today_im_launching/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Tv shows
Does anyone have a good Telegram bot for searching and downloading TV series?I’m looking for something specifically for shows/series, not just movies.
Submitted March 8, 2026 at 01:44PM by Bright_Advertising65
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1ro3zii/tv_shows/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Does anyone have a good Telegram bot for searching and downloading TV series?I’m looking for something specifically for shows/series, not just movies.
Submitted March 8, 2026 at 01:44PM by Bright_Advertising65
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1ro3zii/tv_shows/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Taming AI coding agents to build Google Apps Script bots (without breaking webhooks)
Hey everyone,I know Python and Node.js are the standard go-to stacks in this sub, but my personal secret weapon for quick, serverless Telegram bots has always been Google Apps Script (GAS).https://preview.redd.it/nsp33j92ntng1.png?width=1408&format=png&auto=webp&s=43244ff886e87f3dba284e1f44c5dcf4ec681f3aWhy GAS for Telegram bots? If you normally build bots on a VPS or deal with serverless deployments, GAS is a massive cheat code for small-to-medium projects:Free HTTPS Webhooks: Telegram requires a secure HTTPS URL for webhooks. GAS gives you an active endpoint out of the box, completely bypassing the need to mess with SSL certs, ngrok, or reverse proxies.Zero Infrastructure: No servers to spin up, no Docker containers to manage, and no hosting fees. It just runs.Instant "Databases": You can natively hook into Google Sheets as a pseudo-database for user tracking, state management, or content logging with just a few lines of code.The Problem with AI and GAS Recently, I’ve been using AI coding agents (Claude Code, Gemini CLI, Cline) to speed up my scaffolding. But I noticed a really frustrating pattern: AI almost always messes up the Telegram-to-GAS integration.Usually, it makes two fatal mistakes:The doPost Trap: It returns explicit ContentService text outputs. Telegram’s API just wants an empty HTTP 200 OK back. Returning text silently breaks the webhook expectations.Deployment Bloat: It blindly runs clasp deploy over and over, creating a messy graveyard of new webhook URLs instead of updating the existing one.I got tired of writing massive prompts to fix this every time, so I built an open-source "Agent Skill" to permanently fix how AI handles Telegram bots.Teaching the AI how to do it right If you aren't familiar, Vercel recently launched an npm-style registry for AI agents called skills.sh. You can feed your CLI agent a specific "Skill" to teach it exact procedural knowledge.I built a Skill specifically for Telegram GAS bots that teaches the AI to:Properly inject a router library (I use my own open-source GAS library, telegas) into the appsscript.json manifest.Avoid the doPost text-output trap.Surgically update code using clasp deploy -i <DEPLOYMENT_ID> so the webhook URL never changes.The coolest part: I added instructions for the agent to use the Playwright MCP. Once the bot is deployed, the AI autonomously spins up a local browser, opens Telegram Web, and sends a /start message to visually verify the webhook is actually working!It’s completely changed my workflow. You just hand the agent your Bot Token and username, and it scaffolds, deploys, and tests the bot entirely on its own.Links & Resources: I wrote a full breakdown on my Substack about how the architecture works and how you can build your own custom AI skills for your specific bot stacks.The write-up: https://nicolamalizia.substack.com/p/how-i-taught-an-ai-agent-to-build-a-telegram-botThe Skill repo: https://github.com/nicolamalizia/telegram-google-app-script-claspTelegas routing library: https://github.com/nicolamalizia/telegasHopefully, this saves some of you from fighting with ChatGPT/Claude over webhook URLs! Let me know if you have any questions about setting up AI agents with clasp or Playwright.
Submitted March 8, 2026 at 02:15PM by codesharer
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1ro4mee/taming_ai_coding_agents_to_build_google_apps/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Hey everyone,I know Python and Node.js are the standard go-to stacks in this sub, but my personal secret weapon for quick, serverless Telegram bots has always been Google Apps Script (GAS).https://preview.redd.it/nsp33j92ntng1.png?width=1408&format=png&auto=webp&s=43244ff886e87f3dba284e1f44c5dcf4ec681f3aWhy GAS for Telegram bots? If you normally build bots on a VPS or deal with serverless deployments, GAS is a massive cheat code for small-to-medium projects:Free HTTPS Webhooks: Telegram requires a secure HTTPS URL for webhooks. GAS gives you an active endpoint out of the box, completely bypassing the need to mess with SSL certs, ngrok, or reverse proxies.Zero Infrastructure: No servers to spin up, no Docker containers to manage, and no hosting fees. It just runs.Instant "Databases": You can natively hook into Google Sheets as a pseudo-database for user tracking, state management, or content logging with just a few lines of code.The Problem with AI and GAS Recently, I’ve been using AI coding agents (Claude Code, Gemini CLI, Cline) to speed up my scaffolding. But I noticed a really frustrating pattern: AI almost always messes up the Telegram-to-GAS integration.Usually, it makes two fatal mistakes:The doPost Trap: It returns explicit ContentService text outputs. Telegram’s API just wants an empty HTTP 200 OK back. Returning text silently breaks the webhook expectations.Deployment Bloat: It blindly runs clasp deploy over and over, creating a messy graveyard of new webhook URLs instead of updating the existing one.I got tired of writing massive prompts to fix this every time, so I built an open-source "Agent Skill" to permanently fix how AI handles Telegram bots.Teaching the AI how to do it right If you aren't familiar, Vercel recently launched an npm-style registry for AI agents called skills.sh. You can feed your CLI agent a specific "Skill" to teach it exact procedural knowledge.I built a Skill specifically for Telegram GAS bots that teaches the AI to:Properly inject a router library (I use my own open-source GAS library, telegas) into the appsscript.json manifest.Avoid the doPost text-output trap.Surgically update code using clasp deploy -i <DEPLOYMENT_ID> so the webhook URL never changes.The coolest part: I added instructions for the agent to use the Playwright MCP. Once the bot is deployed, the AI autonomously spins up a local browser, opens Telegram Web, and sends a /start message to visually verify the webhook is actually working!It’s completely changed my workflow. You just hand the agent your Bot Token and username, and it scaffolds, deploys, and tests the bot entirely on its own.Links & Resources: I wrote a full breakdown on my Substack about how the architecture works and how you can build your own custom AI skills for your specific bot stacks.The write-up: https://nicolamalizia.substack.com/p/how-i-taught-an-ai-agent-to-build-a-telegram-botThe Skill repo: https://github.com/nicolamalizia/telegram-google-app-script-claspTelegas routing library: https://github.com/nicolamalizia/telegasHopefully, this saves some of you from fighting with ChatGPT/Claude over webhook URLs! Let me know if you have any questions about setting up AI agents with clasp or Playwright.
Submitted March 8, 2026 at 02:15PM by codesharer
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1ro4mee/taming_ai_coding_agents_to_build_google_apps/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Translator Bot [opensource]
https://i.redd.it/giuzo7ludvng1.png
Submitted March 8, 2026 at 08:11PM by 5r33n
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rodh4w/translator_bot_opensource/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://i.redd.it/giuzo7ludvng1.png
Submitted March 8, 2026 at 08:11PM by 5r33n
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rodh4w/translator_bot_opensource/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram bot for lonely people to chat with strangers and ai character
Im still building it and need genuine suggestion i haven't built anything before and this is just like project I'm doing for fun ,any suggestions will be helpful thanks @SoulbondAI_bot
Submitted March 8, 2026 at 10:37PM by Short_Locksmith_9866
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1roh9ch/telegram_bot_for_lonely_people_to_chat_with/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Im still building it and need genuine suggestion i haven't built anything before and this is just like project I'm doing for fun ,any suggestions will be helpful thanks @SoulbondAI_bot
Submitted March 8, 2026 at 10:37PM by Short_Locksmith_9866
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1roh9ch/telegram_bot_for_lonely_people_to_chat_with/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I made a Telegram bot that dowloads infinetly large spotify playlists in 320kbps , for free :>
https://v.redd.it/lo2sw9iqa4og1
Submitted March 10, 2026 at 02:05AM by Automatic_Hunt_5200
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rpiusz/i_made_a_telegram_bot_that_dowloads_infinetly/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/lo2sw9iqa4og1
Submitted March 10, 2026 at 02:05AM by Automatic_Hunt_5200
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rpiusz/i_made_a_telegram_bot_that_dowloads_infinetly/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram chats move fast. $RECAP makes them readable again
https://i.redd.it/y205j0x5o4og1.jpeg
Submitted March 10, 2026 at 03:21AM by FarIce8979
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rpklsa/telegram_chats_move_fast_recap_makes_them/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://i.redd.it/y205j0x5o4og1.jpeg
Submitted March 10, 2026 at 03:21AM by FarIce8979
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rpklsa/telegram_chats_move_fast_recap_makes_them/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Want to start using bot, but afraid to. How to make sure a bot is safe?
I've been using Telegram for 10-ish years, but never used any bot. I'm paranoid about malware, account stealing and whatnot, I'm tech-illiterate.I REALLY want to use bots, I heard there are so many, they sound so fun and tempting, but I'm afraid :(I tried googling 'are telegram bots safe' and it's just the usual 'don't use suspicious ones'.How can I even figure out if a bot is sketchy or not? Some of them show the monthly users, but many don't, it's impossible to assess how trustworthy a bot is.And what if an author of a bot decides to sell it to some shady person at any moment?I saw a tip like 'don't write personal information to a bot', but how am I supposed to use reminders bots, personal budget bots, bots that transcribe audio messages into text, or anything else for that matter?I'm really afraid to get my account stolen or something, it has my entire life there (notes). My phone doesn't support dual SIM to make a second account.If it matters, I use telegram mostly on desktop app, but also on mobile ofc.Can anybody sorta confirm if any of these bots are reputable? These bots interest me, I found them in random discussions on the internet. Or maybe you would suggest better alternatives. Anything infamous here?:s_channel_bot (Noctua or Smart Channel) - reads the posts from the channels you're subscribed to and sends you the best posts;@butlerassistantbot - another reminder;@whereismymoneybot - keeping track of your expenses (manually, no bank linking ofc);magic saver bot - save anything;cheaper_purchases_bot - price tracking;RMB (remind mega bot);MotherSearchBot - telegram-wide search;@word_grinder_bot - learn vocab;@MyNewsReportBot - news aggregator;Also I'd like some calorie tracking bot
Submitted March 10, 2026 at 09:34AM by MidavTe
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rprfn5/want_to_start_using_bot_but_afraid_to_how_to_make/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I've been using Telegram for 10-ish years, but never used any bot. I'm paranoid about malware, account stealing and whatnot, I'm tech-illiterate.I REALLY want to use bots, I heard there are so many, they sound so fun and tempting, but I'm afraid :(I tried googling 'are telegram bots safe' and it's just the usual 'don't use suspicious ones'.How can I even figure out if a bot is sketchy or not? Some of them show the monthly users, but many don't, it's impossible to assess how trustworthy a bot is.And what if an author of a bot decides to sell it to some shady person at any moment?I saw a tip like 'don't write personal information to a bot', but how am I supposed to use reminders bots, personal budget bots, bots that transcribe audio messages into text, or anything else for that matter?I'm really afraid to get my account stolen or something, it has my entire life there (notes). My phone doesn't support dual SIM to make a second account.If it matters, I use telegram mostly on desktop app, but also on mobile ofc.Can anybody sorta confirm if any of these bots are reputable? These bots interest me, I found them in random discussions on the internet. Or maybe you would suggest better alternatives. Anything infamous here?:s_channel_bot (Noctua or Smart Channel) - reads the posts from the channels you're subscribed to and sends you the best posts;@butlerassistantbot - another reminder;@whereismymoneybot - keeping track of your expenses (manually, no bank linking ofc);magic saver bot - save anything;cheaper_purchases_bot - price tracking;RMB (remind mega bot);MotherSearchBot - telegram-wide search;@word_grinder_bot - learn vocab;@MyNewsReportBot - news aggregator;Also I'd like some calorie tracking bot
Submitted March 10, 2026 at 09:34AM by MidavTe
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rprfn5/want_to_start_using_bot_but_afraid_to_how_to_make/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Boss Raids, Heroes and Skins in DENeon ⚔️
https://i.redd.it/tnew1xos07og1.png
Submitted March 10, 2026 at 11:15AM by Sensitive_Flounder73
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rpt1yw/boss_raids_heroes_and_skins_in_deneon/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://i.redd.it/tnew1xos07og1.png
Submitted March 10, 2026 at 11:15AM by Sensitive_Flounder73
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rpt1yw/boss_raids_heroes_and_skins_in_deneon/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Someone sent me my MOST TYPED words on telegram !
/r/Telegram/comments/1rq3hyz/someone_sent_me_my_most_typed_words_on_telegram/
Submitted March 10, 2026 at 06:40PM by eveno7o
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rq3npb/someone_sent_me_my_most_typed_words_on_telegram/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
/r/Telegram/comments/1rq3hyz/someone_sent_me_my_most_typed_words_on_telegram/
Submitted March 10, 2026 at 06:40PM by eveno7o
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rq3npb/someone_sent_me_my_most_typed_words_on_telegram/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Ai topless bot
https://toplessbot.com/ref/469DT3EG
Submitted March 11, 2026 at 06:42AM by Fine_Judgment5821
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rqlffi/ai_topless_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://toplessbot.com/ref/469DT3EG
Submitted March 11, 2026 at 06:42AM by Fine_Judgment5821
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rqlffi/ai_topless_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram Music Bot
This bot is my attempt to create the most comfortable environment for listening to and finding music within Telegram. Here are the main features I personally wanted and knew I had to include:Playlists: The number one reason I decided to build it. Thanks to my own bot, I can now send an entire playlist to a friend so they can listen to the songs right away. This is especially relevant in my country, since a huge number of iconic and current songs are blocked for us :(Downloading tracks: Not the most critical feature, but, in my opinion, a must-have for this type of bot. Right now, it searches for tracks via YouTube. In the future, I’m thinking about adding other sources, as well as curating my own collections for future use.Mini-app Player: I’d rank this as the second most important feature. It was exactly what I was missing: a way to display tracks in a familiar, standard player interface.Music Recognition: A handy tool for those moments when you hear a song and just have to know what it is. You can send a voice message to the bot, and it'll identify the track for you and add it directly to your collection.https://preview.redd.it/9uhjlmtcqeog1.png?width=864&format=png&auto=webp&s=0d4385fa50748b3dcacbab152af32e0ee3698908https://preview.redd.it/8artzrrpqeog1.png?width=833&format=png&auto=webp&s=2af590b876cc197fd2e19be296d968648b323232So, this bot has become the most convenient way for me to store, search for, and listen to music in Telegram. Yeah, it’s not going to replace streaming services just yet, but personally, I’m trying to push the platform to its limits to make it as comfortable as possible. My goal is to get to a point where I can confidently cancel my music subscriptions.What I’m planning to add next:Radio: An auto-generated music selection (like many are familiar with).Public/Shared Playlists: A feature to help people discover other users' tracks (and share their own music).Expanding & Improving: Adding more music sources, migrating to a more powerful VPS, optimizing how uploaded songs are stored, and much more.The project is, of course, completely free. But, if you actually find the bot useful, you can support it with a dollar via DonationAlerts :) Covering the server costs is a huge motivator to keep developing this further 😁P.S.
Have a great day, everyone, and remember: the best music is your own personal collection, gathered over the years. If you have a dusty old MP3 player lying around from the 2010s, now's the perfect time to dig it out and check it. I just stumbled upon mine recently, and honestly, the feeling was indescribable.https://preview.redd.it/3lvilfcsqeog1.png?width=431&format=png&auto=webp&s=def78bd247bdf804be6f8e1063f407359fda2e91
Submitted March 11, 2026 at 01:14PM by KaleidoscopeSouth526
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rqs430/telegram_music_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
This bot is my attempt to create the most comfortable environment for listening to and finding music within Telegram. Here are the main features I personally wanted and knew I had to include:Playlists: The number one reason I decided to build it. Thanks to my own bot, I can now send an entire playlist to a friend so they can listen to the songs right away. This is especially relevant in my country, since a huge number of iconic and current songs are blocked for us :(Downloading tracks: Not the most critical feature, but, in my opinion, a must-have for this type of bot. Right now, it searches for tracks via YouTube. In the future, I’m thinking about adding other sources, as well as curating my own collections for future use.Mini-app Player: I’d rank this as the second most important feature. It was exactly what I was missing: a way to display tracks in a familiar, standard player interface.Music Recognition: A handy tool for those moments when you hear a song and just have to know what it is. You can send a voice message to the bot, and it'll identify the track for you and add it directly to your collection.https://preview.redd.it/9uhjlmtcqeog1.png?width=864&format=png&auto=webp&s=0d4385fa50748b3dcacbab152af32e0ee3698908https://preview.redd.it/8artzrrpqeog1.png?width=833&format=png&auto=webp&s=2af590b876cc197fd2e19be296d968648b323232So, this bot has become the most convenient way for me to store, search for, and listen to music in Telegram. Yeah, it’s not going to replace streaming services just yet, but personally, I’m trying to push the platform to its limits to make it as comfortable as possible. My goal is to get to a point where I can confidently cancel my music subscriptions.What I’m planning to add next:Radio: An auto-generated music selection (like many are familiar with).Public/Shared Playlists: A feature to help people discover other users' tracks (and share their own music).Expanding & Improving: Adding more music sources, migrating to a more powerful VPS, optimizing how uploaded songs are stored, and much more.The project is, of course, completely free. But, if you actually find the bot useful, you can support it with a dollar via DonationAlerts :) Covering the server costs is a huge motivator to keep developing this further 😁P.S.
Have a great day, everyone, and remember: the best music is your own personal collection, gathered over the years. If you have a dusty old MP3 player lying around from the 2010s, now's the perfect time to dig it out and check it. I just stumbled upon mine recently, and honestly, the feeling was indescribable.https://preview.redd.it/3lvilfcsqeog1.png?width=431&format=png&auto=webp&s=def78bd247bdf804be6f8e1063f407359fda2e91
Submitted March 11, 2026 at 01:14PM by KaleidoscopeSouth526
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rqs430/telegram_music_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
if openclaw was used for gooning
`@goonsbetabot` generates images and videos directly in telegram. TMI
Submitted March 11, 2026 at 05:28PM by SkyNetLive
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rqyij0/if_openclaw_was_used_for_gooning/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
`@goonsbetabot` generates images and videos directly in telegram. TMI
Submitted March 11, 2026 at 05:28PM by SkyNetLive
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rqyij0/if_openclaw_was_used_for_gooning/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
What’s the best bot or website to download videos from all social media?
/r/AskReddit/comments/1rr653l/whats_the_best_bot_or_website_to_download_videos/
Submitted March 11, 2026 at 09:56PM by weighteasyloss
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rr667i/whats_the_best_bot_or_website_to_download_videos/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
/r/AskReddit/comments/1rr653l/whats_the_best_bot_or_website_to_download_videos/
Submitted March 11, 2026 at 09:56PM by weighteasyloss
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rr667i/whats_the_best_bot_or_website_to_download_videos/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
I built Telestars: an AI Telegram chatbot that sells content for creators ⭐
https://v.redd.it/s8oentykdhog1
Submitted March 11, 2026 at 10:28PM by Psychological-Let833
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rr71ed/i_built_telestars_an_ai_telegram_chatbot_that/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
https://v.redd.it/s8oentykdhog1
Submitted March 11, 2026 at 10:28PM by Psychological-Let833
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rr71ed/i_built_telestars_an_ai_telegram_chatbot_that/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Built a monetized AI companion bot on Telegram — lessons learned
My telegram bot: @TrulyYoursXoXoBotAfter 1 months of running a bot, wanted to share some insights.What worked:• Telegram Stars for payments - 30% cut but zero friction - Users already have Stars from other content - No payment form abandonment• Persistent user sessions via SQLite - Each user gets isolated memory per character - Sliding window + summarization for context• Sliding window + summary for memory - Keeps last 10 messages - Summarizes older context every 5 exchanges - Cuts token costs ~70%• Locked visual seeds for character consistency - Same seed per character = consistent appearance - Flux-dev with locked seed + prompt reinforcementWhat didn't:• Webhooks — too many dropped messages Switched to polling, zero issues since• Long context windows (>60k tokens) Quality degrades, users notice• Generic safety filters Character-appropriate boundaries work better than universal filtersTech stack:- Venice.ai for LLM (uncensored, cheap)- ElevenLabs for voice- Flux-dev for images- Node.js + better-sqlite3Happy to share code snippets or architecture details.
Submitted March 12, 2026 at 10:22AM by STCJOPEY
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rrlzlb/built_a_monetized_ai_companion_bot_on_telegram/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
My telegram bot: @TrulyYoursXoXoBotAfter 1 months of running a bot, wanted to share some insights.What worked:• Telegram Stars for payments - 30% cut but zero friction - Users already have Stars from other content - No payment form abandonment• Persistent user sessions via SQLite - Each user gets isolated memory per character - Sliding window + summarization for context• Sliding window + summary for memory - Keeps last 10 messages - Summarizes older context every 5 exchanges - Cuts token costs ~70%• Locked visual seeds for character consistency - Same seed per character = consistent appearance - Flux-dev with locked seed + prompt reinforcementWhat didn't:• Webhooks — too many dropped messages Switched to polling, zero issues since• Long context windows (>60k tokens) Quality degrades, users notice• Generic safety filters Character-appropriate boundaries work better than universal filtersTech stack:- Venice.ai for LLM (uncensored, cheap)- ElevenLabs for voice- Flux-dev for images- Node.js + better-sqlite3Happy to share code snippets or architecture details.
Submitted March 12, 2026 at 10:22AM by STCJOPEY
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rrlzlb/built_a_monetized_ai_companion_bot_on_telegram/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Can you increase channel subscriber count with bots or spending money on loads of sim cards?
Like title says, is it possible to have bots in a channel just essentially adding to the number of subscribers? Hypothetically, if it was possible to add 50 or so bots to make the channel not look brand new and unused, would it be possible for them to react to posts made? Always heard about it, but google hasn't provided satisfying results.
Submitted March 13, 2026 at 12:52AM by cantsavemefrommyself
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rs7kj4/can_you_increase_channel_subscriber_count_with/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Like title says, is it possible to have bots in a channel just essentially adding to the number of subscribers? Hypothetically, if it was possible to add 50 or so bots to make the channel not look brand new and unused, would it be possible for them to react to posts made? Always heard about it, but google hasn't provided satisfying results.
Submitted March 13, 2026 at 12:52AM by cantsavemefrommyself
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rs7kj4/can_you_increase_channel_subscriber_count_with/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Free way to search keywords across public Telegram channels?
Is there any free way (maybe using third-party tools) to search a keyword across public Telegram channels/posts?Telegram’s global post search seems to be a Premium feature, but I only want to search public content.Are there any websites, bots, or tools that can do this?
Submitted March 13, 2026 at 01:29PM by Accomplished_Arm_107
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rslzrc/free_way_to_search_keywords_across_public/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Is there any free way (maybe using third-party tools) to search a keyword across public Telegram channels/posts?Telegram’s global post search seems to be a Premium feature, but I only want to search public content.Are there any websites, bots, or tools that can do this?
Submitted March 13, 2026 at 01:29PM by Accomplished_Arm_107
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rslzrc/free_way_to_search_keywords_across_public/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Free way to search keywords across public Telegram channels?
Is there any free way (maybe using third-party tools) to search a keyword across public Telegram channels/posts?Telegram’s global post search seems to be a Premium feature, but I only want to search public content.Are there any websites, bots, or tools that can do this?
Submitted March 13, 2026 at 01:29PM by Accomplished_Arm_107
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rslza6/free_way_to_search_keywords_across_public/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Is there any free way (maybe using third-party tools) to search a keyword across public Telegram channels/posts?Telegram’s global post search seems to be a Premium feature, but I only want to search public content.Are there any websites, bots, or tools that can do this?
Submitted March 13, 2026 at 01:29PM by Accomplished_Arm_107
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rslza6/free_way_to_search_keywords_across_public/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
idstracebot - Account OSINT, Creation Dates, and Sticker Metadata
idstracebot is a versatile tool designed for both power users and developers. It uncovers deep insights into profiles and media assets that are usually hidden behind the standard Telegram UI.🚀 Key Features:🕵️ Account Intelligence: Forward any message to get unique IDs and an estimated account age.🎨 Sticker Inspector: Send a sticker to instantly retrieve its File ID, Emoji link, and full Sticker Set details.🪪 Visual Assets: Generate custom Profile ID Cards and QR Codes (from any text/link) on the fly.🔗 Deep Link Tools: Generate/Decode Telegram deep links or extract message IDs and parameters.🕐 Tech Toolbox: Convert Unix Timestamps to readable dates and vice-versa.✏️ Font Styles: Convert text into 16 unique Unicode-based graphic styles.Repo: https://github.com/DavidAI2024/-Telegram-ID-get-MultiTool-Idstracebot-
Submitted March 14, 2026 at 02:00AM by FruitysX
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rt5jps/idstracebot_account_osint_creation_dates_and/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
idstracebot is a versatile tool designed for both power users and developers. It uncovers deep insights into profiles and media assets that are usually hidden behind the standard Telegram UI.🚀 Key Features:🕵️ Account Intelligence: Forward any message to get unique IDs and an estimated account age.🎨 Sticker Inspector: Send a sticker to instantly retrieve its File ID, Emoji link, and full Sticker Set details.🪪 Visual Assets: Generate custom Profile ID Cards and QR Codes (from any text/link) on the fly.🔗 Deep Link Tools: Generate/Decode Telegram deep links or extract message IDs and parameters.🕐 Tech Toolbox: Convert Unix Timestamps to readable dates and vice-versa.✏️ Font Styles: Convert text into 16 unique Unicode-based graphic styles.Repo: https://github.com/DavidAI2024/-Telegram-ID-get-MultiTool-Idstracebot-
Submitted March 14, 2026 at 02:00AM by FruitysX
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rt5jps/idstracebot_account_osint_creation_dates_and/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
Telegram 4GB Rename Bot
/r/selfhosted/comments/1rtka1a/telegram_4gb_rename_bot/
Submitted March 14, 2026 at 03:10PM by davdxpx
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rtkekp/telegram_4gb_rename_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme
/r/selfhosted/comments/1rtka1a/telegram_4gb_rename_bot/
Submitted March 14, 2026 at 03:10PM by davdxpx
on r/TelegramBots via https://www.reddit.com/r/TelegramBots/comments/1rtkekp/telegram_4gb_rename_bot/?utm_source=iftttBackup by @tmebackupA @rtptme project - Other backups: http://pixly.link/tme