All HTTP status codes

HTTP 413 Content Too Large

Client Error

The request body exceeds what the server is willing to process. Formerly called 'Payload Too Large'.

Defined in RFC 9110

Common causes

  • Upload exceeds server/proxy body-size limits (nginx client_max_body_size, serverless payload caps)
  • Verbose JSON payloads beyond API limits

How to fix it

  1. Raise the limit where appropriate (nginx, API gateway, function config)

  2. Chunk or multipart large uploads; compress payloads

  3. Send files to object storage via signed URLs instead of through the API

Want to explore status codes interactively? Try the free HTTP Status Code Reference — search, categories and example responses, right in your browser.