Invisible messages and ephemeral commands: the definitive guide to Telegram's new interactive bots
«Only you can see this message». If that little notice starts popping up in your group chats, your app isn't broken — it's the new superpower of bots for Telegram groups. Since July 14, 2026, bots can post invisible messages inside a group that only one member can see, and Telegram bot commands now come with an ephemeral mode that answers you without spamming everyone else.
Telegram calls the feature ephemeral messages in groups, and it shipped with Bot API 10.2 as part of the July 2026 Telegram update. It is arguably the biggest change to how you use bots in Telegram groups since inline buttons arrived: no more forcing 5,000 strangers to scroll past a reply that was only ever meant for you.
In this guide you'll learn exactly what ephemeral messages are, how to recognize the commands that reply invisibly, which classic tricks still work, and how to put all of it to use if you run a community. By the end, you'll know more about bots than 99% of the people in your groups.
Telegram ephemeral messages explained: invisible bot replies inside groups
An ephemeral message is a message a bot sends inside a group or supergroup that is visible only to the recipient user and the bot itself. Everyone else sees nothing at all: no notification, no clutter, no interruption. Telegram announced it on its official blog on July 14, 2026, alongside Communities and the new rich text editor.
The use cases Telegram itself lists say it all: welcome messages that don't derail the conversation, private AI-generated summaries, error notices, confirmations, and button menus only you interact with.
Two things you should get right from the start:
- It is not a setting you switch on. There is no toggle anywhere in the Telegram app: it's a capability each developer has to build into their bot. You simply benefit from it whenever a bot has been updated.
- It is not a private-chat reply. The message lives inside the group itself, in context, just hidden from everyone else — the missing middle ground between a DM and a public post.
So how do you know which commands answer in secret? Easy: ephemeral commands are highlighted with a special icon in the bot's command menu. That icon is the only visual clue you need.
Inside the July 2026 Telegram update: what ships with Bot API 10.2
Ephemeral messages are the headliner, but Bot API 10.2, released on July 14, 2026, arrived in a much bigger box:
- Communities: groups, channels and bots linked together under one roof. We break the feature down in our guide to Telegram's new Communities.
- Rich text editor: messages of up to 32,768 characters, available to Premium subscribers only.
- Revamped GIF search: 350 million GIFs across 36 languages.
One nuance worth underlining: the announcement mentions no Premium requirement for ephemeral messages — within this release, Premium exclusivity is only cited for the new editor. And since the feature is so recent, don't expect every bot to support it yet: developers are just starting to adopt it. Independent coverage, like TestingCatalog's report on the update, confirms how fresh this all is.
How to use ephemeral Telegram bot commands, step by step
There is nothing to configure — you just need to know where to look:
- Open a group that has a bot already updated to Bot API 10.2.
- Tap the bot's command menu, the button next to the message field.
- Look for commands marked with the special icon: those are the ones that reply ephemerally.
- Run the command as usual, for example /summary or /rules.
- The reply appears in the group flagged as visible only to you; for everyone else, nothing happened.
A few curious rules, verified in the official Bot API reference: a reply to an ephemeral message must itself be ephemeral, and it can only be sent within 15 seconds of the original. On top of that, if the bot is a group admin, it can send ephemeral messages to any human member at any time — no button press required.
Star tip: before firing off a command in a huge group, open the bot's menu and check whether the command carries the ephemeral icon. If it does, experiment freely; if it doesn't, the whole group will see the answer.
The classic «only you can see this» tricks that still work
Long before July 2026, developers had workarounds for answering quietly. They all still exist, and plenty of bots will keep relying on them during the transition:
Ephemeral messages (2026) | Only you and the bot, inside the group | Supports photos, videos, stickers and buttons; replies within 15 seconds
Callback alert popup | Only the person tapping the button | Text of 0-200 characters, never stored in the history
Private-chat reply | Only you, outside the group | You must have started the bot first
Inline mode | Only the person typing the query | Enabled via @BotFather; the result you pick does get posted
Add two housekeeping classics. Deletion: a bot can remove processed commands with deleteMessage, as long as the messages are less than 48 hours old and, in supergroups, the bot holds the admin permission to delete messages. And privacy mode: by default, a bot in a group only sees commands aimed at it (like /command@botname), replies to its own messages and inline messages, as documented in the official Telegram FAQ.
A special mention goes to Telegram Mini Apps in groups: lightweight apps that open right in the chat through direct links such as t.me/botname/appname, with no access to the conversation's content and designed to be used by several members at once.
The best bots for Telegram groups are about to get much quieter
If you run a community, this release matters to you more than to anyone. A Telegram group can hold up to 200,000 members, and at that scale every unnecessary bot notice multiplies the noise, buries good conversations and pushes people to mute the group. With ephemeral replies, the best bots for Telegram groups can finally work without trashing the chat:
- Spam-free welcomes: every newcomer gets the rules and useful links without veterans seeing the thousandth greeting.
- Discreet moderation: warnings and confirmations only the affected person sees, with no public shaming.
- AI summaries on demand: each member requests their own recap of the day without broadcasting it.
- Personal menus and helpers: buttons and forms each user drives on their own, inside the group.
Building a community from scratch? Start with our guide on how to moderate a Telegram group and our tactics to get more group members. And once your group or bot is ready, list it in our directory so more people can find it.
For developers: the new API in a nutshell
If you build bots, the fine print is delightful. Bot API 10.2 adds the receiver_user_id and callback_query_id parameters to sendMessage, sendPhoto, sendVideo and friends; introduces the receiver_user and ephemeral_message_id fields on messages; and ships dedicated methods such as editEphemeralMessageText and deleteEphemeralMessage. The ephemeral identifier can be reused once the message is deleted or expires, and the new is_ephemeral field on commands is what lights up the special icon in the bot menu.
A wild year for the Telegram bot platform
To understand why this feature lands now, look at the pace of the last twelve months:
- August 2025 (Bot API 9.2): checklists and suggested posts.
- December 2025 (9.3): streamed message drafts and topics in private chats.
- March-April 2026 (9.6): bots managed by bots and bot-to-bot communication.
- May 2026 (10.0): guest AI bots — mention a bot's @username in any chat without adding it, and it only sees the tagged message; up to 3 guest bots per message.
- June 2026 (10.1): rich text messages for bots and «AI Guardians» for groups.
- July 2026 (10.2): ephemeral messages, Communities, the 32,768-character editor and 350 million GIFs.
With Telegram past 1 billion active users, bots have become the nervous system of its communities. If you love tracking every release, join an active technology group from the directory and catch up on the rest of the big update's features.
Frequently asked questions
Do I need Telegram Premium for ephemeral messages?
The official announcement mentions no Premium requirement for ephemeral bot messages; in this update, the only Premium-exclusive extra is the 32,768-character text editor. If you're on the fence about subscribing, read our take on whether Telegram Premium is worth it.
Can anyone else read an invisible message addressed to me?
According to the official documentation, an ephemeral message is seen only by the recipient user and the bot that sent it; the rest of the group sees nothing. Still, use common sense with what you share with any bot — our guide to Telegram scams helps you spot impostors.
Why doesn't my favorite bot reply invisibly yet?
Because the feature is still very new and every developer has to implement it in their own bot. Active projects are starting to adopt it: check the command menu for the special icon to see whether yours has been updated.
How is this different from the classic «only you can see this» alert?
The classic answerCallbackQuery alert is limited to 0-200 characters of text and never enters the history. Ephemeral messages, by contrast, support photos, videos, stickers and buttons, and live inside the group like a regular message that only you can see.
Conclusion
Ephemeral messages are a before-and-after moment for interactive bots: cleaner groups, tailored replies, and commands you're no longer embarrassed to run in public. You now know what Telegram's invisible messages are, how to spot ephemeral commands by their icon, and which classic tricks still have your back.
The next step is yours: browse the trending groups, dive into the full catalog of groups and channels and, if privacy is your thing, finish with our radical Telegram Ghost Mode tricks.
Related articles
Using Telegram just to chat? You're missing the best part. Discover the 12 categories of free Telegram bots that translate, remind, make stickers and organize your group, how to use them step by step and how to avoid the dangerous ones.
Turn dead phone minutes into microlearning: discover the most useful topics, how to spot the best Telegram channels, and how to find them by browsing the catalog by category.
Telegram vs Signal? This fair comparison reveals which is safer and more private in 2026: end-to-end encryption, features, cloud, metadata and open source. Find out which app is better for whom and how to choose without falling for myths.