Status Code
Last updated
Last updated
HTTP status codes are divided into five categories –
Informational (100-199): The server has received part of the request and expects more information.
Successful (200-299): The request was successful, and the server has returned the requested data.
Redirection (300-399): The requested resource has been moved elsewhere.
Client Error (400-499): There is an issue with the client's request.
Server Error (500-599): The server encountered an issue while processing the request.
100 Continue
This interim response indicates that the client should continue the request or ignore the response if the request is already finished.
200 OK
The request succeeded. The result meaning of "success" depends on the HTTP method.
301 Moved Permanently
The requested resource has been permanently moved to a new URL.
302 Found
The requested resource has been temporarily moved to a different URL.
400 Bad Request
The server could not understand the request due to incorrect syntax.
401 Unauthorized
Authentication is required for the request, and the user is not authenticated.
403 Forbidden
The server understood the request but refused to authorize it.
404 Not Found
The requested resource was not found at the specified URL.
405 Method not Allowed
The method specified in the request is not allowed for the resource.
500 Internal Server Error
The server encountered an error and could not process the request.
503 Service Unavailable
The server is temporarily unable to handle the request due to overload or maintenance.