Hey! Just chiming in to say that `curl add header` is pretty straightforward once you get the hang of it. Your example is correct:
```
curl -H "Authorization: Bearer mytoken" https://example.com
```
For multiple headers, stack them like others mentioned. Also, if you’re on Windows, make sure to use double quotes (`"`) instead of single quotes (`'`).
```
curl -H "Authorization: Bearer mytoken" https://example.com
```
For multiple headers, stack them like others mentioned. Also, if you’re on Windows, make sure to use double quotes (`"`) instead of single quotes (`'`).
