Skip to content

Headers

The Headers tab lets you add, enable, disable, and remove HTTP request headers.

  1. Go to the Headers tab
  2. Click Add to insert a new row
  3. Enter the header key (e.g. Content-Type) and value (e.g. application/json)
  4. Toggle the checkbox to enable or disable the header
HeaderExample ValuePurpose
Content-Typeapplication/jsonIndicates request body format
AuthorizationBearer {{token}}Authentication
Acceptapplication/jsonExpected response format
X-API-Key{{api_key}}Custom API key

Use {{variable_name}} in header values. Flamingo resolves them using the active environment before sending.

// Active environment: Production
// token = prod-jwt-token-abc123
//
// Headers:
// Authorization = Bearer {{token}}
// Content-Type = application/json
// X-Debug = true (disabled - not sent)
//
// Sent headers:
// Authorization: Bearer prod-jwt-token-abc123
// Content-Type: application/json