Node Inputs
Required Fields
URL:The target URL for the HTTP request.
Example:
"https://api.example.com/data"
Method:The HTTP method to use.
Available options:
GET
: Retrieve dataPOST
: Send dataPUT
: Update dataPATCH
: Partial updateDELETE
: Delete data
Example:"GET"
Optional Fields
Headers:Custom HTTP headers as a JSON object.
Example:
Request body for POST, PUT, PATCH requests.
Example:
URL query parameters as a JSON object.
Example:
Request timeout in seconds.
Example:
30
Default:
30
Follow Redirects:Whether to follow HTTP redirects.
Example:
true
Default:
true
Node Output
Response Data:The HTTP response including status code, headers, and body content. Example Output:
Node Functionality
The HTTP Request node:- Makes HTTP/HTTPS requests to any external API or web service.
- Supports all standard HTTP methods (GET, POST, PUT, PATCH, DELETE).
- Allows custom headers and authentication.
- Handles JSON, XML, and plain text responses.
- Provides detailed response information including status codes and timing.