Requests
Build and send HTTP requests in API mode.

Anatomy
| Area | Purpose |
|---|---|
| Method | GET, POST, PUT, PATCH, DELETE, HEAD, OPTIONS |
| URL | Supports |
| Send | Runs the request (Ctrl+Enter) |
| Save | Persists to a collection (Ctrl+S) |
Code () | Generate client snippets |
Configuration tabs
| Tab | Use |
|---|---|
| Params | Query string key/value pairs |
| Auth | Authentication |
| Headers | HTTP headers |
| Body | None, JSON, Form, Multipart, GraphQL, Binary, Raw |
| Pre-request Script | Run code before send |
| Tests | Assert after response |
| Settings | Timeouts, SSL, redirects |
Send and inspect
- Set method + URL (or open a Starter Guide request).
- Click Send.
- Use the response panel:

| Control | Purpose |
|---|---|
| Pretty / Raw / Headers / Explorer | View modes |
| Assert | Generate assertions from the response |
| Extract | Capture values into variables |
| Status / time / size | e.g. , , |
Tip: Send stays disabled until the URL field is non-empty.
Example from the Starter Guide
GET · Query Params calls:
{{baseUrl}}/get?product=signoff&suite={{suiteName}}&page=1
With httpbingo selected, Signoff resolves
baseUrl and suiteName before the network call. The response args object shows the resolved values.
Next
Need something else? See the FAQ. Questions: [email protected]. Bugs: [email protected].