All Posts programming Curlie cheat-sheet

Curlie cheat-sheet

ยท 126 words ยท 1 minute read

What is curlie ? ๐Ÿ”—

A frontend to curl that adds the ease of use of httpie.

Common commands ๐Ÿ”—

Send a GET request:

curlie httpbin.org/get

Send a POST request:

curlie post httpbin.org/post name=john age:=25

Send a GET request with query parameters (e.g. first_param=5&second_param=true):

curlie get httpbin.org/get first_param==5 second_param==true

Send a GET request with a custom header:

curlie get httpbin.org/get header-name:header-value

For more information, checkout the official github repo here: https://github.com/rs/curlie .

I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .