📖 Guide

HTTP Status Codes — Complete Reference

Every standard HTTP status code with descriptions, use cases, and common patterns for web developers.

72 commands across 6 categories

1xx Informational

CommandDescription
100 Continue
Server received request headers; client should proceed to send the body
101 Switching Protocols
Server is switching protocols as requested by the client (e.g., to WebSocket)
102 Processing
Server has received and is processing the request, but no response is available yet (WebDAV)
103 Early Hints
Used to return some response headers before final HTTP message, allowing preloading of resources

2xx Success

CommandDescription
200 OK
Standard success response. Body contains the requested resource
201 Created
e.g. POST /api/users -> 201 with Location header
Request succeeded and a new resource was created. Typically returned after POST/PUT
202 Accepted
Request accepted for processing, but processing is not yet complete (async operations)
203 Non-Authoritative Information
Response from a transforming proxy; metadata differs from origin server
204 No Content
e.g. DELETE /api/users/123 -> 204
Request succeeded but no body returned. Common for DELETE or PUT responses
205 Reset Content
Request succeeded; client should reset the document view (e.g., clear a form)
206 Partial Content
e.g. Range: bytes=0-1023 -> 206 with Content-Range header
Server is delivering part of the resource due to a Range header
207 Multi-Status
Conveys information about multiple resources where multiple status codes might be appropriate (WebDAV)
208 Already Reported
Members of a DAV binding have already been enumerated and are not included again (WebDAV)
226 IM Used
Server has fulfilled a GET request with instance-manipulations applied to the current instance

3xx Redirection

CommandDescription
300 Multiple Choices
Multiple possible responses; user or user agent should choose one
301 Moved Permanently
e.g. Location: https://new-domain.com/page
Resource has been permanently moved to a new URL. Search engines update their links
302 Found
Resource temporarily at a different URI. Client should continue using the original URI for future requests
303 See Other
Server redirects to a different resource via GET, typically after a POST operation
304 Not Modified
e.g. If-None-Match: "etag" -> 304 (use cached version)
Resource has not been modified since last request. Used with caching headers (ETag, If-Modified-Since)
305 Use Proxy
Requested resource must be accessed through the proxy in the Location header (deprecated)
307 Temporary Redirect
Like 302 but guarantees the HTTP method will NOT change (POST stays POST)
308 Permanent Redirect
Like 301 but guarantees the HTTP method will NOT change (POST stays POST)

4xx Client Error

CommandDescription
400 Bad Request
Server cannot process the request due to malformed syntax, invalid framing, or deceptive routing
401 Unauthorized
Authentication is required and has failed or not been provided. Include WWW-Authenticate header
402 Payment Required
Reserved for future use. Sometimes used for paywalled content or API rate limiting
403 Forbidden
Server understood the request but refuses to authorize it. Authentication won't help
404 Not Found
Requested resource could not be found on the server
405 Method Not Allowed
e.g. Allow: GET, POST
HTTP method is not supported for the requested resource. Must include Allow header
406 Not Acceptable
Server cannot produce a response matching the Accept headers sent by the client
407 Proxy Authentication Required
Client must first authenticate itself with the proxy
408 Request Timeout
Server timed out waiting for the request from the client
409 Conflict
e.g. POST /users with duplicate email -> 409
Request conflicts with the current state of the resource (e.g., edit conflicts, duplicate entries)
410 Gone
Resource is permanently gone and will not be available again. Unlike 404, this is intentional
411 Length Required
Server requires a Content-Length header in the request
412 Precondition Failed
One or more conditions in the request headers evaluated to false (e.g., If-Match)
413 Content Too Large
Request body is larger than the server is willing to process
414 URI Too Long
URI provided was too long for the server to process
415 Unsupported Media Type
e.g. Sending XML when only JSON is accepted -> 415
Server does not support the media type of the request body
416 Range Not Satisfiable
Range specified in the Range header cannot be fulfilled
417 Expectation Failed
Server cannot meet the requirements of the Expect request header
418 I'm a Teapot
Returned by teapots asked to brew coffee (RFC 2324). Used humorously as an Easter egg
421 Misdirected Request
Request was directed at a server that cannot produce a response
422 Unprocessable Content
e.g. POST /users with invalid email format -> 422
Request was well-formed but contained semantic errors (e.g., validation failures)
423 Locked
Resource being accessed is locked (WebDAV)
424 Failed Dependency
Request failed because it depended on another request that failed (WebDAV)
425 Too Early
Server unwilling to process a request that might be replayed (TLS Early Data)
426 Upgrade Required
Server refuses the request using the current protocol; client must upgrade (e.g., to TLS)
428 Precondition Required
Server requires the request to be conditional (e.g., include If-Match header)
429 Too Many Requests
e.g. Retry-After: 60
Client has sent too many requests in a given time period (rate limiting)
431 Request Header Fields Too Large
Server refuses the request because headers are too large
451 Unavailable For Legal Reasons
Resource is unavailable due to legal demands (censorship, court order)

5xx Server Error

