HTTP Requests
Top bar
Method selects the HTTP method.
Payload selects body type: Raw, Form Data, Binary.
URL sets the request URL.
Send executes the request.
Send and Download executes and saves the response body to a file.
Debug Call starts step-by-step execution.
Payload types
Raw sends a string body, usually JSON or plain text.
Form Data sends multipart with entries from the table.
Binary sends a file as application/octet-stream.
Send and Download
- After the request, a save dialog appears.
- If the server provides
Content-Disposition: filename=..., it becomes the suggested name.
- If not, the default name is
download.bin.
- The response still appears in the UI like a normal
Send.
URL and params
Params are always appended to the URL.
- Params and URL are template-resolved after
Before Request.