HTTP QUERY Lab
Practice the new HTTP QUERY method: a safe, idempotent request that sends search criteria in the body instead of the URL.
Resource:
Send as:
Query document
Categories:
Type:
Request preview
QUERY /api/products/query HTTP/1.1
Content-Type: application/json
Authorization: Bearer <your-api-token>
{
"sort": {
"field": "created_at",
"direction": "desc"
},
"pagination": {
"page": 1,
"limit": 10
}
}The native QUERY verb is bridged server-side; the response meta.transport field tells you which path the request took.
Results
Build a query document and press Run to send your first HTTP QUERY request.