Back to Status Checker

Help & FAQ

Frequently Asked Questions

How does the status checker work?

Our service performs multiple checks to determine a website's status:

  1. Validates the domain name
  2. Checks DNS resolution
  3. Verifies domain registration
  4. Attempts to connect to the website
  5. Measures response time and analyzes the response

What do the different status colors mean?

Green: Website is up and responding normally
Yellow: Website is up but responding slowly
Red: Website appears to be down or unreachable

What URLs can I check?

You can check any public website. Enter the domain name (e.g., "google.com") or the full URL (e.g., "https://google.com/search"). The service will automatically format the URL correctly.

Understanding URL Components

A URL (Uniform Resource Locator) consists of several components that define how to access a resource on the internet. Here's a breakdown of each part:

https://www.example.com:3000/path/to/page?query=value#section

Scheme (Protocol)

https:// or http://

Defines how the browser should communicate with the website. HTTPS is secure and encrypted, while HTTP is not.

Subdomain

www. or blog. or mail.

An optional prefix to the domain name that can specify different sections or services of a website.

Domain Name

example

The core name of the website, usually representing the brand or organization.

Top-Level Domain (TLD)

.com or .org or .net

The extension that indicates the type of website (.com for commercial, .org for organization, etc.) or country code (.uk, .jp).

Port Number

:3000 or :443 or :80

Optional number that specifies which port to connect to on the server. Standard ports (80 for HTTP, 443 for HTTPS) are usually omitted.

Path

/path/to/page

Specifies the exact location of a page, file, or resource on the website.

Query Parameters

?query=value&name=john

Additional data sent to the server, often used for searches, filters, or tracking.

Fragment (Anchor)

#section

Points to a specific section within the page. This part is processed by the browser and not sent to the server.

When using our status checker, you can enter a URL with or without the scheme, subdomain, or port. Our service will automatically format it correctly before checking the website's status.

Understanding Status Codes

  • 2xx codes: Success (e.g., 200 OK)
  • 3xx codes: Redirection
  • 4xx codes: Client errors (e.g., 404 Not Found)
  • 5xx codes: Server errors

HTTP Status Codes Explained

2xx Success Codes

200 (OK)

The request succeeded. The website is responding normally.

201 (Created)

The request succeeded and a new resource was created.

204 (No Content)

The request succeeded but returns no content.

3xx Redirection Codes

301 (Moved Permanently)

The website has been permanently moved to a new location.

302 (Found)

The website is temporarily redirecting to another location.

304 (Not Modified)

The website hasn't changed since your last visit.

4xx Client Error Codes

400 (Bad Request)

The request was malformed or invalid.

401 (Unauthorized)

Authentication is required to access this website.

403 (Forbidden)

You don't have permission to access this resource.

404 (Not Found)

The requested page or resource doesn't exist.

429 (Too Many Requests)

You've made too many requests in a short time period.

5xx Server Error Codes

500 (Internal Server Error)

The server encountered an unexpected error.

502 (Bad Gateway)

The server received an invalid response from an upstream server.

503 (Service Unavailable)

The server is temporarily unable to handle the request.

504 (Gateway Timeout)

The server didn't receive a timely response from an upstream server.