Is Discord Down? How to Check and What to Do
TLDR: Check if Discord is actually down at discordstatus.com and apistatuscheck.com/down/discord. Common issues include voice server outages, API failures, and CDN problems. Use Slack, Guilded, or Revolt as emergency alternatives while Discord recovers.
Is Discord Down? How to Check and What to Do
Discord is the backbone of countless gaming communities, developer teams, and friend groups. When it goes down, it affects over 150 million monthly active users. With 83,000+ monthly searches for "is Discord down," you're not alone in checking.
Here's everything you need to know when Discord isn't working.
How to Check if Discord is Actually Down
Step 1: Check Official Status
Official Discord Status: discordstatus.com
This is Discord's official status page. It shows:
- API status
- Gateway (connections)
- Media (voice/video)
- Push notifications
- Search functionality
Step 2: Check API Status Check
Real-time monitoring: apistatuscheck.com/api/discord
We monitor Discord's API gateway independently, so you get a second source of truth.
Step 3: Check Social Media
- Twitter/X: Search for "Discord down" or check @discord
- Reddit: Check r/discordapp for user reports
- Down Detector: Community reports of issues
Common Discord Issues (That Aren't Outages)
Before blaming Discord, check these:
Connection Issues
- Restart the app: Close completely and reopen
- Check your internet: Try other websites
- Disable VPN: Some VPNs are blocked by Discord
- Switch servers: Change your voice server region
Mobile-Specific
- Update the app: Old versions can have bugs
- Clear cache: Settings → App Settings → Clear Cache
- Reinstall: Last resort, but often fixes persistent issues
Desktop-Specific
- Clear cache:
%appdata%/Discord/Cache(Windows) or~/Library/Application Support/Discord/Cache(Mac) - Disable hardware acceleration: Settings → Voice & Video → Disable Hardware Acceleration
- Run as admin: Right-click → Run as Administrator (Windows)
What to Do When Discord is Actually Down
For Gaming
- Steam Chat: Built into Steam, works for gaming groups
- Xbox Game Bar: Press Win+G for built-in voice
- TeamSpeak: Old school but reliable
- Guilded: Discord alternative built for gamers
For Work/Communities
- Slack: Professional alternative with similar features
- Microsoft Teams: Enterprise-grade communication
- Telegram: Fast, works on everything
- IRC: Still exists, still works
For Developers
- Slack: Check Slack status
- GitHub Discussions: For open-source projects
- Matrix/Element: Decentralized, self-hostable
Discord Outage Patterns
Based on historical data, Discord outages tend to:
- Peak during evening hours: Highest usage times
- Happen during major game launches: Server strain
- Last 15-60 minutes: Most are resolved quickly
- Affect specific regions first: Often US East Coast first
For Bot Developers: Handling Outages
If you run a Discord bot, here's how to handle outages gracefully:
// Implement exponential backoff
client.on('error', (error) => {
console.error('Connection error:', error);
// Your reconnection logic
});
// Monitor gateway latency
client.on('ready', () => {
setInterval(() => {
const ping = client.ws.ping;
if (ping > 500) {
console.warn('High latency detected:', ping);
}
}, 30000);
});
Best Practices
- Queue messages: Store messages during downtime, send when back up
- Status endpoint: Check discordstatus.com API before retrying
- User notifications: Tell users when you detect issues
- Logging: Track outages for your own analytics
Get Notified of Discord Outages
Want to know the moment Discord goes down?
- API Status Check alerts: Subscribe here for instant notifications
- Follow @discordstatus: Twitter notifications
- Discord Status webhook: For your server (ironic, but useful for partial outages)
Discord Outage History
Recent notable Discord outages:
| Date | Duration | Affected |
|---|---|---|
| Jan 2026 | 45 min | Voice servers |
| Dec 2025 | 2 hours | Global outage |
| Nov 2025 | 30 min | API rate limiting |
| Oct 2025 | 1 hour | EU servers |
View full history: Discord outage history
Last updated: January 2026
Monitor Your APIs
Check the real-time status of 100+ popular APIs used by developers.
View API Status →