If you’re working with APIs a lot, consider using `httpie` instead of curl. It’s like curl but way more user-friendly for post json requests.
For example:
```bash
http POST https://api.example.com/endpoint key=value
```
It auto-sets the Content-Type header and formats JSON nicely.
For example:
```bash
http POST https://api.example.com/endpoint key=value
```
It auto-sets the Content-Type header and formats JSON nicely.
