Staff Pick

๐Ÿ“ก 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.

Start Free โ†’

Affiliate link โ€” we may earn a commission at no extra cost to you

Blog/Slack Status Guide

Slack Status: How to Check If Slack Is Down Right Now (2026)

Where to find the official Slack status page, what each component means, and how to diagnose why messages, calls, notifications, or the Slack API are failing.

Updated: June 2026ยท8 min readยทBy API Status Check

Is Slack Down Right Now?

Check status.slack.com for official real-time status. Slack tracks Messaging, Connections, Notifications, Search, Calls, Apps, and API components separately.

Slack Status Page Components

The official Slack status page at status.slack.com (powered by Atlassian Statuspage) breaks availability down into these components:

Messaging
Sending and receiving messages in channels and DMs
Connections
WebSocket connections โ€” whether Slack can connect at all
Notifications
Push notifications on desktop and mobile
Search
Message and file search across workspaces
Calls
Slack Calls and Huddles voice/video
Apps / Integrations
Third-party app connections and slash commands
API
Slack API for bots and integrations
Posts & Files
File uploads, document sharing, Canvas

Important: The top-level status indicator can show "Operational" even when individual components are degraded. Always check the component-level rows โ€” a messaging outage might show as "Degraded Performance" while the top banner says everything is fine.

๐Ÿ“ก
Recommended

Monitor Slack availability independently

Better Stack checks Slack API endpoints every 30 seconds from multiple global locations. Get alerted the moment Slack starts failing โ€” before your team notices.

Try Better Stack Free โ†’

How to Check Slack Status (Step by Step)

1.

Check status.slack.com

The official Slack status page. Look at individual component rows, not just the top-level banner. Check the incident history for recent incidents affecting your region.

Go to Slack Status Page โ†’
2.

Test the Slack API health endpoint

If you use the Slack API, ping the test endpoint to verify API availability independently of the status page.

curl https://slack.com/api/api.test # Returns: {"ok":true} when healthy
3.

Check Slack's Twitter / X

Slack posts incident updates on @SlackHQ and @SlackStatus. For crowd-sourced reports, search "Slack down" on Twitter โ€” you'll often see reports before the status page updates.

Follow @SlackStatus โ†’
4.

Check your network and firewall

Slack requires WebSocket connections. Corporate firewalls sometimes block WebSocket traffic on non-standard domains. Test by connecting on a mobile hotspot to rule out local network issues.

5.

Restart the Slack app

Quit Slack completely (not just minimize), clear the app cache if on desktop, and relaunch. This resolves a surprising number of "Slack not working" issues that aren't actual outages.

Common Slack Issues and Causes

SymptomLikely CauseFirst Check
Messages not sendingMessaging incident or network issuestatus.slack.com โ†’ Messaging; try mobile data
Slack won't connectConnections incident or firewall blockstatus.slack.com โ†’ Connections; test on hotspot
No push notificationsNotifications incident or OS permissionsstatus.slack.com โ†’ Notifications; OS notification settings
Calls/Huddles droppingCalls incident or network quality/VPNstatus.slack.com โ†’ Calls; disable VPN; use ethernet
Search not returning resultsSearch service degradationstatus.slack.com โ†’ Search; try different search terms
Slash commands not workingApps/Integrations incidentstatus.slack.com โ†’ Apps; check app configuration
API returning 429Rate limiting (not an outage)Implement exponential backoff; check method tier limits
Files not uploadingPosts & Files incident or file sizestatus.slack.com โ†’ Posts & Files; check 1GB limit

Monitoring Slack API Status Programmatically

Slack provides a machine-readable status API for automated monitoring:

# Current status
curl https://status.slack.com/api/v2.0.0/current

# Returns JSON with:
# - status: "active" | "ok"
# - active_incidents: array of ongoing incidents
# - date_updated: ISO 8601 timestamp

# Quick health check
curl https://slack.com/api/api.test
# Returns: {"ok":true} when healthy

The api.test endpoint is the simplest way to verify Slack API connectivity. If it returns {"ok":true}, the Slack API is reachable from your server. If it returns an error or times out, there's either a Slack API incident or a network/DNS issue.

Slack vs Microsoft Teams: Status Infrastructure

Slack

  • Status: status.slack.com
  • Uses Atlassian Statuspage
  • Owned by Salesforce
  • Granular per-component tracking
  • WebSocket-based real-time messaging

Microsoft Teams

  • Status: admin.microsoft.com (Service Health)
  • Uses Microsoft 365 Admin Center
  • Part of Microsoft 365 suite
  • Requires M365 admin to check status
  • Also see: @MSFT365Status on Twitter

What to Do When Slack Is Down

Immediate Steps

  • Confirm the outage at status.slack.com
  • Subscribe to email incident updates on the status page
  • Switch to email or phone for urgent communication
  • Check if Slack web app (app.slack.com) works if desktop fails
  • Notify your team via a backup channel (email list, group text)

Long-Term Resilience

  • Set up independent Slack API uptime monitoring
  • Maintain a team email distribution list as backup
  • Document on-call phone numbers for critical team members
  • Consider a secondary communication channel (Discord, Teams)
  • Add Slack status to your monitoring dashboard
๐Ÿ“ก
Recommended

Monitor your Slack workspace and bots independently

Better Stack monitors your Slack API endpoints and bots every 30 seconds from 6 global regions. Know about Slack issues the moment they start โ€” not when your team starts complaining.

Try Better Stack Free โ†’

Frequently Asked Questions

Where is the official Slack status page?

