What is HTTP Status Codes Reference Online?
HTTP status codes are three-digit numbers returned by servers to indicate request outcome. 1xx = informational, 2xx = success, 3xx = redirection, 4xx = client error, 5xx = server error. Essential knowledge for API development and debugging.
How to Use HTTP Status Codes Reference Online
- Browse by category or search for a specific code.
- Each entry includes meaning, common causes, and usage context.
Example
Status code lookup
Input
404Output
Not Found — Resource does not exist at this URLFrequently Asked Questions
Difference between 401 and 403?
401 Unauthorized: authentication required (no credentials). 403 Forbidden: authenticated but not permitted.
When to use 422 vs 400?
400 Bad Request: malformed syntax (invalid JSON). 422 Unprocessable Entity: valid syntax with semantic errors (missing required field).