If curl get feels clunky, check out HTTPie (`https://httpie.io`). It’s way cleaner for quick requests.
Example:
```bash
http GET https://api.example.com/data
```
It auto-formats JSON, adds default headers, and just looks nicer. Still, curl is king for scripting.
Example:
```bash
http GET https://api.example.com/data
```
It auto-formats JSON, adds default headers, and just looks nicer. Still, curl is king for scripting.
