Configuration
The fetch node has two panels: a summary panel (visible when clicking the node on the canvas) and a full HTTP request editor (opened by clicking Setup Request).
Fetch node summary panel showing HTTP Request, Merge Strategy, and Conditions
HTTP Request Editor
Click Setup Request to open the full-screen HTTP request editor. The editor has three columns: setup, input, and output.
HTTP request editor with method, URL, toggleable sections for headers/params/body, a cURL preview, and response output
- Import cURL — Paste an existing cURL command to auto-populate the request configuration.
- Method — GET, POST, PUT, or DELETE.
- URL — The endpoint to call. Supports variable interpolation with
{{field_name}}syntax (e.g.,https://api.example.com/users/{{user_id}}). Only HTTPS URLs are allowed. - Headers — Toggle on to add key-value header pairs. Common use:
Authorization: Bearer {{api_token}}. - Query Parameters — Toggle on to add key-value query parameters appended to the URL.
- Body — Toggle on to add a JSON request body (available for POST and PUT only; disabled for GET and DELETE).
{{user_id}}), the input column shows fields where you can provide test values. A live cURL preview updates as you fill them in.
Output (right column):
Click Execute Step to run the request and see the response. On a successful 2xx response, Courier automatically extracts the response schema and saves the available fields. These fields are then displayed back on the summary panel (with their names and types) so you can confirm what data is available downstream. A “Last tested” timestamp shows when the schema was last captured.
Merge Strategy
The merge strategy controls how the fetch response is combined with the existing journey context. Choose from the dropdown on the summary panel:Conditions
Like other nodes, fetch nodes support optional conditions. If the conditions are not met, the node is skipped and the journey continues without making the HTTP request.Response Handling
The response body is parsed as JSON and merged into the journey context using the selected merge strategy. If the fetch returns:- In branch conditions: select
data.onboarding_completeas the field - In journey templates: use
{{onboarding_complete}}or{{last_login}} - In send node recipient overrides: select the field from the dropdown
Chaining Fetch Nodes
You can add multiple fetch nodes in sequence. Each one merges its response into the journey context, and all fields are available downstream. For example:- Fetch order details — merges
order_id,total,statusinto context - Fetch user preferences — merges
email_frequency,localeinto context - Branch — check
email_frequencyto decide whether to send