Slack's official status page is at slack.com/intl/en-us/status (or status.slack.com). It tracks real-time status for Messaging, Connections, Notifications, Search, Calls, Apps, and the Slack API. It's powered by Atlassian Statuspage. For independent third-party monitoring, use apistatuscheck.com/api/slack.

Why are Slack messages not sending?

Slack message failures typically happen because: (1) Messaging component incident โ€” check the Slack status page for the Messaging row, (2) Connectivity issue on your end โ€” check your internet connection; Slack requires WebSocket connections on port 443, (3) Firewall blocking Slack โ€” corporate firewalls sometimes block Slack's WebSocket domains (slack.com, *.slack.com), (4) Slack desktop app needs an update or restart โ€” try quitting and relaunching, (5) Workspace-level incident affecting only your Slack organization. If only some users are affected, it may be a workspace-specific issue rather than a platform-wide outage.

Why do Slack Huddles and Calls keep dropping?

Slack Huddle and Call drops have several causes: (1) Calls component incident โ€” check status.slack.com for the Calls row, (2) Network quality โ€” Slack Calls require low latency; use wired ethernet or move closer to your router, (3) VPN interference โ€” many VPNs degrade Slack Calls quality; try disabling VPN for calls, (4) Bandwidth congestion โ€” Slack Calls use significant bandwidth; close other video streams, (5) Audio/video driver issues on desktop โ€” update your sound card or camera drivers. Slack Huddles use a different audio stack than Calls โ€” if one works and the other doesn't, it's likely a feature-specific issue.

Why are Slack notifications not working?

Missing Slack notifications are usually caused by: (1) Notifications component incident โ€” check the Slack status page, (2) Do Not Disturb enabled โ€” check the bell icon in your Slack sidebar, (3) OS-level notification permissions โ€” on Mac, check System Settings โ†’ Notifications โ†’ Slack; on Windows, check Action Center settings, (4) Notification schedule settings in Slack preferences, (5) Channel or DM notification settings overriding workspace defaults. Check Preferences โ†’ Notifications in Slack to confirm your notification settings haven't changed.

What is the Slack API rate limit?

Slack API rate limits vary by method tier: Tier 1 (1 req/min), Tier 2 (20 req/min), Tier 3 (50 req/min), Tier 4 (100+ req/min). The chat.postMessage method used for sending messages is Tier 3 (50/min per workspace). Slack's Events API is not rate-limited from the platform side โ€” your endpoint must respond within 3 seconds. If you're seeing 429 errors, implement exponential backoff. Check the Slack API documentation for each method's specific tier. Rate limit errors are not outages โ€” they're expected behavior when apps send too many requests.

How do I check Slack status programmatically?

Slack provides a status API at slack.com/api/api.test (simple health check) and the official status API at status.slack.com/api/v2.0.0/current. The current endpoint returns JSON with the overall status and a list of active incidents. For production monitoring, set up an external uptime monitor (Better Stack, Datadog, etc.) to ping api.slack.com/api/api.test every minute and alert on failures. This gives you independent monitoring independent of Slack's self-reported status.

Alert Pro

14-day free trial

Stop checking โ€” get alerted instantly

Next time Slack goes down, you'll know in under 60 seconds โ€” not when your users start complaining.

  • Email alerts for Slack + 9 more APIs
  • $0 due today for trial
  • Cancel anytime โ€” $9/mo after trial

Never Miss a Slack Outage Again

Monitor your Slack workspace and API integrations with independent real-time checks from 6 global regions.

Try Better Stack Free โ€” No Credit Card Required

Or use APIStatusCheck Alert Pro โ€” API monitoring from $9/mo

Related Status Guides

๐ŸŒ Can't Access Slack?

If Slack is working for others but not for you, it might be an ISP or regional issue. A VPN can help bypass network-level blocks and routing problems.

๐Ÿ”’

Troubleshoot with a VPN

Connect from a different region to test if the issue is local to your network. Also protects your connection on public Wi-Fi.

Try NordVPN โ€” 30-Day Money-Back Guarantee
๐Ÿ”‘

Secure Your Slack Account

Service outages are a common time for phishing attacks. Use a password manager to keep unique, strong passwords for every account.

Try NordPass โ€” Free Password Manager
Quick ISP test: Try accessing Slack on mobile data (Wi-Fi off). If it works, the issue is with your ISP or local network.

โณ While You Wait โ€” Try These Alternatives

๐Ÿ›  Tools We Use & Recommend

Tested across our own infrastructure monitoring 200+ APIs daily

Better StackBest for API Teams

Uptime Monitoring & Incident Management

Used by 100,000+ websites

Monitors your APIs every 30 seconds. Instant alerts via Slack, email, SMS, and phone calls when something goes down.

โ€œWe use Better Stack to monitor every API on this site. It caught 23 outages last month before users reported them.โ€

Free tier ยท Paid from $24/moStart Free Monitoring
1PasswordBest for Credential Security

Secrets Management & Developer Security

Trusted by 150,000+ businesses

Manage API keys, database passwords, and service tokens with CLI integration and automatic rotation.

โ€œAfter covering dozens of outages caused by leaked credentials, we recommend every team use a secrets manager.โ€

SEMrushBest for SEO

SEO & Site Performance Monitoring

Used by 10M+ marketers

Track your site health, uptime, search rankings, and competitor movements from one dashboard.

โ€œWe use SEMrush to track how our API status pages rank and catch site health issues early.โ€

From $129.95/moTry SEMrush Free
View full comparison & more tools โ†’Affiliate links โ€” we earn a commission at no extra cost to you