Adding Headers
Configure header names, values, and operations
Adding Headers
For each profile, you can define multiple headers to modify.
Steps
- Click into a new field and start typing the header name.
- Enter a header value.
- To add more headers, a new input field will appear automatically underneath your last header.
- To remove a header, click the trash icon next to the header.
- Your changes are automatically saved and applied to the profile.
Header Fields
- Name: The HTTP header name (e.g.,
User-Agent,Authorization,X-Custom-Header). Required. - Value: The value you want to set for the named header. Optional — leave empty to remove the header.
Removing Headers
To remove an existing header from requests, simply leave the Value field empty. This will unset any header with the specified name. This is particularly useful for:
- Removing tracking headers like
RefererorX-Requested-With - Stripping identifying information from requests
- Disabling certain browser-added headers
Common Use Cases
- Spoofing User-Agent: Change your
User-Agentto look like a mobile device or a different browser. - Adding Auth Tokens: Inject
Authorization: Bearer <token>for testing APIs. - Privacy: Remove or modify tracking headers by leaving values empty or changing them.