How to use it
- Search for an HTTP code or error text.
- Filter by one of the 1xx–5xx classes.
- Review the meaning, common cause and suggested checks.
Developer reference
Find what 200, 404, 500 and other HTTP responses mean, and quickly identify whether an issue is client-side or server-side.
Practical guide
Search common HTTP codes from 1xx to 5xx by code, name or description and review causes and troubleshooting steps for client and server errors.
This tool streamlines workflows such as debugging api integration errors and interpreting nginx or gateway responses in one place.
401 means authentication is required, while 403 means the known identity lacks permission.
502 indicates an invalid upstream response, while 504 indicates an upstream timeout.
Both are permanent; 308 explicitly preserves the HTTP method.
No. Use 201 for creation, 204 for an empty success and 206 for partial content.
Honor Retry-After and use exponential backoff, caching or queues.
Server logs usually need inspection, though a malformed payload may trigger a server bug.
Similar tools