Website Down Detector
Check if a website is down for everyone or just you. Diagnostic tool for DNS, HTTP status codes, and server latency.
Enter a URL to check
Real-time availability diagnostic
Recent Checks
About
This tool performs a real-time diagnostic analysis of a target website's availability using a hybrid checking mechanism. It distinguishes between a Local Outage (specific to your network/ISP) and a Global Outage (server-side failure).
The reachability algorithm measures the Round Trip Time (RTT) and interprets the HTTP Response Code (e.g., 200 vs 503). By attempting connections from both your browser and an external relay, we calculate the Probability of downtime with high accuracy.
Formulas
The availability status S is determined by the boolean conjunction of Local Reachability (L) and Global Reachability (G).
Latency (RTT) is calculated as the differential between the request timestamp (tstart) and response timestamp (tend).
Reference Data
| Code | Status | Meaning |
|---|---|---|
| 200 | OK | The server is up and returned content successfully. |
| 301 | Moved | Permanent redirect. Usually considers the site "UP". |
| 403 | Forbidden | Server is up but refusing access (firewall/permission). |
| 404 | Not Found | Server is up, but the specific page is missing. |
| 408 | Timeout | Server took too long to process the request. |
| 500 | Server Error | Internal error. The server is technically "UP" but broken. |
| 502 | Bad Gateway | Upstream server sent an invalid response. |
| 503 | Unavailable | Server is overloaded or down for maintenance. |
| 504 | Gateway Timeout | Upstream server failed to respond in time. |
| ERR | Connection Refused | DNS failure or total network unreachable. |