Is Zoom Down? How to Check Zoom Status Right Now

Statusfield Team
10 min read

Zoom not connecting? Meetings dropping? Learn how to check if Zoom is down, what breaks during an outage (meetings vs webinars vs phone), and how to get instant alerts so you're never caught off guard.

Check current Zoom status: statusfield.com/services/zoom

Zoom has become the default video conferencing platform for hundreds of millions of people — remote teams, schools, healthcare providers, and enterprises worldwide. When Zoom goes down, meetings don't happen. Deals don't close. Classes get cancelled. The stakes are high, and the impact is immediate.

Here's how to confirm if Zoom is actually down, understand what's broken, and make sure you're never scrambling again.

Is Zoom Down Right Now?

The fastest way to check: View live Zoom status on Statusfield →

Statusfield pulls directly from Zoom's status feed and updates every 5 minutes. You'll see the current status for each Zoom component — meetings, webinars, phone, chat, and more — without having to guess.

How to Check Zoom Status

1. Statusfield (recommended) statusfield.com/services/zoom gives you real-time status with incident history and alert capabilities. You'll know the moment Zoom's status changes.

2. Zoom's Official Status Page Zoom maintains their own status page at status.zoom.us. It's the authoritative source, but vendor pages can lag during fast-moving incidents.

3. Downdetector Community-reported problems aggregate quickly on Downdetector and often surface before Zoom officially acknowledges an issue.

4. Twitter/X Search Zoom down sorted by Latest. With hundreds of millions of users, Zoom outage reports flood social media within minutes.

What Actually Breaks During a Zoom Outage

Zoom's platform is more complex than most users realize. Different components can fail independently.

ComponentWhat it coversImpact when down
MeetingStandard Zoom meetingsCan't start or join meetings
WebinarZoom Webinar productWebinars and large events fail
Zoom PhoneCloud phone systemVoIP calls and SMS fail
Zoom ChatTeam messaging (formerly Zoom Team Chat)Messaging and file sharing unavailable
Zoom RoomConference room hardwarePhysical room systems go offline
Zoom Mail/CalendarEmail and calendar featuresScheduling and invites break
DashboardAdmin and analytics portalAdmins can't access reporting
API/WebhooksProgrammatic accessIntegrations and automations fail

A Meeting component outage affects the vast majority of users. An API outage may go unnoticed by casual users but breaks every integration — schedulers, CRMs, and LMS platforms that rely on Zoom webhooks.

Common Zoom Error Symptoms

What you seeWhat it usually means
"Your connection is unstable"Network issue or Zoom media server problem
Error code 1001, 1002Account not found or invalid meeting credentials
Error code 3000Can't connect to Zoom service — likely an outage or local network block
Error code 5000, 5003, 5004Firewall blocking Zoom or Zoom service unavailable
"Meeting not found"Meeting ID issue or Zoom API degradation
Stuck at "Joining meeting…"Connection handshake failing — outage or NAT/firewall issue
Audio connects but no videoMedia server degradation for video specifically
Can't schedule meetings in integrationZoom API or webhook degradation

Why Zoom Goes Down

Zoom serves a uniquely demanding traffic pattern — meeting starts cluster around the hour and half-hour marks globally, creating sharp traffic spikes that are hard to absorb.

Traffic spikes. Monday 9 AM across major time zones means millions of meetings starting simultaneously. Zoom's infrastructure must absorb these synchronized spikes without degradation.

Media infrastructure complexity. Video conferencing is inherently more resource-intensive than messaging or file sharing. Zoom operates a global network of media servers to minimize latency. Regional media server issues can affect meeting quality without a full platform outage.

Security incidents. "Zoombombing" attacks surged during the remote work boom. DDoS attempts against Zoom's infrastructure have contributed to some historical incidents.

Dependency on cloud providers. Zoom runs on a mix of cloud providers including AWS and Oracle Cloud. When underlying cloud infrastructure has issues, Zoom can be affected.

Client software issues. Sometimes what looks like a Zoom outage is actually a bug in a specific client version. A bad update can cause widespread connectivity issues that aren't a platform outage but manifest the same way.

What To Do When Zoom Is Down

Before your meeting:

  1. Check Statusfield and status.zoom.us — if there's an active incident, stop troubleshooting locally
  2. Try the browser-based Zoom client at zoom.us/wc/join — it bypasses the desktop app entirely
  3. Have a backup: a Google Meet or Microsoft Teams link in reserve takes 30 seconds to set up and saves meetings from dying mid-outage

