Installation

Prerequisites Gurl requires no runtime dependencies โ€” it ships as a single static binary. Go is only needed if you are building from source (Go 1.21+). Homebrew (macOS / Linux) brew tap bsreeram08/gurl https://github.com/bsreeram08/gurl brew install gurl Update with: brew upgrade gurl One-liner Install curl -sL https://raw.githubusercontent.com/bsreeram08/gurl/master/scripts/install.sh | bash This detects your platform, downloads the correct binary from the latest release, and installs it to /usr/local/bin. Pre-built Binaries Download directly from GitHub Releases: ...

Sreeram

Quick Start

Get started with Gurl in 5 minutes. This guide walks through the core workflow: saving a request, running it, and generating code. Step 1: Save a Request Save your first request with the save command: gurl save "users" https://jsonplaceholder.typicode.com/users This saves a GET request to the users endpoint. Gurl creates the collection automatically if it does not exist. You can also save requests with common options inline: gurl save "user-by-id" https://jsonplaceholder.typicode.com/users/1 Step 2: Run the Request Execute the saved request with the run command: ...

Sreeram