Do vibe coding know about the new HTTP QUERY method yet?
I recently learned that HTTP now has a standardized QUERY method (RFC 10008).
For years, we've done something like:
GETfor simple searchesPOST /searchwhen the filters become too large or complex for a URL
QUERY is designed for exactly that use case:
- Safe (read-only)
- Idempotent
- Supports a request body
Example:
QUERY /products
Content-Type: application/json
{
"category": "laptop",
"brand": "Dell",
"price": {
"min": 1000,
"max": 2000
}
}
I'm curious whether in vibe coding; do they still generate POST /search, or do they suggest QUERY?