4xx Client Error

HTTP 408 Request Timeout

The server timed out waiting for the client's request. The client did not produce a request within the time the server was prepared to wait. The client may repeat the request without modifications.

Common Causes

  • Slow network connection delaying the request
  • Client taking too long to send the request body
  • Server's timeout threshold is too short
  • Unstable internet connection dropping packets

How to Fix

  1. 1Retry the request — it may work on the next attempt
  2. 2Check your internet connection stability
  3. 3Reduce request payload size if possible
  4. 4Increase server-side timeout settings if you control the server

Example

HTTP 408 Request Timeout
POST /upload HTTP/1.1
(client stalls sending data)

→ 408 Request Timeout
→ Server closed the connection

Related Client Error Codes