The URL is longer than the server is willing to interpret.
414 URI Too Long means the request line (the URL with all query parameters) exceeds the server's parsing buffer. Typical limits are 4KB-8KB. This usually happens when GET requests are used to send what should be a POST body: large lists in query strings, encoded binary data in URLs, or query-string explosion from chained tracking parameters. The fix is almost always to switch to POST.
When servers should return it: Return 414 when the request URI exceeds the server's configured maximum.
HTTP/2 414
content-type: text/plain
URI too long
For a one-page reference of all HTTP status codes, see the HTTP cheat sheet. For testing API responses, try the API Tester tool. For inspecting responses on the command line, the curl cheat sheet covers the most common flags.