Crates.io | req |
lib.rs | req |
version | 0.6.2 |
source | src |
created_at | 2022-03-18 11:41:34.266105 |
updated_at | 2023-05-20 15:56:40.363163 |
description | Command line http client (like curl). Easier formatting to send JSON bodies, smarter defaults, and more, when compared to curl. |
homepage | |
repository | |
max_upload_size | |
id | 552643 |
size | 54,868 |
req
- HTTP Clientreq
is a command line HTTP client, like curl
, httpie
and many others. Why another one? This is probably the
most succinct, while still intuitive, client you'll find. Let's see if you agree:
# Get `localhost:5000/`. We assume localhost if the hostname is a bare port.
req :5000
Let's send some JSON.
req :5000/auth/login --json email=test@example.com password=123
# --json sets `content-type`, sets `accept`, sets method to POST, and interprets the rest of the arguments
# as key-value pairs in JSON. And it pretty-prints and colorizes the JSON response.
# All of that behavior is defaulted, but can be overridden.
You can also use --form
which behaves similarly.
Here's a GET request:
# Because its a GET request, we know additional arguments are query params. These arguments get URL encoded.
req :5000/search q='this is a multi-word query string'
Need authentication headers? These all work:
req --bearer <token>
req -u <user>:<pass> # --user also works
req --token <token>
We keep the -O
flag from curl
for saving files.
cargo install --git https://github.com/kurtbuilds/req
Need a feature or have a bug report? Open an issue or a PR.