Solid advice! Another tool I’d recommend is https://httpie.io/. It’s like curl but way more user-friendly for API testing. For example, sending JSON is as simple as:
```bash
http POST https://example.com/api key=value
```
Way less typing than curl send json, and it auto-formats the output.
```bash
http POST https://example.com/api key=value
```
Way less typing than curl send json, and it auto-formats the output.
