Restish is a CLI for working with REST-ish HTTP APIs. It can make generic HTTP requests, discover OpenAPI descriptions, generate API-aware commands, manage profiles and auth, render structured output, follow pagination links, and run plugins.
Restish v2 is the active release line. Users who need the legacy v1 line can
install rest-sh/tap/restish@1; see the
v1 upgrade guide.
Make a direct request with no setup beyond installing the CLI:
restish api.rest.sh/typesThen format, filter, and page through real API responses:
restish api.rest.sh/images -o table --rsh-columns name,format,self
restish api.rest.sh/example -f 'body.basics.{name,url,profiles}'Example table output:
name format self
Dragonfly macro jpeg /images/jpeg
Origami under blacklight webp /images/webp
Andy Warhol mural in Miami gif /images/gif
Use Homebrew for the easiest managed install on macOS:
brew install rest-sh/tap/restish
restish --versionOr use mise:
mise use -g restish@latest
restish --versionInstall the latest tagged v2 release from source with Go:
go install github.com/rest-sh/restish/v2/cmd/restish@latest
restish --helpCheck restish --version after installation. See the
install guide for shell setup,
upgrades, and platform notes.
- Use one-off HTTP commands with good defaults for headers, content types, retries, caching, TLS, and output.
- Connect OpenAPI descriptions to get generated API commands, help, profiles, auth, and shell completion.
- Filter normalized responses with shorthand or jq, then render JSON, YAML, tables, CSV, NDJSON, lines, gron, images, and raw downloads.
- Follow pagination links and stream API data without writing boilerplate loops.
- Extend the CLI with plugins for bulk workflows, CSV, MCP, TLS signing, and custom API behavior.
Bundled plugins live in this repository and can be built alongside the main CLI:
go build ./cmd/restish-bulk
go build ./cmd/restish-csv
go build ./cmd/restish-mcp
go build ./cmd/restish-pkcs11Start with Install and Use Plugins or Plugin Quickstart.
Build from this repository when developing Restish itself:
go build ./cmd/restish
./restish --help
./restish api.rest.sh/typesRun the normal development loop with:
go test ./...Build the CLI and bundled plugins with:
go build ./cmd/restish
go build ./cmd/restish-bulk
go build ./cmd/restish-csv
go build ./cmd/restish-mcp
go build ./cmd/restish-pkcs11Run the full integration suite before releases or larger CLI/plugin changes:
go test -tags=integration ./...Development docs:
Restish is released under the MIT License. See LICENSE.md.