{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.devtools.tools"},{"@type":"ListItem","position":2,"name":"HTTP Status Codes","item":"https://www.devtools.tools/http-status"},{"@type":"ListItem","position":3,"name":"414 URI Too Long","item":"https://www.devtools.tools/http-status/414"}]}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.