HTTP Node

Facilitates direct asynchronous communication with external microservices and 3rd-party APIs natively inside Agentflow.
Functionality
This node allows the workflow to instantly jump outside the Lyntaris ecosystem to interface with arbitrary systems executing HTTP protocols. It supports complex GET, POST, PUT, DELETE, and PATCH methods along with dynamic Header interpolation, query mapping, and binary payloads.
Configuration Parameters
- HTTP Credential: Authenticate explicitly against endpoints utilizing Flowise's secure credential manager (Basic Auth, Bearer Token, generic API Keys).
- Request Method: Specifies HTTP verb (
GET,POST, etc). - Target URL: Complete target URL destination format.
- Request Headers: Custom Header definitions structured natively using standard JSON blocks.
- URL Query Parameters: Parameter overrides.
- Request Body Type: Toggle formatting between robust JSON, Raw text, Form Data, or URL Encoded options natively.
- Request Body: Inject interpolations via
{{ variable }}mapping into the literal payload bodies. - Response Type: Ingest the external response predictably as
JSON,Text,Array Buffer, or rawBase64buffers.
Inputs & Outputs
- Inputs: Takes dynamic URL properties or Body variable interpolations.
- Outputs: Parsed response object natively serialized to the specified Response Type.