-
Notifications
You must be signed in to change notification settings - Fork 5
Getting Started
This page gets you from zero to your first response.
Getman ships as a native binary per platform. Grab the latest from the Releases page.
| Platform | File | How to install |
|---|---|---|
| macOS (Apple Silicon) | getman-vX.Y.Z-macos-arm64.zip |
Unzip, drag getman.app into /Applications. |
| Windows (x64) | getman-vX.Y.Z-windows-x64.zip |
Unzip the whole folder anywhere, run getman.exe. |
| Linux (x64) | getman-vX.Y.Z-linux-x64.tar.gz |
tar -xzf getman-*.tar.gz && ./getman |
| Web | — | Use the live demo (note browser [[FAQ and Troubleshooting |
The released binaries aren't code-signed yet, so the OS warns on first launch:
-
macOS: right-click
getman.app→ Open → confirm. (Or runxattr -dr com.apple.quarantine /Applications/getman.app.) - Windows: click More info → Run anyway on the SmartScreen prompt.
This is a one-time step per install. See FAQ and Troubleshooting for details.
Prefer to build it yourself? See Building from Source.
- Getman opens with one empty request tab.
- The method dropdown defaults to GET. Leave it.
- Click the URL field and type a URL, e.g.
https://httpbin.org/get. - Press
Cmd/Ctrl + Enter(or click SEND). - The response appears — status code, time, and size at the top, body below.
That's it. No project setup, no account.
- Add query params — open the PARAMS tab and add a key/value; it's written into the URL automatically (and vice-versa).
-
POST some JSON — switch the method to POST, open the BODY tab, pick RAW, type JSON, and press
Cmd/Ctrl + Bto beautify it. -
Paste a cURL command — copy any
curl ...command and paste it straight into the URL field; Getman parses the method, URL, headers, and body for you. See Building Requests. -
Save it — press
Cmd/Ctrl + Sto save the request into a Collections. -
Reuse values — define an Environments and Variables and reference
{{variables}}anywhere.
Head to The Interface for a tour of the panels, tabs, side menu, and how the UI adapts from desktop to phone widths.
Everything you do is saved locally and instantly (tabs are debounced; collections/settings/environments save immediately). Nothing is uploaded. See Data Privacy and Storage.
Getman on GitHub · Releases · Live demo · Local-first HTTP client — no account, no cloud, no telemetry.
Start here
Core
Variables & automation
More features
- History
- Cookies
- Realtime WebSocket and SSE
- Code Generation
- Command Palette
- Keyboard Shortcuts
- Auto-Update
Configuration
Project