← Back to all status codes
4xx Series
Terminal (Do not automatically retry)

413 Payload Too Large

The request is larger than the server is willing or able to process (e.g., uploading a massive image).

🌍

SEO Impact

Neutral.

🔧

Common Causes

  • 1Uploading a 50MB file to a 5MB endpoint limit
  • 2Massive JSON bodies

Code Examples

Nginx
client_max_body_size 10M; # Inside nginx.conf

Related Codes