This node is in beta. Its behavior may change in future releases.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| URL | text | Yes | The endpoint to call. Supports template expressions like {{steps.extract.data.id}} |
| Method | select | Yes | HTTP method: GET, POST, PUT, PATCH, or DELETE. Default: GET |
| Headers | key-value list | No | Custom headers to include in the request. Values support template expressions |
| Body template | JSON editor | No | Request body for POST, PUT, and PATCH requests. Supports template expressions |
| Timeout | number | No | Request timeout in seconds. Default: 30 |
| Response path | string | No | Dot-path to extract a subset of the JSON response (e.g., data.results) |
| Response schema | schema editor | No | Define the expected response shape so downstream nodes can reference response fields |
Template expressions
The URL, headers, and body fields support template expressions using the{{expression}} syntax. This lets you dynamically build requests using data from upstream nodes.
Response path
If the API returns a large response and you only need part of it, use the response path to extract a subset. For example, if the response is{ "data": { "results": [...] } }, set the response path to data.results to pass only the array to downstream nodes.
Inputs and outputs
Allowed inputs: All trigger nodes and all action nodes. Output: The HTTP response with the following fields:| Field | Description |
|---|---|
| Status code | The HTTP response status code |
| Success | Whether the request completed successfully |
| Response body | The response body, or the extracted subset if a response path is configured |
| URL | The URL that was called |
| Method | The HTTP method that was used |
Credit cost
0 credits. No cost for HTTP requests.Related
Callback output
Send final results to a webhook after processing
Extract action
Extract structured data before or after HTTP calls
Transform action
Transform HTTP response data into a specific format
Webhooks and callbacks
Guide to working with external integrations