Telegram access went dark across India on 16 June, blocked by government order until 22 June, the day after the NEET-UG re-examination. For the tens of millions of Indians who use it - 150 million, by Telegram's own count - that buys a week of frozen chats. For the smaller tribe who built things on top of the app, the bot-runners and the automation tinkerers and the indie developers piping AI agents through its Bot API, it pulled the prop shaft clean out of a working drivetrain.
The chats return intact on 22 June. The automations sit dead until someone rebuilds them, and the sharper read this week treats that as the real warning rather than the inconvenience.
- Telegram access is blocked in India until 22 June 2026, and the message-editing feature stays disabled until 30 June to stop fabricated leak evidence.
- Chats, groups and files remain on Telegram's servers and return the moment the block lifts; the data is safe.
- WhatsApp, Signal and every other messaging app run normally - the order names Telegram alone.
- A VPN reroutes the connection, yet the legal position on defeating a Section 69A order stays untested, which makes it a fit for casual access rather than production systems.
- For bots and AI agent workflows, the durable answer is a second channel - Discord, Slack, the WhatsApp Business API or a self-hosted webhook.
What exactly stopped working on 16 June?
Telegram took the matter to the Delhi High Court on 17 June, arguing that the block penalises millions of ordinary users over the actions of a few. Pavel Durov, the company's chief executive, said the leaks had simply shifted to other apps, and that Telegram had already taken down hundreds of channels on its own side. Justice Tejas Karia agreed to hear the plea the same day, which means the duration printed today could be shortened by order tomorrow.
Sit with the engineering reality, though. The consumer block is the headline; the quieter casualty is automation. Telegram's Bot API has been the cheap, fast way to wire up alerts and agents for years - a trading desk pinging price moves, a small online storefront pushing order updates, a hobbyist running an LLM agent that posts to a channel every morning. Tools like n8n and Make lean on it as a default output node. With the access path blocked at the network edge in India, every one of those flows throws errors or goes silent. The bot token still works; the road to it is closed.
A VPN reroutes packets; the liability stays put
Here, honesty matters more than convenience. Whether routing around a Section 69A order carries any personal exposure remains an open legal question, one the courts have so far left for another day. Treat anyone promising certainty either way with suspicion. For a casual user, the practical risk reads as low; for a business running customer-facing automation through a VPN tunnel, the calculus changes - you are now betting production uptime on a workaround that the same court hearing might render pointless by the weekend. A VPN moves your packets. It does the job for a person who misses their chats. It makes a poor foundation for anything that has to stay up.
The CERT-In logging rules from 2022 add a wrinkle worth knowing: several VPN providers pulled their physical servers out of India rather than retain user logs, so India-based exit nodes run thinner than they once did. Most readers route through Singapore or the EU anyway, which works fine for reach and adds a few milliseconds of latency.
The four places your bots can actually go
| Platform | Bot / automation maturity | Migration effort | India availability | Best suited to |
|---|---|---|---|---|
| Discord | High - full bot API, webhooks, slash commands | Low for notifications, medium for rich bots | Full | Communities, alert bots, AI agent output |
| Slack | High - mature API, Incoming Webhooks, apps | Low for webhooks, medium for workflows | Full | Internal team alerts, business automation |
| WhatsApp Business API | Medium - template-led, approval-gated | High - Meta verification and BSP onboarding | Full | Customer-facing order and support flows |
| Matrix (self-hosted or hosted) | Medium - open protocol, bot libraries exist | Medium to high - you run the bridge | Full | Privacy-first setups, full ownership |
| Self-hosted webhook | Full control - you write the endpoint | High - you build and maintain it | Full | Teams that want zero platform dependency |
Signal earns a deliberate omission from that table. It is the privacy darling, and it runs fine this week, yet it keeps automation deliberately minimal; a public bot platform of the kind Telegram offers stays outside its design. Reaching for Signal as a Telegram bot replacement leads to a dead end.
For the fastest possible swap, a Discord or Slack incoming webhook accepts a JSON payload over HTTPS and posts a message - a change of perhaps ten lines in most scripts. If your agent already talks to Telegram through n8n, both platforms exist as native nodes; you redirect the output and keep the logic. The heavy lift sits with anyone built on Telegram's richer features - inline keyboards, file hosting, large public channels - where the swap turns into a rebuild.
One sail, one point of failure
The fix is the same one any decent setup uses for the parts that have to stay up: an abstraction layer between your logic and your delivery channel. Write your agent to emit events; let a thin adapter decide whether those events land on Telegram, Discord or a webhook. When one channel closes, you change a config value rather than your code. Teams running n8n already have most of this for free - the visual flow is the abstraction. Teams with bespoke scripts hard-wired to the Telegram SDK are the ones spending this week rewriting under pressure.
This is a recurring event rather than a freak one. India has reached for platform blocks before, and the trigger this time - an exam - guarantees a repeat. NEET runs every year. The conditions that produced a 16 June block already exist on the 2027 calendar.
The next exam season is already on the calendar
Frequently Asked Questions
The access block runs until 22 June 2026, the day after the NEET-UG re-examination. The separate message-editing lock holds until 30 June. The Delhi High Court is hearing Telegram's challenge, so the date could move earlier by court order.
Is it legal to use a VPN to access Telegram during the block?
Using a VPN is legal in India. Whether using one specifically to defeat a Section 69A blocking order carries personal exposure remains an untested legal question - treat confident answers in either direction with caution, and keep production systems off it.
Will I lose my Telegram chats, groups or files?
Your data stays on Telegram's servers throughout. Chats, groups and files return exactly as they were once the block lifts.
What is the fastest alternative for a simple notification bot?
A Discord or Slack incoming webhook. Both accept a JSON payload over HTTPS and post a message, which usually means changing a handful of lines in an existing script.
Does the block affect WhatsApp, Signal or other apps?
The order names Telegram alone. WhatsApp, Signal and every other messaging platform run normally in India this week.