xh
CLIFriendly and fast HTTP tool, reimplementation of HTTPie.
3 views
Installation
Homebrew
brew install xhCargo
cargo install xhLinks
License
MITAI Agent Notes
Fast HTTPie-compatible HTTP client written in Rust
When to use
Testing APIs when you want httpie speed with Rust binary
Examples
xh GET api.example.com/usersxh POST api.example.com/data key=val
Proven Recipes
GET request🟢 98% success
xh GET api.example.com/usersPOST JSON data🟢 97% success
xh POST api.example.com/data key=valueRequest with auth header🟢 97% success
xh GET api.example.com/me Authorization:'Bearer TOKEN'