Developer Utilities
HTTP Status Code Lookup
A searchable reference for every status code you'll actually encounter, without paging through a spec.
FreeNo sign-upRuns in your browser
| Code | Name | Meaning |
|---|---|---|
| 200 | OK | The request succeeded. |
| 201 | Created | The request succeeded and a new resource was created. |
| 204 | No Content | Succeeded, with no response body. |
| 301 | Moved Permanently | The resource has permanently moved to a new URL. |
| 302 | Found | The resource temporarily resides at a different URL. |
| 304 | Not Modified | The cached version is still valid. |
| 400 | Bad Request | The server couldn't understand the request due to invalid syntax. |
| 401 | Unauthorized | Authentication is required and has failed or not been provided. |
| 403 | Forbidden | The server understood the request but refuses to authorise it. |
| 404 | Not Found | The requested resource couldn't be found. |
| 405 | Method Not Allowed | The request method isn't supported for this resource. |
| 409 | Conflict | The request conflicts with the current state of the resource. |
| 410 | Gone | The resource is permanently gone, with no forwarding address. |
| 422 | Unprocessable Entity | The request was well-formed but semantically invalid. |
| 429 | Too Many Requests | The client has sent too many requests in a given time. |
| 500 | Internal Server Error | A generic server-side error occurred. |
| 502 | Bad Gateway | An upstream server returned an invalid response. |
| 503 | Service Unavailable | The server is temporarily unable to handle the request. |
| 504 | Gateway Timeout | An upstream server failed to respond in time. |
19 of 19 rows
How it works
- 1Type a code or keyword
- 2Matching status codes filter instantly
- 3Read the plain-English meaning
Who this is for
- Looking up what an unfamiliar status code means
- Deciding which status code to return from an API
- Quick reference while writing error handling
More tools
More in Developer Utilities
JSON Formatter & Validator
Formats, validates and beautifies JSON with clear error locations.
Developer Utilities
JSON Minifier
Strips whitespace from JSON to reduce payload size.
Developer Utilities
JSON to CSV Converter
Converts a JSON array of objects into a downloadable CSV file.
Developer Utilities
CSV to JSON Converter
Converts CSV data into a JSON array of objects.
Developer Utilities
CSV Cleaner
Trims whitespace, removes empty rows and de-duplicates a CSV file.
Developer Utilities
XML Formatter
Formats and validates XML with proper indentation.
Developer Utilities
Ask AI about Internet Compass