During the meeting:

  1. If audio works but video doesn't, turn off video to preserve the call
  2. If you're the host, toggle participants to phone dial-in — Zoom's PSTN infrastructure often stays up even when IP video is degraded
  3. Communicate via Slack, Teams, or email if Zoom Chat is also affected

For IT and administrators:

  1. Check the admin dashboard — component-level status there may be more granular than the public status page
  2. Review firewall and proxy logs — during a Zoom outage, some users may have their traffic rerouted in ways that expose network configuration issues
  3. Alert your users proactively — a quick Slack or email message saying "Zoom is experiencing issues, here's the backup link" prevents a flood of support tickets

Developer Impact: Zoom API and Webhooks

If you're integrating with the Zoom API — for scheduling, recording retrieval, attendance tracking, or LMS integrations — outages hit differently.

Common Zoom API Issues During Outages

Webhook delivery failures. Zoom webhooks (meeting.started, meeting.ended, recording.completed) may stop delivering during API degradation. If your backend depends on these events for workflow triggers, implement a reconciliation job that polls the Zoom API to catch missed events.

OAuth token issues. During partial outages, token refresh endpoints can fail while other endpoints work. Cache your access tokens and handle 401 errors with retry logic rather than failing immediately.

Rate limiting increases. During incidents, Zoom sometimes tightens rate limits to protect infrastructure. Ensure your integration handles 429 Too Many Requests with proper backoff.

import requests
import time
 
def zoom_api_request(endpoint, token, retries=3):
    headers = {"Authorization": f"Bearer {token}"}
    for attempt in range(retries):
        response = requests.get(
            f"https://api.zoom.us/v2/{endpoint}",
            headers=headers
        )
        if response.status_code == 200:
            return response.json()
        elif response.status_code == 429:
            retry_after = int(response.headers.get("Retry-After", 30))
            time.sleep(retry_after)
        elif response.status_code in (500, 503):
            time.sleep(2 ** attempt)
        else:
            response.raise_for_status()
    raise Exception(f"Zoom API request failed after {retries} attempts")

Monitoring Your Zoom Integration

Track Zoom API error rates separately in your monitoring stack. A spike in 5xx errors or webhook delivery failures is often your first signal of a Zoom API incident — before the status page reflects it.

How to Get Instant Zoom Outage Alerts

For teams where Zoom is critical infrastructure, knowing about an incident before your users start calling is the difference between a managed response and chaos.

Monitor Zoom on Statusfield and get alerted the moment any Zoom component changes status. Route notifications to email, Slack, or webhooks — so you can alert your team via a channel that isn't Zoom.

Start monitoring Zoom →


Frequently Asked Questions

Is Zoom down right now?

Check the live status at statusfield.com/services/zoom for real-time Zoom status updated every 5 minutes.

Is Zoom down for everyone or just me?

If status.zoom.us or Statusfield shows an active incident, it's Zoom's infrastructure. If both show operational, your issue is likely local — try the browser client at zoom.us/wc/join, check your firewall, or test from a different network.

Why does Zoom say "Error 5003" or "Error 3000"?

Error 5003 and 3000 typically indicate Zoom can't establish a connection to its servers. This can be a Zoom outage, a local firewall blocking Zoom's ports (TCP 443, UDP 8801-8802), or your network's proxy interfering with Zoom traffic. Check Statusfield first — if Zoom shows operational, the problem is local.

Why is Zoom audio working but video isn't?

Zoom's audio and video are routed differently. Video requires more bandwidth and uses different media servers. If video is failing but audio works, you may be experiencing regional media server degradation (check the status page) or a local bandwidth issue. Try stopping video and using audio-only to preserve the meeting.

My Zoom integration stopped working — is Zoom's API down?

Check the API component specifically at Statusfield. Zoom API degradations don't always coincide with meeting outages. If the API shows healthy, check your OAuth token validity and whether your webhook endpoint is reachable.

How do I get notified when Zoom goes down?

Set up Zoom monitoring on Statusfield. You'll get alerts via email or webhooks the moment Zoom status changes — before the meeting invites start bouncing.

How often does Zoom have outages?

Zoom publishes their full incident history at status.zoom.us. Minor degradations occur multiple times per year. The platform has become significantly more reliable since the rapid scaling period of 2020, but incidents still happen — particularly around major time zones' business hours when traffic peaks.

Does Zoom have an SLA?

Zoom's Business and Enterprise plans include uptime SLAs. Check your specific plan's terms at zoom.us. Standard free accounts do not include SLA commitments.