CommandDescription
500 Internal Server Error
Generic server error when no more specific message is suitable
501 Not Implemented
Server does not support the functionality required to fulfill the request
502 Bad Gateway
Server acting as a gateway received an invalid response from the upstream server
503 Service Unavailable
e.g. Retry-After: 120
Server is currently unable to handle the request (overloaded or under maintenance)
504 Gateway Timeout
Server acting as a gateway did not receive a timely response from the upstream server
505 HTTP Version Not Supported
Server does not support the HTTP version used in the request
506 Variant Also Negotiates
Transparent content negotiation results in a circular reference
507 Insufficient Storage
Server is unable to store the representation needed to complete the request (WebDAV)
508 Loop Detected
Server detected an infinite loop while processing the request (WebDAV)
510 Not Extended
Further extensions to the request are required for the server to fulfill it
511 Network Authentication Required
Client needs to authenticate to gain network access (captive portals)

Common Patterns

CommandDescription
REST: GET -> 200
Successful resource retrieval
REST: POST -> 201
Successful resource creation with Location header
REST: PUT -> 200 or 204
Successful update (200 with body, 204 without)
REST: DELETE -> 204
Successful deletion, no body returned
Auth: 401 vs 403
401 = not logged in (can retry with credentials). 403 = logged in but not authorized (retrying won't help)
Redirect: 301 vs 308
Both permanent. 301 may change POST to GET. 308 preserves the HTTP method
Redirect: 302 vs 307
Both temporary. 302 may change POST to GET. 307 preserves the HTTP method
Validation: 400 vs 422
400 = malformed request (bad JSON). 422 = well-formed but semantically invalid (failed validation)
Caching: ETag + 304
Client sends If-None-Match with ETag. Server returns 304 if unchanged, saving bandwidth
Rate Limiting: 429 + Retry-After
Always include Retry-After header to tell clients when to retry

More Guides

🌿
Git Commands
Complete Git command reference — from basics to advanced workflows. Searchable, with examples.
📝
Vim Commands
Complete Vim/Vi command reference — modes, motions, editing, search, and advanced features.
🐳
Docker Commands
Complete Docker & Docker Compose command reference — containers, images, volumes, networks, and orchestration.
🔤
Regex Reference
Complete regular expression reference — syntax, patterns, quantifiers, groups, lookaheads, and common recipes.
🐧
Linux Commands
Complete Linux/Bash command reference — file management, text processing, networking, system admin, and shell scripting.
☸️
Kubernetes Commands
Complete Kubernetes & kubectl command reference — pods, deployments, services, configmaps, and cluster management.
🐍
Python Reference
Complete Python reference — syntax, data structures, string methods, file I/O, comprehensions, and common patterns.
🗃️
SQL Reference
Complete SQL reference — queries, joins, aggregation, subqueries, indexes, and database management.
🌐
Nginx Reference
Complete Nginx configuration reference — server blocks, locations, proxying, SSL, load balancing, and caching.
🔐
SSH Commands
Complete SSH reference — connections, key management, tunneling, config, SCP/SFTP, and security hardening.
👷
Jenkins Reference
Complete Jenkins reference — pipeline syntax, Jenkinsfile, plugins, CLI, agents, and CI/CD patterns.
📨
HTTP Headers Reference
Complete HTTP headers reference — request headers, response headers, caching, security, CORS, and content negotiation. Searchable, with examples.
🐘
PostgreSQL Reference
Comprehensive PostgreSQL reference — from connection basics to advanced features like JSONB, full-text search, window functions, and performance tuning.
Async Patterns Reference
Multi-language async/concurrency patterns — JavaScript, Python, Go, Rust, Java, and universal concurrency patterns.
📡
Protobuf & gRPC Reference
Comprehensive reference for Protocol Buffers (proto3) and gRPC — message definitions, services, streaming, and common patterns.
📚
JS Array Methods
Complete JavaScript Array methods reference — creating, searching, transforming, sorting, iterating, and common patterns. Searchable, with examples.
🌊
Tailwind CSS Reference
Complete Tailwind CSS reference — layout, spacing, typography, colors, responsive design, states, and common patterns. Searchable, with examples.
GraphQL Reference
Complete GraphQL reference — schema definition, types, queries, mutations, directives, fragments, and common patterns. Searchable, with examples.
💻
VS Code Shortcuts
Complete VS Code keyboard shortcuts — editing, navigation, search, multi-cursor, terminal, debug, and more. Searchable, with Cmd/Ctrl notation.
🔲
CSS Grid Reference
Complete CSS Grid reference — container properties, item placement, grid functions, and common layout patterns. Searchable, with examples.
📦
CSS Flexbox Reference
Complete CSS Flexbox reference — container properties, item properties, and common layout patterns. Searchable, with examples.
⚛️
React Hooks Reference
Complete React Hooks reference — useState, useEffect, useContext, custom hooks, and common patterns. Searchable, with examples.
🔷
TypeScript Reference
Complete TypeScript reference — types, interfaces, generics, utility types, and advanced patterns. Searchable, with examples.
☁️
AWS CLI Reference
Complete AWS CLI reference — EC2, S3, IAM, Lambda, ECS, RDS, CloudFormation, and common operations.
🐹
Go Reference
Complete Go (Golang) reference — syntax, types, functions, concurrency, error handling, and common patterns.
💠
PowerShell Reference
Complete PowerShell reference — cmdlets, pipelines, scripting, file operations, remote management, and Active Directory.
💾
Redis Commands
Complete Redis command reference — strings, hashes, lists, sets, sorted sets, pub/sub, transactions, and server management.
🏗️
Terraform Commands
Complete Terraform reference — init, plan, apply, state management, modules, workspaces, and HCL syntax.
⚙️
Ansible Commands
Complete Ansible reference — playbooks, modules, inventory, roles, vault, and ad-hoc commands.
🟨
JavaScript
Complete JavaScript reference — variables, types, operators, strings, arrays, objects, functions, async, DOM, ES6+, and more.
🎨
CSS
Complete CSS reference — selectors, box model, positioning, typography, animations, media queries, custom properties, and more.
📄
HTML
Complete HTML reference — document structure, text content, forms, media, semantic elements, accessibility, and more.
Java
Complete Java reference — data types, strings, collections, OOP, interfaces, exceptions, file I/O, streams, lambdas, and more.
💻
Bash
Complete Bash reference — variables, strings, arrays, conditionals, loops, functions, file tests, I/O redirection, process management, and more.
🦀
Rust
Comprehensive Rust language cheat sheet covering ownership, traits, pattern matching, concurrency, and more.
📝
Markdown
Complete Markdown syntax reference for headings, formatting, links, tables, code blocks, and extensions.
📋
YAML
YAML syntax reference covering scalars, collections, anchors, multi-line strings, and common patterns.
🌐
Curl
Curl command-line reference for HTTP requests, authentication, file transfers, debugging, and common API patterns.
Cron
Cron scheduling reference covering syntax, field values, crontab management, and common schedule patterns.
🖥️
Tmux
Terminal multiplexer for managing multiple sessions, windows, and panes from a single terminal.
🔧
Awk
Powerful text processing language for pattern scanning, data extraction, and report generation.
✂️
Sed
Stream editor for filtering and transforming text, line by line.
🔍
Find
Search for files and directories in a directory hierarchy with powerful filtering options.
🔎
Grep
Search text using patterns. Filter lines from files, command output, or streams with regular expressions.
🐘
PHP
Complete PHP cheat sheet covering syntax, OOP, arrays, PDO, and modern PHP 8.x features.
⚙️
C
Complete C programming cheat sheet covering syntax, pointers, memory management, and standard library.
🔷
C++
Complete C++ cheat sheet covering STL containers, OOP, templates, smart pointers, and modern C++ features.
🐬
MySQL
Complete MySQL cheat sheet covering queries, joins, indexes, transactions, and administration.
💅
Sass
Complete Sass/SCSS cheat sheet covering variables, mixins, functions, nesting, and modern module system.
🔐
Chmod
Linux file permission commands and patterns for chmod.
🔢
NumPy
Essential NumPy commands for array manipulation and numerical computing in Python.
🐼
Pandas
Pandas cheat sheet for data manipulation, analysis, and transformation in Python.
🎯
Dart
Dart language cheat sheet covering syntax, types, OOP, null safety, and async patterns.
🔺
Laravel
Laravel PHP framework cheat sheet for routing, Eloquent, Blade, Artisan, and more.
🟩
Node.js
Comprehensive Node.js runtime reference covering modules, file system, HTTP, streams, and more.
Next.js
Next.js App Router reference covering routing, data fetching, server components, and deployment.
🍃
MongoDB
MongoDB reference covering CRUD operations, aggregation, indexes, and administration.
🔥
Firebase
Firebase reference covering Authentication, Firestore, Realtime Database, Cloud Functions, and Hosting.
🐳
Docker Compose
Docker Compose reference covering CLI commands, service configuration, networking, volumes, and more.
💲
jQuery
Quick reference for jQuery selectors, DOM manipulation, events, AJAX, and more.
📐
LaTeX
Quick reference for LaTeX document structure, math mode, formatting, and common packages.
🎯
XPath
Quick reference for XPath expressions, axes, predicates, and functions for XML/HTML querying.
Emmet
Quick reference for Emmet abbreviations for lightning-fast HTML and CSS coding.
📦
TOML
Quick reference for TOML configuration file syntax, types, tables, and common patterns.
💎
Prisma
Complete Prisma ORM cheat sheet — schema, queries, migrations, and CLI.
🤖
GitHub Actions
Complete GitHub Actions cheat sheet — workflows, triggers, jobs, and CI/CD patterns.
📦
npm
Complete npm cheat sheet — package management, scripts, publishing, and configuration.
Supabase
Complete Supabase cheat sheet — auth, database, realtime, storage, and edge functions.
🪶
Apache
Complete Apache HTTP Server cheat sheet — virtual hosts, modules, rewrite rules, and SSL.

📖 Free, searchable command reference. Bookmark this page for quick access.