503 Service Unavailable
The server is not ready to handle the request, often due to maintenance or overloading.
Explanation
The 503 (Service Unavailable) status code indicates that the server is currently unable to handle the request due to a temporary overload or scheduled maintenance, which will likely be alleviated after some delay. The server MAY send a Retry-After header field to suggest an appropriate amount of time for the client to wait before retrying the request.
This status is commonly used during:
- Server maintenance windows
- High traffic periods exceeding the server's capacity
- Failure of a service component (like a database) needed to fulfill requests
- Rate limiting or throttling at the infrastructure level
A well-designed 503 response will inform the client about when they can retry the request, either through human-readable text or the Retry-After header which provides a delay in seconds or a specific date/time when to retry.
Example Response
HTTP/1.1 503 Service Unavailable Retry-After: 120 Content-Type: text/html <html> <head> <title>Service Unavailable</title> </head> <body> <h1>Service Unavailable</h1> <p>The server is temporarily unable to handle the request due to maintenance downtime. Please try again in a few minutes.</p> </body> </html>
Related Status Codes
Check where URLs redirect to with our free URL redirect checker.
Check URL Redirects