Custom HTTP HeadersPRO
Secrets stay out of URLs. Pass headers on the HTTP layer, and any x-api-header-* is forwarded to the target fetch — cookies and tokens never touch the query string.
Overview
Headers ride the HTTP layer.
The headers option travels as real request headers — never in the URL. The API forwards any
x-api-header-<name> to the target fetch as <name>, so a session cookie becomes the target’s cookie header. Your apiKey rides the same way, as x-api-key.- headers travel as HTTP request headers — never query params
- x-api-header-cookie → forwarded to the target as cookie
- apiKey is sent as x-api-key, never in the URL
- Compose with proxy to authenticate behind an unblocker
- Secrets stay out of logs, history and shareable links
Parameters
How headers are routed.
Examples
Forward what the target needs.
x-api-header-cookie reaches the target as cookie.