Hey! Just wanted to add that curl with headers is super flexible. You can even use environment variables to store your headers and reuse them across commands. For example:
```
export API_KEY="your_api_key_here"
curl -H "Authorization: Bearer $API_KEY" https://api.example.com
```
This keeps your commands cleaner and avoids hardcoding sensitive info.
```
export API_KEY="your_api_key_here"
curl -H "Authorization: Bearer $API_KEY" https://api.example.com
```
This keeps your commands cleaner and avoids hardcoding sensitive info.
