httpie
CLI>=3.0Modern, user-friendly command-line HTTP client for the API era.
2 views
Installation
Homebrew
brew install httpiepip
pip install httpieLinks
License
BSD-3-ClauseAI Agent Notes
Friendlier curl for REST APIs with JSON formatting
When to use
Testing REST APIs, sending HTTP requests with readable output
Examples
http GET api.example.com/usershttp POST api.example.com/data key=val
Proven Recipes
GET request with JSON response🟢 98% success
http GET api.example.com/usersPOST JSON data🟢 95% success
http POST api.example.com/data key=value nested:='{"a":1}'Request with auth header🟢 97% success
http GET api.example.com/me Authorization:'Bearer TOKEN'