xh

CLI

Friendly and fast HTTP tool, reimplementation of HTTPie.

3 views

Installation

Homebrewbrew install xh
Cargocargo install xh

Links

License

MIT

AI 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/users
  • xh POST api.example.com/data key=val

Proven Recipes

GET request🟢 98% success
xh GET api.example.com/users
POST JSON data🟢 97% success
xh POST api.example.com/data key=value
Request with auth header🟢 97% success
xh GET api.example.com/me Authorization:'Bearer TOKEN'