xh is a friendly and fast tool for sending HTTP requests. It reimplements as much as possible of HTTPie's excellent design.
brew install xh
scoop install xh
pacman -S xh
The release page contains prebuilt binaries for Linux, macOS and Windows.
Make sure that you have Rust 1.45 or later installed.
cargo install xh
``` USAGE: xh [FLAGS] [OPTIONS] <[METHOD] URL> [--] [REQUEST_ITEM]...
FLAGS:
--offline Construct HTTP requests without sending them anywhere
-j, --json (default) Serialize data items from the command line as a JSON object
-f, --form Serialize data items from the command line as form fields
-m, --multipart Like --form, but force a multipart/form-data request even without files
-I, --ignore-stdin Do not attempt to read stdin
--ignore-netrc Do not use credentials from .netrc
-F, --follow Do follow redirects
-d, --download Download the body to a file instead of printing it
-h, --headers Print only the response headers, shortcut for --print=h
-b, --body Print only the response body, Shortcut for --print=b
-c, --continue Resume an interrupted download. Requires --download and --output
-v, --verbose Print the whole request as well as the response
-q, --quiet Do not print to stdout or stderr
-S, --stream Always stream the response body
--check-status Exit with an error status code if the server replies with an error
--curl Print a translation to a curl
command
--curl-long Use the long versions of curl's flags
--https Make HTTPS requests if not specified in the URL
--help Prints help information
-V, --version Prints version information
OPTIONS:
-a, --auth follow
is set
-p, --print