How do you curl multiple headers?
To send multiple headers with curl, use the `-H` or `--header` option repeatedly, once for each header you want to include in the request. Each `-H` flag specifies a single header field and its value. Curl will then combine all specified headers for that single HTTP request. For example: `curl -H "Content-Type: application/json" -H "Accept: application/xml" https://example.com`.