Error Codes
Error Codes
🔵 100 Continue → The server has received the request headers, and the client should proceed.
🔵 101 Switching Protocols → The server agrees to switch protocols as requested by the client.
🔵 102 Processing → The server is processing the request, but no response is available yet.
🔵 103 Early Hints → Used to return some headers before the final HTTP response.
✅ 200 OK → The request was successful, and the response contains the requested data.
✅ 201 Created → The request was successful, and a new resource was created.
✅ 202 Accepted → The request was received but hasn’t been processed yet.
✅ 203 Non-Authoritative Information → The response comes from a third-party source.
✅ 204 No Content → The request was successful, but there's no content in the response.
✅ 205 Reset Content → The server processed the request, but the client should reset its view.
✅ 206 Partial Content → Used when serving partial content due to a range request.
🔥 500 Internal Server Error → A generic error when the server fails unexpectedly.
🔥 501 Not Implemented → The server does not support the request method.
🔥 502 Bad Gateway → The server received an invalid response from an upstream server.
🔥 503 Service Unavailable → The server is overloaded or under maintenance.
🔥 504 Gateway Timeout → The upstream server did not respond in time.
🔥 505 HTTP Version Not Supported → The server doesn’t support the HTTP version used in
the request.
🔥 506 Variant Also Negotiates → A server misconfiguration caused a loop.
🔥 507 Insufficient Storage → The server cannot store the request.
🔥 508 Loop Detected → The request caused an infinite loop in the server.
🔥 510 Not Extended → Further extensions to the request are required.
🔥 511 Network Authentication Required → The client must authenticate to access the
network.