If you’re working with APIs, curl using file descriptor is super handy. You can even combine it with `jq` to process JSON data on the fly.
Example:
```bash
echo '{"key":"value"}' | curl -X POST -d @- -H "Content-Type: application/json" http://example.com
```
Super clean and efficient.
Example:
```bash
echo '{"key":"value"}' | curl -X POST -d @- -H "Content-Type: application/json" http://example.com
```
Super clean and efficient.
