712Tools

HTTP Status Code Reference

Search and browse every HTTP status code with common causes

🔒 100% in-browser🆓 Free forever⚡ No sign-up
1xx Informational
100Continue

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

101Switching Protocols

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

102Processing

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

103Early Hints

Used to return some response headers before the final HTTP message.

2xx Success
200OK

The request succeeded. Response depends on method: GET returns the resource, POST returns result of the action.

201Created

The request succeeded and a new resource was created. Typically the response for POST requests.

202Accepted

The request has been received but not yet acted upon. Common in async / batch processing.

204No Content

The request succeeded but no content is returned. Common for DELETE and PUT responses.

206Partial Content

Used to deliver a range of a resource — for resumable downloads and video streaming.

3xx Redirection
301Moved Permanently

The resource has been moved permanently to a new URL. Search engines will update indexes.

302Found

The resource is temporarily at a different URL. Original URL should still be used for future requests.

304Not Modified

The cached version is still valid. Used with If-Modified-Since or ETag headers.

307Temporary Redirect

Like 302, but the method (POST/PUT) must not change on redirect.

308Permanent Redirect

Like 301, but the method must not change on redirect.

4xx Client Error
400Bad Request

The server can't process the request due to a client error (malformed syntax, invalid JSON, missing fields).

401Unauthorized

Authentication is required and has failed or not been provided. Send an Authorization header.

402Payment Required

Reserved for future use. Sometimes used by APIs to indicate quota / billing issues.

403Forbidden

The server understood the request but refuses to authorize it. Different from 401 — auth won't help.

404Not Found

The server can't find the requested resource. Check the URL and route definitions.

405Method Not Allowed

The HTTP method is not supported for this resource. Check the Allow response header.

408Request Timeout

The server timed out waiting for the request. Client may retry without modifications.

409Conflict

The request conflicts with current state — commonly a version conflict or duplicate resource.

410Gone

The resource is permanently gone. Stronger than 404 — signals the removal is intentional.

413Payload Too Large

The request body exceeds the server's size limit. Check nginx/gateway client_max_body_size.

415Unsupported Media Type

The Content-Type isn't supported. Check the Content-Type header.

418I'm a teapot

An April Fools' joke from RFC 2324. Occasionally used as a placeholder or easter egg.

422Unprocessable Entity

The request is well-formed but semantically invalid. Very common in JSON APIs for validation errors.

429Too Many Requests

Rate limit exceeded. Check the Retry-After header for how long to wait.

5xx Server Error
500Internal Server Error

A generic error indicating something went wrong on the server. Check server logs.

501Not Implemented

The server doesn't support the functionality required to fulfill the request.

502Bad Gateway

The server, acting as a gateway, received an invalid response from an upstream server.

503Service Unavailable

The server is not ready to handle the request — commonly during maintenance or overload.

504Gateway Timeout

The server, acting as a gateway, did not get a response in time from the upstream server.

505HTTP Version Not Supported

The server does not support the HTTP protocol version used in the request.

How it works

  1. 1
    Type a code or keyword

    Try '429' for rate limits, 'auth' for authorization codes, or 'gateway' for upstream errors.

  2. 2
    Read the description

    Each entry explains what the code means and the common causes in real APIs.

  3. 3
    Bookmark for later

    The list is fully static — a fast reference next to your terminal.

About HTTP Status Code Reference

Free HTTP status code lookup. Search by number (404), name (Unauthorized), or keyword (rate limit) to see every 1xx–5xx status code, what it means, and common causes. A quick reference for API debugging and web development. HTTP Status Code Reference on 712 Tools runs entirely inside your browser using modern JavaScript APIs — no server ever sees your data. That means instant results, complete privacy, and no upload limits.

Whether you need to search and browse every http status code with common causes for a debugging session, a quick sanity check, or a production incident, this tool is free to use as many times as you need. There are no watermarks, no sign-up, and no ads inside the tool itself.

Frequently asked questions

What's the difference between 401 and 403?

401 means auth is missing or invalid — try re-authenticating. 403 means the server understood who you are but you're not allowed — auth won't fix it.

When should APIs use 422 vs 400?

400 for malformed syntax (invalid JSON). 422 for well-formed but semantically invalid input (missing required field, wrong value type). Many modern JSON APIs prefer 422 for validation errors.

What does 418 I'm a teapot mean?

An April Fools' joke from RFC 2324. Some sites use it as a placeholder or easter egg — no real API should return it.

Read more