AI

Is ChatGPT down? How to check OpenAI status in 30 seconds

6 min read · Published Jul 13, 2026
Contents · 7 sections
  1. ChatGPT is "down" in four different ways
  2. The 30-second check
  3. Outage or rate limit? Read the error
  4. The app and the API fail independently
  5. Symptom → cause → action
  6. What to do while ChatGPT is actually down
  7. FAQ

When ChatGPT spins forever, shows "A network error occurred," or the API starts returning errors mid-run, the useful question isn't "is it broken?" — it's which kind of broken. OpenAI can be fully down, degraded in one region, rate-limiting your account specifically, or perfectly healthy while your own network drops the connection. Each one has a different fix, and you can tell them apart in about 30 seconds.

ChatGPT is "down" in four different ways

  1. Global outage — OpenAI's platform is down for everyone. Both chatgpt.com and the API fail worldwide.
  2. Partial / regional degradation — elevated errors or slow responses for some users; others are fine. Common during capacity spikes after a new model launch.
  3. Rate limit (HTTP 429) — the service is up, but it's refusing your requests because you've exceeded your quota or hit a burst limit. This looks like an outage but isn't one.
  4. Local issue — your network, VPN, a browser extension, or a corporate firewall is blocking the connection while OpenAI is healthy.

The 30-second check

Run these in order — cheapest test first:

  1. Multi-region probe. Check chat.openai.com (or api.openai.com) from US East, US West, Europe, and Asia at once. If all four fail, it's a confirmed global outage. If some pass and some fail, it's regional. If all four pass, OpenAI is up and the problem is on your side.
  2. Read the publisher feed. Our OpenAI status page mirrors OpenAI's own incident feed, so you can see whether they've acknowledged an incident and which component (ChatGPT, the API, or the Playground) it affects.
  3. Check the AI hub. The AI provider status board shows OpenAI next to Anthropic, Google, Groq, and others — handy for telling "OpenAI is down" apart from "the whole AI layer is having a bad day."

Outage or rate limit? Read the error

The single most misdiagnosed ChatGPT problem is a rate limit mistaken for an outage. The HTTP status code settles it:

The app and the API fail independently

chatgpt.com (the consumer app) and api.openai.com (the developer API) run on shared infrastructure but have separate front doors, and OpenAI's status page reports them as distinct components. It's common for the API to be degraded while the web app is fine, or vice versa. If your app works but your integration is erroring, probe api.openai.com specifically rather than assuming the whole platform is down.

Symptom → cause → action

SymptomLikely causeWhat to do
All 4 regions failGlobal outageWait. Watch the OpenAI feed for an ETA.
Some regions failRegional / capacityRetry, or route through a healthy region.
429 in the APIRate limit (up)Exponential backoff; check your usage tier.
App works, API errorsAPI-only degradationProbe api.openai.com directly.
All regions pass, only you failLocal / networkTry another network, disable VPN/extensions.

What to do while ChatGPT is actually down

If the multi-region check confirms a global outage, there's no client-side fix — but you can (a) bookmark this page and re-check every few minutes, (b) fall back to another provider on the AI hub if your workflow allows it, and (c) if you're building on the API, make sure your code treats 5xx and 429 as retryable with backoff so a short blip doesn't take your own app down with it.

FAQ

Is ChatGPT down for everyone or just me?

Run a multi-region check on chat.openai.com. If all four regions fail the same probe, it's down for everyone. If they all succeed, the outage is local to your network, browser, or DNS — not OpenAI. A single check from your own laptop can't tell those apart, which is why the regional pattern matters.

Why does ChatGPT say "network error" but the site loads?

That message usually means a long streaming response got cut off — the page loaded, but the connection holding the model's answer dropped. It's frequently local (flaky Wi-Fi, a VPN, or an aggressive extension) rather than an OpenAI outage. Retry once; if it persists across a different network, then check OpenAI's status.

Does a 429 mean OpenAI is down?

No. A 429 means the service is up and deliberately refusing your requests because you've exceeded a rate or quota limit. It's the opposite of an outage — the server is healthy enough to enforce limits. Back off and retry, and review your account's rate limits if it keeps happening.

Share 𝕏 Twitter LinkedIn
Keep reading

← All notes & guides