All HTTP status codes
HTTP 414 URI Too Long
Client ErrorThe request URL exceeds the server's limit — usually a symptom of stuffing data into the query string.
Defined in RFC 9110
Common causes
- Long query strings (filters, encoded payloads, GET abuse)
- Redirect loops appending parameters each pass
How to fix it
Move the data into a POST body
Break redirect loops that grow the URL
Raise the proxy's URL length limit only as a last resort
Related status codes
Want to explore status codes interactively? Try the free HTTP Status Code Reference — search, categories and example responses, right in your browser.