a curl wrapper with placeholder, bookmark and environment powers just like postman but for the terminal
-H | --header
arguments)--
to curl, that makes drop-in-replacement possible{{ prompt_password() }}
curlz r https://api.github.com/user -- -u "{{ username }}:{{ prompt_password() }}"
{{ prompt_for("Username") }}
or {{ prompt_for("Birthdate") }}
curlz -- -u "{{ prompt_for("Username") }}:{{ prompt_password() }}" https://api.github.com/user
sh
curlz r --define 'host=https://httpbin.org' '{{host}}/get?show_env={{ prompt_for("show_env") }}'
{{ jwt(claims, signing_key) }}
, where claims
and signing_key
are looked up at the environment file or can be directly provided map and string
sh
curlz r -H 'Authorization: Bearer {{ jwt({"uid": "1234"}, "000") }}' https://httpbin.org/bearer -- -vvv
In this example we're going to download a pre-configured .gitignore
for a given language from GitHub via curl
curl https://api.github.com/gitignore/templates/Rust
curlz r https://api.github.com/gitignore/templates/Rust
curlz r 'https://api.github.com/gitignore/templates/{{ prompt_for("Language") | title }}'
sh
curlz r --bookmark 'https://api.github.com/gitignore/templates/{{ prompt_for("Language") | title }}'
Language: rust
Please enter a bookmark name: gitignore
curlz r gitignore
jwt(claims: map, [signing_key: string])
claims
: to be a map of key value pairs like {"uid": "1234"}
that are the payload of the JWTsigning_key
: to be a string, this is optional and can be provided at the environment file with a variable named jwt_signing_key
HS256
and the JWT header is {"alg": "HS256", "typ": "JWT"}
exp
expiry time is set to in 15min by default, but can be overwritteniat
issued at timestamp is set automatically and cannot be overwritten