The HTTP specification has added a new request method named QUERY, the first such addition in 16 years. Unlike GET, QUERY allows a request body while maintaining idempotency and safety semantics. This is designed to replace complex GET requests with long query strings or workarounds like POST for read operations. The QUERY method is expected to simplify API design, especially for search and filtering endpoints. Developers should monitor browser and server support as the standard evolves. This change reflects ongoing efforts to modernize HTTP for contemporary web applications.
HTTP has introduced its first new request method in 16 years: QUERY. This method aims to simplify safe, idempotent queries with a body, potentially reducing reliance on GET with complex parameters. The change could influence API design patterns and web standards.