Online Toolbox/Developer/HTTP Status Codes

HTTP Status Codes

Look up HTTP status codes.

HTTP Status Code Lookup

100ContinueContinue
101Switching ProtocolsSwitching Protocols
200OKOK
201CreatedCreated
202AcceptedAccepted
204No ContentNo Content
206Partial ContentPartial Content
301Moved PermanentlyMoved Permanently
302FoundFound
304Not ModifiedNot Modified
307Temporary RedirectTemporary Redirect
308Permanent RedirectPermanent Redirect
400Bad RequestBad Request
401UnauthorizedUnauthorized
403ForbiddenForbidden
404Not FoundNot Found
405Method Not AllowedMethod Not Allowed
408Request TimeoutRequest Timeout
409ConflictConflict
410GoneGone
413Payload Too LargePayload Too Large
414URI Too LongURI Too Long
415Unsupported Media TypeUnsupported Media Type
418I'm a TeapotI'm a Teapot
422Unprocessable EntityUnprocessable Entity
429Too Many RequestsToo Many Requests
500Internal Server ErrorInternal Server Error
501Not ImplementedNot Implemented
502Bad GatewayBad Gateway
503Service UnavailableService Unavailable
504Gateway TimeoutGateway Timeout
505HTTP Version Not SupportedHTTP Version Not Supported

Description

HTTP Status Code reference tool lists common HTTP response codes with descriptions, supporting search by code and description.

Use Cases

1

API development: Look up status codes for API responses

2

Web debugging: Understand HTTP error responses

3

Backend development: Choose appropriate status codes

4

Frontend development: Handle different response codes

5

Learning: Understand HTTP protocol status codes

Instructions

1

Browse the list of HTTP status codes

2

Use the search box to filter by code or description

3

Click on a code to see detailed information

4

View category groups: 1xx, 2xx, 3xx, 4xx, 5xx

5

Copy status code for use in your code

Notes

  • Covers all standard HTTP/1.1 and HTTP/2 status codes
  • Includes common custom status codes
  • Updated with latest HTTP specifications

FAQ

Q

What do the status code categories mean?

A

1xx: Informational, 2xx: Success, 3xx: Redirection, 4xx: Client Error, 5xx: Server Error.

Q

Which status code should I use for "not found"?

A

Use 404 Not Found when the requested resource does not exist.