Developer Tools

HTTP Status Code Tester

Each link below returns a real HTTP response with the corresponding status code. Useful for testing monitors, webhooks, alerting rules, and client error handling.

2xx — Success

200

OK

Standard successful response.

Test
201

Created

Resource was successfully created.

Test
204

No Content

Request succeeded but there is no body to return.

Test

3xx — Redirection

301

Moved Permanently

Resource has permanently moved to a new URL.

Test
302

Found

Resource temporarily located at a different URL.

Test

4xx — Client Errors

400

Bad Request

The server could not understand the request.

Test
401

Unauthorized

Authentication is required and has failed or not been provided.

Test
403

Forbidden

Server understood the request but refuses to authorise it.

Test
404

Not Found

The requested resource could not be found.

Test
405

Method Not Allowed

The HTTP method is not supported for this resource.

Test
408

Request Timeout

Server timed out waiting for the request.

Test
410

Gone

Resource is permanently gone and no forwarding address is known.

Test
422

Unprocessable Entity

Request is well-formed but contains semantic errors.

Test
429

Too Many Requests

Client has sent too many requests in a given time window.

Test

5xx — Server Errors

500

Internal Server Error

A generic error occurred on the server.

Test
502

Bad Gateway

Server received an invalid response from an upstream server.

Test
503

Service Unavailable

Server is temporarily unable to handle the request.

Test
504

Gateway Timeout

Upstream server failed to respond in time.

Test

Direct URL pattern

https://statuseagle.com/status/{code}

Replace {code} with any supported status code above.