Is Telegram Down Right Now?
Telegram status guide — check messaging, bot API, channels, and MTProto connectivity. Troubleshooting for users and bot developers when Telegram is not working.
📡 Monitor your APIs — know when they go down before your users do
Better Stack checks uptime every 30 seconds with instant Slack, email & SMS alerts. Free tier available.
Affiliate link — we may earn a commission at no extra cost to you
Check Telegram Status Now
Telegram Service Components
Personal and group chat delivery
Broadcast channels and subscriptions
Webhook delivery and polling for bots
Photo, video, and document sharing
Peer-to-peer and group calls
Phone number verification and 2FA
web.telegram.org browser client
Native client API protocol
How to Check if Telegram is Down
1. Check the message delivery indicator
In Telegram, one gray check mark means sent but not delivered to the server. Two gray checks mean delivered to the server. Two blue checks mean read. If messages are stuck on one check mark for multiple minutes, Telegram's servers may be experiencing issues.
2. Visit telegram.org/status
Telegram maintains a minimal status page. While less detailed than AWS or GitHub's status pages, it confirms server-side incidents when they occur. Bookmark it for quick checks during outages.
3. Try Telegram Web
If your desktop app or mobile client isn't loading, try web.telegram.org in a browser. If the web version works but your app doesn't, the issue is likely local (app cache, update needed) not a server-wide outage.
4. Check DownDetector and Twitter/X
DownDetector shows real-time user reports. A spike of 500+ reports in 30 minutes confirms a widespread issue. Search "Telegram down" on X for live reports and regional context.
5. Test the Bot API directly
For bot developers, test the Bot API with a direct request:curl https://api.telegram.org/bot<TOKEN>/getMeA 200 response with your bot info confirms the API is operational. A timeout or 5xx error indicates a server-side issue.
Troubleshooting Telegram Bot Issues
Bot Not Receiving Messages?
Verify your webhook URL is reachable
Telegram sends POST requests to your webhook. Confirm it's publicly accessible via HTTPS with a valid SSL certificate.
Check webhook info
Call getWebhookInfo to see error messages and pending update count. More than 100 pending updates suggest your webhook is failing.
Check rate limits
Telegram limits bots to 30 messages/second globally and 20 messages/minute to the same chat. Exceeding limits triggers 429 errors. Implement exponential backoff.
Regenerate the bot token
Message @BotFather with /revoke to get a fresh token if you suspect the old one was compromised or invalidated.
Telegram vs Signal vs WhatsApp: Status Comparison
| Feature | Telegram | Signal | |
|---|---|---|---|
| Bot API | ✅ Mature & documented | ❌ No official API | ⚠️ Business API only |
| Status Page | ⚠️ Minimal | ⚠️ Minimal | ❌ None public |
| End-to-End Encryption | ⚠️ Secret chats only | ✅ All messages | ✅ All messages |
| Max Group Size | 200,000 members | 1,000 members | 1,024 members |
| Country Blocks | ⚠️ Some countries | ⚠️ Some countries | ⚠️ Some countries |
Frequently Asked Questions
Is Telegram down right now?
To check if Telegram is down, visit Telegram's official status page at telegram.org/status. You can also check DownDetector for user-reported outages or search "Telegram down" on X/Twitter. APIStatusCheck.com/is-telegram-down provides third-party monitoring. Signs of a Telegram outage: messages stuck on one check mark (not delivered), channels not loading, or login failures.
Why are my Telegram messages not delivering?
Telegram message delivery failures are usually caused by: (1) Server-side outage — check telegram.org/status, (2) Your internet connection is unstable — look for one check mark instead of two, (3) The recipient has blocked you, (4) A regional block or firewall in your country is blocking Telegram, (5) Your account was temporarily restricted. Try switching between Wi-Fi and mobile data to rule out a local connectivity issue.
Why is my Telegram bot not responding?
Telegram bot failures are typically caused by: (1) Telegram Bot API outage — check the Telegram status page, (2) Your bot webhook endpoint is down or returning errors, (3) Bot token was revoked — regenerate via @BotFather, (4) You hit Telegram's rate limits (30 messages/second per bot, 20 messages/minute to the same group), (5) Your bot was banned for spam-like behavior. Use /getMe endpoint to test token validity: https://api.telegram.org/bot<TOKEN>/getMe
How long do Telegram outages typically last?
Most Telegram outages resolve within 15–45 minutes. Regional outages caused by ISP blocks can last hours or days. Major infrastructure failures have historically been resolved within 1–2 hours. Telegram typically does not publish a formal status page with real-time incident tracking like other providers, making third-party monitors valuable during outages.
Does Telegram work in all countries?
No — Telegram is blocked in several countries including China (GFW), Iran (intermittently), and others. In blocked regions, a VPN is required to access Telegram. If Telegram suddenly stops working in your location, check if a regional block or ISP restriction has been added. Telegram's decentralized MTProto protocol makes it harder to block than plain HTTPS, but determined government-level blocks are effective.