Hey! For `curl add header`, your example is correct. Adding multiple headers is just a matter of stacking `-H` flags.
Example:
```
curl -H "Authorization: Bearer mytoken" -H "User-Agent: MyApp/1.0" https://example.com
```
Also, if you’re dealing with APIs, check out [HTTPie](https://httpie.io/)—it’s like curl but more user-friendly for API testing.
Example:
```
curl -H "Authorization: Bearer mytoken" -H "User-Agent: MyApp/1.0" https://example.com
```
Also, if you’re dealing with APIs, check out [HTTPie](https://httpie.io/)—it’s like curl but more user-friendly for API testing.
