HTTP Response Status Code
This page lists some common HTTP Response Status Codes I have frequently found in different works.
Last updated
This page lists some common HTTP Response Status Codes I have frequently found in different works.
Last updated
HTTP response status codes signify the completion status of a particular HTTP request, categorized into five classes.
HTTP response status codes fall into five distinct classes or categories. The initial digit of the status code determines the response class, while the final two digits lack any classification role. The standard defines these five classes:
1xx informational response
โ the request was received, continuing process
2xx successful
โ the request was successfully received, understood, and accepted
3xx redirection
โ further action needs to be taken in order to complete the request
4xx client error
โ the request contains bad syntax or cannot be fulfilled
5xx server error
โ the server failed to fulfill a valid request
100 Continue
This interim response indicates that the client should continue the request or ignore the response if the request is already finished.
101 Switching Protocols
The requester has asked the server to switch protocols and the server has agreed to do so.
200 OK
The request succeeded. The result meaning of "success" depends on the HTTP method.
201 Created
The request succeeded, and a new resource was created as a result. This is typically the response sent after POST
requests, or some PUT
requests.