Skip to content
uxTools
Developer

HTTP Status Code Reference

Look up any HTTP status code in seconds. Color-coded by category, with plain-English explanations, common scenarios, related codes, and copy-ready return snippets for Express, Next.js, Go, Flask, Axum, and curl.

Codes documented

62

Standard + WebDAV + commonly used.

Most common

16

The 16 you'll meet daily.

Looking up

200 OK

Click a row or paste a code.

Find a status code

Search by number, name, or scenario. Type a number to jump straight to it.

Press / to focus search, type a number to jump.

Most common in the wild

The 10–16 codes you'll see every day.

Status codes

62

Click any row to expand details.

1xx Informational

2xx Success

3xx Redirect

4xx Client Error

5xx Server Error

200OKSuccess

Standard success response with a body.

The request succeeded and the response body carries the result. The exact payload depends on the method: a representation for GET, the result of the action for POST/PUT, status info for DELETE.

RFC

RFC 9110 §15.3.1

Spec

Standard

Returns body

Yes

Cacheable

Yes

Common scenarios

  • GET returning a resource
  • Successful API call with JSON payload

What to do

Consume the response body.

Related codes

Return this status

Drop-in snippets for popular HTTP stacks.

curl example