Toolkitly
One moment…
toolkitly

HTTP Status

All HTTP status codes.

100Continue
1xx

The server has received the request headers and the client should proceed to send the request body.

101Switching Protocols
1xx

The requester has asked the server to switch protocols and the server has agreed to do so.

102Processing
1xx

The server has received and is processing the request, but no response is available yet.

103Early Hints
1xx

Used to return some response headers before final HTTP message.

200OK
2xx

The request has succeeded. The meaning of success varies depending on the HTTP method.

201Created
2xx

The request has been fulfilled and has resulted in one or more new resources being created.

202Accepted
2xx

The request has been accepted for processing, but the processing has not been completed.

203Non-Authoritative Information
2xx

The server successfully processed the request but is returning information from another source.

204No Content
2xx

The server successfully processed the request and is not returning any content.

205Reset Content
2xx

The server successfully processed the request but is not returning any content and requires that the requester reset the document view.

206Partial Content
2xx

The server is delivering only part of the resource due to a range header sent by the client.

300Multiple Choices
3xx

The request has more than one possible response. The user agent should choose one.

301Moved Permanently
3xx

The URL of the requested resource has been changed permanently. The new URL is given in the response.

302Found
3xx

The URI of requested resource has been changed temporarily. Further changes in the URI might be made in the future.

303See Other
3xx

The server sent this response to direct the client to get the requested resource at another URI with a GET request.

304Not Modified
3xx

The resource has not been modified since the version specified by the request headers.

307Temporary Redirect
3xx

The server sends this response to direct the client to get the requested resource at another URI with same method used in the prior request.

308Permanent Redirect
3xx

The resource is now permanently located at another URI, specified by the Location response header.

400Bad Request
4xx

The server cannot process the request due to a client error (e.g., malformed request syntax).

401Unauthorized
4xx

Authentication is required and has failed or has not yet been provided.

402Payment Required
4xx

Reserved for future use. Originally intended for digital payment systems.

403Forbidden
4xx

The client does not have access rights to the content; unlike 401, the client identity is known to the server.

404Not Found
4xx

The server can not find the requested resource. This is one of the most famous status codes.

405Method Not Allowed
4xx

The request method is known by the server but is not supported by the target resource.

406Not Acceptable
4xx

The server cannot produce a response matching the list of acceptable values defined in the request.

407Proxy Authentication Required
4xx

Authentication with the proxy is required.

408Request Timeout
4xx

The server would like to shut down this unused connection.

409Conflict
4xx

The request conflicts with the current state of the server.

410Gone
4xx

The content has been permanently deleted from server, with no forwarding address.

411Length Required
4xx

Server rejects the request because the Content-Length header field is not defined.

412Precondition Failed
4xx

The client has indicated preconditions in its headers which the server does not meet.

413Payload Too Large
4xx

Request entity is larger than limits defined by server.

414URI Too Long
4xx

The URI requested by the client is longer than the server is willing to interpret.

415Unsupported Media Type
4xx

The media format of the requested data is not supported by the server.

416Range Not Satisfiable
4xx

The range specified by the Range header field in the request cannot be fulfilled.

417Expectation Failed
4xx

The expectation indicated by the Expect request header field cannot be met by the server.

418I'm a teapot
4xx

The server refuses the attempt to brew coffee with a teapot (April Fools joke).

422Unprocessable Entity
4xx

The request was well-formed but was unable to be followed due to semantic errors.

423Locked
4xx

The resource that is being accessed is locked.

424Failed Dependency
4xx

The request failed due to failure of a previous request.

425Too Early
4xx

The server is unwilling to risk processing a request that might be replayed.

426Upgrade Required
4xx

The client should switch to a different protocol.

428Precondition Required
4xx

The origin server requires the request to be conditional.

429Too Many Requests
4xx

The user has sent too many requests in a given amount of time ("rate limiting").

431Request Header Fields Too Large
4xx

The server is unwilling to process the request because its header fields are too large.

451Unavailable For Legal Reasons
4xx

The user agent requested a resource that cannot legally be provided.

500Internal Server Error
5xx

The server has encountered a situation it does not know how to handle.

501Not Implemented
5xx

The request method is not supported by the server and cannot be handled.

502Bad Gateway
5xx

The server, while working as a gateway, got an invalid response from the upstream server.

503Service Unavailable
5xx

The server is not ready to handle the request, usually due to maintenance or overload.

504Gateway Timeout
5xx

The server is acting as a gateway and cannot get a response in time.

505HTTP Version Not Supported
5xx

The HTTP version used in the request is not supported by the server.

506Variant Also Negotiates
5xx

The server has an internal configuration error.

507Insufficient Storage
5xx

The server is unable to store the representation needed to complete the request.

508Loop Detected
5xx

The server detected an infinite loop while processing the request.

510Not Extended
5xx

Further extensions to the request are required for the server to fulfill it.

511Network Authentication Required
5xx

The client needs to authenticate to gain network access.