Tools›Developer
›HTTP Status Code Lookup
HTTP Status Code Lookup
Type any HTTP status code or keyword to instantly get its meaning, common causes, and how to fix it.
No matching status code found.
Frequently Asked Questions
What is an HTTP status code?
HTTP status codes are 3-digit numbers returned by a server in response to a client request. They indicate whether the request succeeded, failed, or needs further action.
What's the difference between 401 and 403?
401 Unauthorized means authentication is required (you're not logged in). 403 Forbidden means you're authenticated but don't have permission to access that resource.
What causes a 502 Bad Gateway?
A 502 Bad Gateway means the server acting as a gateway received an invalid response from the upstream server. Common causes include crashed backend services or load balancer misconfigurations.
What is HTTP 429 Too Many Requests?
429 is returned when you've exceeded the rate limit set by an API. Solutions include adding exponential backoff, caching responses, or requesting a higher rate limit from the API provider.